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
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 $censorpc = 1; # Do a BadWords::check on text fields and reject things
59 # loads of 'bad things'
60 $baddx = new DXHash "baddx";
61 $badspotter = new DXHash "badspotter";
62 $badnode = new DXHash "badnode";
63 $last10 = $last_pc50 = time;
67 $eph_info_restime = 60*60;
68 $eph_pc34_restime = 30;
74 [ qw(c c m bp bc c) ], # pc10
75 [ qw(f m d t m c c h) ], # pc11
76 [ qw(c bc m bp bm p h) ], # pc12
80 undef , # pc16 has to be validated manually
83 undef , # pc19 has to be validated manually
84 undef , # pc20 no validation
86 undef , # pc22 no validation
87 [ qw(d n n n n m c c h) ], # pc23
89 [ qw(c c n n) ], # pc25
90 [ qw(f m d t m c c bc) ], # pc26
91 [ qw(d n n n n m c c bc) ], # pc27
92 [ qw(c c m c d t p m bp n p bp bc) ], # pc28
93 [ qw(c c n m) ], # pc29
100 [ qw(c c m) ], # pc36
101 [ qw(c c n m) ], # pc37
102 undef, # pc38 not interested
104 [ qw(c c m p n) ], # pc40
105 [ qw(c n m h) ], # pc41
106 [ qw(c c n) ], # pc42
107 undef, # pc43 don't handle it
108 [ qw(c c n m m c) ], # pc44
109 [ qw(c c n m) ], # pc45
110 [ qw(c c n) ], # pc46
113 [ qw(c m h) ], # pc49
114 [ qw(c n h) ], # pc50
115 [ qw(c c n) ], # pc51
137 [ qw(d n n n n n n m m m c c h) ], # pc73
148 [ qw(c c c m) ], # pc84
149 [ qw(c c c m) ], # pc85
152 # use the entry in the check list to check the field list presented
153 # return OK if line NOT in check list (for now)
158 return 0 if $n < 0 || $n > @checklist;
159 my $ref = $checklist[$n];
160 return 0 unless ref $ref;
163 shift; # not interested in the first field
164 for ($i = 0; $i < @$ref; $i++) {
165 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
166 return 0 unless $act;
167 next if $blank && $_[$i] =~ /^[ \*]$/;
169 return $i+1 unless is_callsign($_[$i]);
170 } elsif ($act eq 'm') {
171 return $i+1 unless is_pctext($_[$i]);
172 } elsif ($act eq 'p') {
173 return $i+1 unless is_pcflag($_[$i]);
174 } elsif ($act eq 'f') {
175 return $i+1 unless is_freq($_[$i]);
176 } elsif ($act eq 'n') {
177 return $i+1 unless $_[$i] =~ /^[\d ]+$/;
178 } elsif ($act eq 'h') {
179 return $i+1 unless $_[$i] =~ /^H\d\d?$/;
180 } elsif ($act eq 'd') {
181 return $i+1 unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
182 } elsif ($act eq 't') {
183 return $i+1 unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
191 do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
196 # obtain a new connection this is derived from dxchannel
201 my $self = DXChannel::alloc(@_);
203 # add this node to the table, the values get filled in later
206 $main::routeroot->add($call, '5000', Route::here(1)) if $call ne $main::mycall;
211 # this is how a pc connection starts (for an incoming connection)
212 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
213 # all the crap that comes between).
216 my ($self, $line, $sort) = @_;
217 my $call = $self->{call};
218 my $user = $self->{user};
221 my $host = $self->{conn}->{peerhost} || "unknown";
222 Log('DXProt', "$call connected from $host");
224 # remember type of connection
225 $self->{consort} = $line;
226 $self->{outbound} = $sort eq 'O';
227 my $priv = $user->priv;
228 $priv = $user->priv(1) unless $priv;
229 $self->{priv} = $priv; # other clusters can always be 'normal' users
230 $self->{lang} = $user->lang || 'en';
231 $self->{isolate} = $user->{isolate};
232 $self->{consort} = $line; # save the connection type
236 # sort out registration
237 $self->{registered} = 1;
239 # get the output filters
240 $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
241 $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
242 $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
243 $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
244 $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
247 # get the INPUT filters (these only pertain to Clusters)
248 $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
249 $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
250 $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
251 $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
252 $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
254 # set unbuffered and no echo
255 $self->send_now('B',"0");
256 $self->send_now('E',"0");
257 $self->conn->echo(0) if $self->conn->can('echo');
259 # ping neighbour node stuff
260 my $ping = $user->pingint;
261 $ping = $pingint unless defined $ping;
262 $self->{pingint} = $ping;
263 $self->{nopings} = $user->nopings || $obscount;
264 $self->{pingtime} = [ ];
265 $self->{pingave} = 999;
266 $self->{metric} ||= 100;
267 $self->{lastping} = $main::systime;
269 # send initialisation string
270 unless ($self->{outbound}) {
274 $self->state('init');
275 $self->{pc50_t} = $main::systime;
277 # send info to all logged in thingies
278 $self->tell_login('loginn');
280 # run a script send the output to the debug file
281 my $script = new Script(lc $call) || new Script('node_default');
282 $script->run($self) if $script;
286 # send outgoing 'challenge'
296 # This is the normal pcxx despatcher
300 my ($self, $line) = @_;
301 my @field = split /\^/, $line;
302 return unless @field;
304 pop @field if $field[-1] eq '~';
306 # print join(',', @field), "\n";
309 # process PC frames, this will fail unless the frame starts PCnn
310 my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
312 return if $pcno < 10 || $pcno > 99;
314 # check for and dump bad protocol messages
315 my $n = check($pcno, @field);
317 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
324 $pcr = Local::pcprot($self, $pcno, @field);
326 # dbg("Local::pcprot error $@") if isdbg('local') if $@;
330 if ($pcno == 10) { # incoming talk
333 return if $rspfcheck and !$self->rspfcheck(0, $field[6], $field[1]);
335 # will we allow it at all?
338 if (@bad = BadWords::check($field[3])) {
339 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
344 # is it for me or one of mine?
345 my ($from, $to, $via, $call, $dxchan);
347 if ($field[5] gt ' ') {
354 # if this is a 'nodx' node then ignore it
355 if ($badnode->in($field[6]) || ($via && $badnode->in($via))) {
356 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
360 # if this is a 'bad spotter' user then ignore it
362 $nossid =~ s/-\d+$//;
363 if ($badspotter->in($nossid)) {
364 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
368 # if we are converting announces to talk is it a dup?
370 if (AnnTalk::is_talk_candidate($from, $field[3]) && AnnTalk::dup($from, $to, $field[3])) {
371 dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
376 # it is here and logged on
377 $dxchan = DXChannel->get($main::myalias) if $to eq $main::mycall;
378 $dxchan = DXChannel->get($to) unless $dxchan;
379 if ($dxchan && $dxchan->is_user) {
380 $field[3] =~ s/\%5E/^/g;
381 $dxchan->talk($from, $to, $via, $field[3]);
385 # is it elsewhere, visible on the cluster via the to address?
386 # note: this discards the via unless the to address is on
389 if ($ref = Route::get($to)) {
390 $vref = Route::Node::get($via) if $via;
391 $vref = undef unless $vref && grep $to eq $_, $vref->users;
392 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $field[3], $field[6]);
396 # not visible here, send a message of condolence
398 $ref = Route::get($from);
399 $vref = $ref = Route::Node::get($field[6]) unless $ref;
401 $dxchan = $ref->dxchan;
402 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
407 if ($pcno == 11 || $pcno == 26) { # dx spot
409 # route 'foreign' pc26s
411 if ($field[7] ne $main::mycall) {
412 $self->route($field[7], $line);
418 # return if $rspfcheck and !$self->rspfcheck(1, $field[7], $field[6]);
420 # if this is a 'nodx' node then ignore it
421 if ($badnode->in($field[7])) {
422 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
426 # if this is a 'bad spotter' user then ignore it
427 my $nossid = $field[6];
428 $nossid =~ s/-\d+$//;
429 if ($badspotter->in($nossid)) {
430 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
434 # convert the date to a unix date
435 my $d = cltounix($field[3], $field[4]);
436 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
437 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
438 dbg("PCPROT: Spot ignored, invalid date or out of range ($field[3] $field[4])\n") if isdbg('chanerr');
443 if ($baddx->in($field[2]) || BadWords::check($field[2]) || $field[2] =~ /COCK/) {
444 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
449 $field[5] =~ s/^\s+//; # take any leading blanks off
450 $field[2] = unpad($field[2]); # take off leading and trailing blanks from spotted callsign
451 if ($field[2] =~ /BUST\w*$/) {
452 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
457 if (@bad = BadWords::check($field[5])) {
458 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
464 my @spot = Spot::prepare($field[1], $field[2], $d, $field[5], $field[6], $field[7]);
465 # global spot filtering on INPUT
466 if ($self->{inspotsfilter}) {
467 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
469 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
474 # this goes after the input filtering, but before the add
475 # so that if it is input filtered, it isn't added to the dup
476 # list. This allows it to come in from a "legitimate" source
477 if (Spot::dup($field[1], $field[2], $d, $field[5], $field[6])) {
478 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
486 # @spot at this point contains:-
487 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
488 # then spotted itu, spotted cq, spotters itu, spotters cq
489 # you should be able to route on any of these
492 # fix up qra locators of known users
493 my $user = DXUser->get_current($spot[4]);
495 my $qra = $user->qra;
496 unless ($qra && is_qra($qra)) {
497 my $lat = $user->lat;
498 my $long = $user->long;
499 if (defined $lat && defined $long) {
500 $user->qra(DXBearing::lltoqra($lat, $long));
505 # send a remote command to a distant cluster if it is visible and there is no
506 # qra locator and we havn't done it for a month.
508 unless ($user->qra) {
510 my $to = $user->homenode;
511 my $last = $user->lastoper || 0;
512 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
513 my $cmd = "forward/opernam $spot[4]";
514 # send the rcmd but we aren't interested in the replies...
515 my $dxchan = $node->dxchan;
516 if ($dxchan && $dxchan->is_clx) {
517 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
519 route(undef, $to, pc34($main::mycall, $to, $cmd));
521 if ($to ne $field[7]) {
523 $node = Route::Node::get($to);
525 $dxchan = $node->dxchan;
526 if ($dxchan && $dxchan->is_clx) {
527 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
529 route(undef, $to, pc34($main::mycall, $to, $cmd));
533 $user->lastoper($main::systime);
542 $r = Local::spot($self, @spot);
544 # dbg("Local::spot1 error $@") if isdbg('local') if $@;
547 # DON'T be silly and send on PC26s!
548 return if $pcno == 26;
550 # send out the filtered spots
551 send_dx_spot($self, $line, @spot) if @spot;
555 if ($pcno == 12) { # announces
557 # return if $rspfcheck and !$self->rspfcheck(1, $field[5], $field[1]);
559 # announce duplicate checking
560 $field[3] =~ s/^\s+//; # remove leading blanks
564 if (@bad = BadWords::check($field[3])) {
565 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
570 # if this is a 'nodx' node then ignore it
571 if ($badnode->in($field[5])) {
572 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
576 # if this is a 'bad spotter' user then ignore it
577 my $nossid = $field[1];
578 $nossid =~ s/-\d+$//;
579 if ($badspotter->in($nossid)) {
580 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
584 if ($field[2] eq '*' || $field[2] eq $main::mycall) {
587 # here's a bit of fun, convert incoming ann with a callsign in the first word
588 # or one saying 'to <call>' to a talk if we can route to the recipient
590 my $call = AnnTalk::is_talk_candidate($field[1], $field[3]);
592 my $ref = Route::get($call);
594 my $dxchan = $ref->dxchan;
595 $dxchan->talk($field[1], $call, undef, $field[3], $field[5]) if $dxchan != $self;
602 $self->send_announce($line, @field[1..6]);
604 $self->route($field[2], $line);
619 if ($pcno == 16) { # add a user
621 if (eph_dup($line)) {
622 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
628 my $ncall = $field[1];
629 my $newline = "PC16^";
631 # do I want users from this channel?
632 unless ($self->user->wantpc16) {
633 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
637 if ($ncall eq $main::mycall) {
638 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
641 my $parent = Route::Node::get($ncall);
643 dbg("PCPROT: Node $ncall not in config") if isdbg('chanerr');
646 $dxchan = $parent->dxchan;
647 if ($dxchan && $dxchan ne $self) {
648 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
652 # input filter if required
653 return unless $self->in_filter_route($parent);
657 for ($i = 2; $i < $#field; $i++) {
658 my ($call, $conf, $here) = $field[$i] =~ /^(\S+) (\S) (\d)/o;
659 next unless $call && $conf && defined $here && is_callsign($call);
660 next if $call eq $main::mycall;
662 eph_del_regex("^PC17\\^$call\\^$ncall");
664 $conf = $conf eq '*';
666 # reject this if we think it is a node already
667 my $r = Route::Node::get($call);
668 my $u = DXUser->get_current($call) unless $r;
669 if ($r || ($u && $u->is_node)) {
670 dbg("PCPROT: $call is a node") if isdbg('chanerr');
674 $r = Route::User::get($call);
675 my $flags = Route::here($here)|Route::conf($conf);
678 if ($r->flags != $flags) {
682 $r->addparent($parent);
684 push @rout, $parent->add_user($call, $flags);
687 # add this station to the user database, if required
688 $call =~ s/-\d+$//o; # remove ssid for users
689 my $user = DXUser->get_current($call);
690 $user = DXUser->new($call) if !$user;
691 $user->homenode($parent->call) if !$user->homenode;
692 $user->node($parent->call);
693 $user->lastin($main::systime) unless DXChannel->get($call);
697 # queue up any messages (look for privates only)
698 DXMsg::queue_msg(1) if $self->state eq 'normal';
700 $self->route_pc16($parent, @rout) if @rout;
704 if ($pcno == 17) { # remove a user
706 my $ncall = $field[2];
707 my $ucall = $field[1];
709 eph_del_regex("^PC16\\^$ncall.*$ucall");
711 # do I want users from this channel?
712 unless ($self->user->wantpc16) {
713 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
716 if ($ncall eq $main::mycall) {
717 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
721 my $uref = Route::User::get($ucall);
723 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
726 my $parent = Route::Node::get($ncall);
728 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
732 $dxchan = $parent->dxchan;
733 if ($dxchan && $dxchan ne $self) {
734 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
738 # input filter if required
739 return unless $self->in_filter_route($parent);
741 $parent->del_user($uref);
743 if (eph_dup($line)) {
744 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
748 $self->route_pc17($parent, $uref);
752 if ($pcno == 18) { # link request
753 $self->state('init');
755 # record the type and version offered
756 if ($field[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
757 $self->version(53 + $1);
758 $self->user->version(53 + $1);
759 $self->build(0 + $2);
760 $self->user->build(0 + $2);
761 unless ($self->is_spider) {
762 $self->user->sort('S');
767 $self->version(50.0);
768 $self->version($field[2] / 100) if $field[2] && $field[2] =~ /^\d+$/;
769 $self->user->version($self->version);
772 # first clear out any nodes on this dxchannel
773 my $parent = Route::Node::get($self->{call});
774 my @rout = $parent->del_nodes;
775 $self->route_pc21(@rout, $parent) if @rout;
776 $self->send_local_config();
778 return; # we don't pass these on
781 if ($pcno == 19) { # incoming cluster list
783 my $newline = "PC19^";
785 if (eph_dup($line)) {
786 dbg("PCPROT: dup PC19 detected") if isdbg('chanerr');
792 my $parent = Route::Node::get($self->{call});
794 dbg("DXPROT: my parent $self->{call} has disappeared");
800 for ($i = 1; $i < $#field-1; $i += 4) {
801 my $here = $field[$i];
802 my $call = uc $field[$i+1];
803 my $conf = $field[$i+2];
804 my $ver = $field[$i+3];
805 next unless defined $here && defined $conf && is_callsign($call);
807 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
809 # check for sane parameters
810 # $ver = 5000 if $ver eq '0000';
811 next if $ver < 5000; # only works with version 5 software
812 next if length $call < 3; # min 3 letter callsigns
813 next if $call eq $main::mycall;
815 # check that this PC19 isn't trying to alter the wrong dxchan
816 my $dxchan = DXChannel->get($call);
817 if ($dxchan && $dxchan != $self) {
818 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
822 # update it if required
823 my $r = Route::Node::get($call);
824 my $flags = Route::here($here)|Route::conf($conf);
827 if ($call ne $parent->call) {
828 if ($self->in_filter_route($r)) {
829 $ar = $parent->add($call, $ver, $flags);
830 push @rout, $ar if $ar;
835 if ($r->version ne $ver || $r->flags != $flags) {
838 push @rout, $r unless $ar;
841 if ($call eq $self->{call}) {
842 dbg("DXPROT: my channel route for $call has disappeared");
846 my $new = Route->new($call); # throw away
847 if ($self->in_filter_route($new)) {
848 my $r = $parent->add($call, $ver, $flags);
855 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
856 my $mref = DXMsg::get_busy($call);
857 $mref->stop_msg($call) if $mref;
859 # add this station to the user database, if required (don't remove SSID from nodes)
860 my $user = DXUser->get_current($call);
862 $user = DXUser->new($call);
864 $user->priv(1); # I have relented and defaulted nodes
866 $user->homenode($call);
869 $user->lastin($main::systime) unless DXChannel->get($call);
874 $self->route_pc19(@rout) if @rout;
878 if ($pcno == 20) { # send local configuration
879 $self->send_local_config();
881 $self->state('normal');
882 $self->{lastping} = 0;
886 if ($pcno == 21) { # delete a cluster from the list
887 my $call = uc $field[1];
889 eph_del_regex("^PC1[79].*$call");
891 # if I get a PC21 from the same callsign as self then treat it
892 # as a PC39: I have gone away
893 if ($call eq $self->call) {
894 $self->disconnect(1);
899 my $parent = Route::Node::get($self->{call});
901 dbg("DXPROT: my parent $self->{call} has disappeared");
905 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
906 my $node = Route::Node::get($call);
909 my $dxchan = DXChannel->get($call);
910 if ($dxchan && $dxchan != $self) {
911 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
916 return unless $self->in_filter_route($node);
919 push @rout, $node->del($parent);
922 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
926 # if (eph_dup($line)) {
927 # dbg("PCPROT: dup PC21 detected") if isdbg('chanerr');
931 $self->route_pc21(@rout) if @rout;
936 $self->state('normal');
937 $self->{lastping} = 0;
941 if ($pcno == 23 || $pcno == 27) { # WWV info
943 # route 'foreign' pc27s
945 if ($field[8] ne $main::mycall) {
946 $self->route($field[8], $line);
951 return if $rspfcheck and !$self->rspfcheck(1, $field[8], $field[7]);
954 my $d = cltounix($field[1], sprintf("%02d18Z", $field[2]));
955 my $sfi = unpad($field[3]);
956 my $k = unpad($field[4]);
957 my $i = unpad($field[5]);
958 my ($r) = $field[6] =~ /R=(\d+)/;
960 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $field[2] < 0 || $field[2] > 23) {
961 dbg("PCPROT: WWV Date ($field[1] $field[2]) out of range") if isdbg('chanerr');
964 if (Geomag::dup($d,$sfi,$k,$i,$field[6])) {
965 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
968 $field[7] =~ s/-\d+$//o; # remove spotter's ssid
970 my $wwv = Geomag::update($d, $field[2], $sfi, $k, $i, @field[6..8], $r);
974 $rep = Local::wwv($self, $field[1], $field[2], $sfi, $k, $i, @field[6..8], $r);
976 # dbg("Local::wwv2 error $@") if isdbg('local') if $@;
979 # DON'T be silly and send on PC27s!
980 return if $pcno == 27;
982 # broadcast to the eager world
983 send_wwv_spot($self, $line, $d, $field[2], $sfi, $k, $i, @field[6..8]);
987 if ($pcno == 24) { # set here status
988 my $call = uc $field[1];
990 $nref = Route::Node::get($call);
991 $uref = Route::User::get($call);
992 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
994 unless (eph_dup($line)) {
995 $nref->here($field[2]) if $nref;
996 $uref->here($field[2]) if $uref;
997 my $ref = $nref || $uref;
998 return unless $self->in_filter_route($ref);
999 $self->route_pc24($ref, $field[3]);
1004 if ($pcno == 25) { # merge request
1005 if ($field[1] ne $main::mycall) {
1006 $self->route($field[1], $line);
1009 if ($field[2] eq $main::mycall) {
1010 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1014 Log('DXProt', "Merge request for $field[3] spots and $field[4] WWV from $field[2]");
1017 if ($field[3] > 0) {
1018 my @in = reverse Spot::search(1, undef, undef, 0, $field[3]);
1021 $self->send(pc26(@{$in}[0..4], $field[2]));
1026 if ($field[4] > 0) {
1027 my @in = reverse Geomag::search(0, $field[4], time, 1);
1030 $self->send(pc27(@{$in}[0..5], $field[2]));
1036 if (($pcno >= 28 && $pcno <= 33) || $pcno == 40 || $pcno == 42 || $pcno == 49) { # mail/file handling
1037 return if $pcno == 49 && eph_dup($line);
1038 if ($pcno == 49 || $field[1] eq $main::mycall) {
1039 DXMsg::process($self, $line);
1041 $self->route($field[1], $line) unless $self->is_clx;
1046 if ($pcno == 34 || $pcno == 36) { # remote commands (incoming)
1047 if (eph_dup($line, $eph_pc34_restime)) {
1048 dbg("PCPROT: dupe") if isdbg('chanerr');
1050 $self->process_rcmd($field[1], $field[2], $field[2], $field[3]);
1055 if ($pcno == 35) { # remote command replies
1056 eph_del_regex("^PC35\\^$field[2]\\^$field[1]\\^");
1057 $self->process_rcmd_reply($field[1], $field[2], $field[1], $field[3]);
1061 # for pc 37 see 44 onwards
1063 if ($pcno == 38) { # node connected list from neighbour
1067 if ($pcno == 39) { # incoming disconnect
1068 if ($field[1] eq $self->{call}) {
1069 $self->disconnect(1);
1071 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1076 if ($pcno == 41) { # user info
1077 my $call = $field[1];
1079 if (eph_dup($line, $eph_info_restime)) {
1080 dbg("PCPROT: dupe") if isdbg('chanerr');
1084 # input filter if required
1085 # my $ref = Route::get($call) || Route->new($call);
1086 # return unless $self->in_filter_route($ref);
1088 if ($field[3] eq $field[2] || $field[3] =~ /^\s*$/) {
1089 dbg('PCPROT: invalid value') if isdbg('chanerr');
1093 # add this station to the user database, if required
1094 my $user = DXUser->get_current($call);
1095 $user = DXUser->new($call) unless $user;
1097 if ($field[2] == 1) {
1098 $user->name($field[3]);
1099 } elsif ($field[2] == 2) {
1100 $user->qth($field[3]);
1101 } elsif ($field[2] == 3) {
1102 if (is_latlong($field[3])) {
1103 my ($lat, $long) = DXBearing::stoll($field[3]);
1106 $user->qra(DXBearing::lltoqra($lat, $long));
1108 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1111 } elsif ($field[2] == 4) {
1112 $user->homenode($field[3]);
1113 } elsif ($field[2] == 5) {
1114 if (is_qra(uc $field[3])) {
1115 my ($lat, $long) = DXBearing::qratoll(uc $field[3]);
1118 $user->qra(uc $field[3]);
1120 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1124 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1127 unless ($self->{isolate}) {
1128 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1131 # perhaps this IS what we want after all
1132 # $self->route_pc41($ref, $call, $field[2], $field[3], $field[4]);
1140 if ($pcno == 37 || $pcno == 44 || $pcno == 45 || $pcno == 46 || $pcno == 47 || $pcno == 48) {
1141 DXDb::process($self, $line);
1145 if ($pcno == 50) { # keep alive/user list
1146 my $call = $field[1];
1147 my $node = Route::Node::get($call);
1149 return unless $node->call eq $self->{call};
1150 $node->usercount($field[2]);
1152 # input filter if required
1153 return unless $self->in_filter_route($node);
1155 $self->route_pc50($node, $field[2], $field[3]) unless eph_dup($line);
1160 if ($pcno == 51) { # incoming ping requests/answers
1162 my $from = $field[2];
1163 my $flag = $field[3];
1167 if ($to eq $main::mycall) {
1169 $self->send(pc51($from, $to, '0'));
1171 # it's a reply, look in the ping list for this one
1172 my $ref = $pings{$from};
1174 my $tochan = DXChannel->get($from);
1176 my $r = shift @$ref;
1177 my $dxchan = DXChannel->get($r->{call});
1178 next unless $dxchan;
1179 my $t = tv_interval($r->{t}, [ gettimeofday ]);
1180 if ($dxchan->is_user) {
1181 my $s = sprintf "%.2f", $t;
1182 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
1183 $dxchan->send($dxchan->msg('pingi', $from, $s, $ave))
1184 } elsif ($dxchan->is_node) {
1186 my $nopings = $tochan->user->nopings || 2;
1187 push @{$tochan->{pingtime}}, $t;
1188 shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
1190 # cope with a missed ping, this means you must set the pingint large enough
1191 if ($t > $tochan->{pingint} && $t < 2 * $tochan->{pingint} ) {
1192 $t -= $tochan->{pingint};
1195 # calc smoothed RTT a la TCP
1196 if (@{$tochan->{pingtime}} == 1) {
1197 $tochan->{pingave} = $t;
1199 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
1201 $tochan->{nopings} = $nopings; # pump up the timer
1208 if (eph_dup($line)) {
1209 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1212 # route down an appropriate thingy
1213 $self->route($to, $line);
1218 if ($pcno == 75) { # dunno but route it
1219 my $call = $field[1];
1220 if ($call ne $main::mycall) {
1221 $self->route($call, $line);
1226 if ($pcno == 73) { # WCY broadcasts
1227 my $call = $field[1];
1230 my $d = cltounix($call, sprintf("%02d18Z", $field[2]));
1231 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $field[2] < 0 || $field[2] > 23) {
1232 dbg("PCPROT: WCY Date ($call $field[2]) out of range") if isdbg('chanerr');
1235 @field = map { unpad($_) } @field;
1237 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1241 my $wcy = WCY::update($d, @field[2..12]);
1245 $rep = Local::wcy($self, @field[1..12]);
1247 # dbg("Local::wcy error $@") if isdbg('local') if $@;
1250 # broadcast to the eager world
1251 send_wcy_spot($self, $line, $d, @field[2..12]);
1255 if ($pcno == 84) { # remote commands (incoming)
1256 $self->process_rcmd($field[1], $field[2], $field[3], $field[4]);
1260 if ($pcno == 85) { # remote command replies
1261 $self->process_rcmd_reply($field[1], $field[2], $field[3], $field[4]);
1265 if ($pcno == 90) { # new style PC16,17,19,21
1270 # if get here then rebroadcast the thing with its Hop count decremented (if
1271 # there is one). If it has a hop count and it decrements to zero then don't
1274 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1278 if (eph_dup($line)) {
1279 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1281 unless ($self->{isolate}) {
1282 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1288 # This is called from inside the main cluster processing loop and is used
1289 # for despatching commands that are doing some long processing job
1294 my @dxchan = DXChannel->get_all();
1298 # send out a pc50 on EVERY channel all at once
1299 if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1300 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1305 foreach $dxchan (@dxchan) {
1306 next unless $dxchan->is_node();
1307 next if $dxchan == $main::me;
1309 # send the pc50 or PC90
1310 $dxchan->send($pc50s) if $pc50s;
1312 # send a ping out on this channel
1313 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1314 if ($dxchan->{nopings} <= 0) {
1315 $dxchan->disconnect;
1317 addping($main::mycall, $dxchan->call);
1318 $dxchan->{nopings} -= 1;
1319 $dxchan->{lastping} = $t;
1325 if ($t - $last10 >= 10) {
1326 # clean out ephemera
1333 if ($main::systime - 3600 > $last_hour) {
1334 $last_hour = $main::systime;
1339 # finish up a pc context
1343 # some active measures
1351 my @dxchan = DXChannel->get_all();
1354 # send it if it isn't the except list and isn't isolated and still has a hop count
1355 # taking into account filtering and so on
1356 foreach $dxchan (@dxchan) {
1357 next if $dxchan == $main::me;
1358 next if $dxchan == $self && $self->is_node;
1359 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1367 my $isolate = shift;
1368 my ($filter, $hops);
1370 if ($self->{spotsfilter}) {
1371 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1372 return unless $filter;
1374 send_prot_line($self, $filter, $hops, $isolate, $line);
1379 my ($self, $filter, $hops, $isolate, $line) = @_;
1384 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1386 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
1387 return unless $routeit;
1390 $self->send($routeit);
1392 $self->send($routeit) unless $self->{isolate} || $isolate;
1401 my @dxchan = DXChannel->get_all();
1403 my ($wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1404 my @dxcc = Prefix::extract($_[6]);
1406 $wwv_dxcc = $dxcc[1]->dxcc;
1407 $wwv_itu = $dxcc[1]->itu;
1408 $wwv_cq = $dxcc[1]->cq;
1410 @dxcc = Prefix::extract($_[7]);
1412 $org_dxcc = $dxcc[1]->dxcc;
1413 $org_itu = $dxcc[1]->itu;
1414 $org_cq = $dxcc[1]->cq;
1417 # send it if it isn't the except list and isn't isolated and still has a hop count
1418 # taking into account filtering and so on
1419 foreach $dxchan (@dxchan) {
1420 next if $dxchan == $main::me;
1421 next if $dxchan == $self && $self->is_node;
1423 my ($filter, $hops);
1425 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, $wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq);
1434 my $isolate = shift;
1435 my ($filter, $hops);
1437 if ($self->{wwvfilter}) {
1438 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1439 return unless $filter;
1441 send_prot_line($self, $filter, $hops, $isolate, $line)
1448 my @dxchan = DXChannel->get_all();
1450 my ($wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1451 my @dxcc = Prefix::extract($_[10]);
1453 $wcy_dxcc = $dxcc[1]->dxcc;
1454 $wcy_itu = $dxcc[1]->itu;
1455 $wcy_cq = $dxcc[1]->cq;
1457 @dxcc = Prefix::extract($_[11]);
1459 $org_dxcc = $dxcc[1]->dxcc;
1460 $org_itu = $dxcc[1]->itu;
1461 $org_cq = $dxcc[1]->cq;
1464 # send it if it isn't the except list and isn't isolated and still has a hop count
1465 # taking into account filtering and so on
1466 foreach $dxchan (@dxchan) {
1467 next if $dxchan == $main::me;
1468 next if $dxchan == $self;
1470 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, $wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq);
1478 my $isolate = shift;
1479 my ($filter, $hops);
1481 if ($self->{wcyfilter}) {
1482 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1483 return unless $filter;
1485 send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1493 my @dxchan = DXChannel->get_all();
1497 my $text = unpad($_[2]);
1499 if ($_[3] eq '*') { # sysops
1501 } elsif ($_[3] gt ' ') { # speciality list handling
1502 my ($name) = split /\./, $_[3];
1503 $target = "$name"; # put the rest in later (if bothered)
1510 $target = "ALL" if !$target;
1513 # obtain country codes etc
1514 my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1515 my ($ann_state, $org_state) = ("", "");
1516 my @dxcc = Prefix::extract($_[0]);
1518 $ann_dxcc = $dxcc[1]->dxcc;
1519 $ann_itu = $dxcc[1]->itu;
1520 $ann_cq = $dxcc[1]->cq;
1521 $ann_state = $dxcc[1]->state;
1523 @dxcc = Prefix::extract($_[4]);
1525 $org_dxcc = $dxcc[1]->dxcc;
1526 $org_itu = $dxcc[1]->itu;
1527 $org_cq = $dxcc[1]->cq;
1528 $org_state = $dxcc[1]->state;
1531 if ($self->{inannfilter}) {
1532 my ($filter, $hops) =
1533 $self->{inannfilter}->it(@_, $self->{call},
1534 $ann_dxcc, $ann_itu, $ann_cq,
1535 $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1537 dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1542 if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1543 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1547 Log('ann', $target, $_[0], $text);
1549 # send it if it isn't the except list and isn't isolated and still has a hop count
1550 # taking into account filtering and so on
1551 foreach $dxchan (@dxchan) {
1552 next if $dxchan == $main::me;
1553 next if $dxchan == $self && $self->is_node;
1554 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
1562 my $isolate = shift;
1566 my ($filter, $hops);
1568 if ($self->{annfilter}) {
1569 ($filter, $hops) = $self->{annfilter}->it(@_);
1570 return unless $filter;
1572 send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
1576 sub send_local_config
1584 dbg('DXProt::send_local_config') if isdbg('trace');
1587 if ($self->{isolate}) {
1588 @localnodes = ( $main::routeroot );
1590 # create a list of all the nodes that are not connected to this connection
1591 # and are not themselves isolated, this to make sure that isolated nodes
1592 # don't appear outside of this node
1593 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
1594 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
1595 my @intcalls = map { $_->nodes } @localnodes if @localnodes;
1596 my $ref = Route::Node::get($self->{call});
1597 my @rnodes = $ref->nodes;
1598 for my $node (@intcalls) {
1599 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes;
1601 unshift @localnodes, $main::routeroot;
1605 $self->send_route(\&pc19, scalar(@localnodes)+scalar(@remotenodes), @localnodes, @remotenodes);
1607 # get all the users connected on the above nodes and send them out
1608 foreach $node (@localnodes, @remotenodes) {
1610 my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
1611 $self->send_route(\&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
1613 dbg("sent a null value") if isdbg('chanerr');
1619 # route a message down an appropriate interface for a callsign
1621 # is called route(to, pcline);
1625 my ($self, $call, $line) = @_;
1627 if (ref $self && $call eq $self->{call}) {
1628 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1632 # always send it down the local interface if available
1633 my $dxchan = DXChannel->get($call);
1635 my $cl = Route::get($call);
1636 $dxchan = $cl->dxchan if $cl;
1638 if (ref $self && $dxchan eq $self) {
1639 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1645 my $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name
1647 $dxchan->send($routeit) unless $dxchan == $main::me;
1650 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
1655 # obtain the hops from the list for this callsign and pc no
1661 my $hops = $DXProt::hopcount{$pcno};
1662 $hops = $DXProt::def_hopcount if !$hops;
1667 # adjust the hop count on a per node basis using the user loadable
1668 # hop table if available or else decrement an existing one
1675 my $call = $self->{call};
1678 if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
1679 my ($pcno) = $s =~ /^PC(\d\d)/o;
1680 confess "$call called adjust_hops with '$s'" unless $pcno;
1681 my $ref = $nodehops{$call} if %nodehops;
1683 my $newhops = $ref->{$pcno};
1684 return "" if defined $newhops && $newhops == 0;
1685 $newhops = $ref->{default} unless $newhops;
1686 return "" if defined $newhops && $newhops == 0;
1687 $newhops = $hops if !$newhops;
1688 $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
1690 # simply decrement it
1692 return "" if !$hops;
1693 $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
1705 return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
1706 do "$main::data/hop_table.pl";
1712 # add a ping request to the ping queues
1715 my ($from, $to) = @_;
1716 my $ref = $pings{$to} || [];
1719 $r->{t} = [ gettimeofday ];
1720 route(undef, $to, pc51($to, $main::mycall, 1));
1727 my ($self, $tonode, $fromnode, $user, $cmd) = @_;
1728 if ($tonode eq $main::mycall) {
1729 my $ref = DXUser->get_current($fromnode);
1730 my $cref = Route::Node::get($fromnode);
1731 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
1732 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
1733 if ($ref->{priv}) { # you have to have SOME privilege, the commands have further filtering
1734 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
1735 my $oldpriv = $self->{priv};
1736 $self->{priv} = $ref->{priv}; # assume the user's privilege level
1737 my @in = (DXCommandmode::run_cmd($self, $cmd));
1738 $self->{priv} = $oldpriv;
1739 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
1740 delete $self->{remotecmd};
1742 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
1745 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
1748 my $ref = DXUser->get_current($tonode);
1749 if ($ref && $ref->is_clx) {
1750 $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
1752 $self->route($tonode, pc34($fromnode, $tonode, $cmd));
1757 sub process_rcmd_reply
1759 my ($self, $tonode, $fromnode, $user, $line) = @_;
1760 if ($tonode eq $main::mycall) {
1761 my $s = $rcmds{$fromnode};
1763 my $dxchan = DXChannel->get($s->{call});
1764 my $ref = $user eq $tonode ? $dxchan : (DXChannel->get($user) || $dxchan);
1765 $ref->send($line) if $ref;
1766 delete $rcmds{$fromnode} if !$dxchan;
1768 # send unsolicited ones to the sysop
1769 my $dxchan = DXChannel->get($main::myalias);
1770 $dxchan->send($line) if $dxchan;
1773 my $ref = DXUser->get_current($tonode);
1774 if ($ref && $ref->is_clx) {
1775 $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
1777 $self->route($tonode, pc35($fromnode, $tonode, $line));
1786 my $fromnode = shift;
1791 Log('rcmd', 'out', $fromnode, $line);
1792 if ($self->is_clx) {
1793 $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
1795 $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
1800 # add a rcmd request to the rcmd queues
1803 my ($self, $to, $cmd) = @_;
1806 $r->{call} = $self->{call};
1807 $r->{t} = $main::systime;
1811 my $ref = Route::Node::get($to);
1812 my $dxchan = $ref->dxchan;
1813 if ($dxchan && $dxchan->is_clx) {
1814 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
1816 route(undef, $to, pc34($main::mycall, $to, $cmd));
1823 my $pc39flag = shift;
1824 my $call = $self->call;
1826 return if $self->{disconnecting}++;
1828 unless ($pc39flag && $pc39flag == 1) {
1829 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
1832 # get rid of any PC16 and 19s
1833 eph_del_regex("^PC16\\^$call");
1834 eph_del_regex("^PC19\\^.*$call");
1837 my $node = Route::Node::get($call);
1840 @rout = $node->del($main::routeroot);
1843 # unbusy and stop and outgoing mail
1844 my $mref = DXMsg::get_busy($call);
1845 $mref->stop_msg($call) if $mref;
1847 # broadcast to all other nodes that all the nodes connected to via me are gone
1848 unless ($pc39flag && $pc39flag == 2) {
1849 $self->route_pc21(@rout) if @rout;
1852 # remove outstanding pings
1853 delete $pings{$call};
1855 # I was the last node visited
1856 $self->user->node($main::mycall);
1858 # send info to all logged in thingies
1859 $self->tell_login('logoutn');
1861 Log('DXProt', $call . " Disconnected");
1863 $self->SUPER::disconnect;
1868 # send a talk message to this thingy
1872 my ($self, $from, $to, $via, $line, $origin) = @_;
1874 $line =~ s/\^/\\5E/g; # remove any ^ characters
1875 $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
1876 Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
1879 # send it if it isn't the except list and isn't isolated and still has a hop count
1880 # taking into account filtering and so on
1884 my $generate = shift;
1885 my $no = shift; # the no of things to filter on
1887 my ($filter, $hops);
1890 for (; @_ && $no; $no--) {
1893 if (!$self->{isolate} && $self->{routefilter}) {
1896 ($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});
1900 dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
1903 dbg("was sent a null value") if isdbg('chanerr');
1906 push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
1910 foreach my $line (&$generate(@rin, @_)) {
1913 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1915 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
1916 next unless $routeit;
1918 $self->send($routeit);
1926 my $generate = shift;
1927 my @dxchan = DXChannel::get_all_nodes();
1931 unless ($self->{isolate}) {
1932 foreach $dxchan (@dxchan) {
1933 next if $dxchan == $self;
1934 next if $dxchan == $main::me;
1935 next if $dxchan->user->wantnp;
1936 next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
1938 $dxchan->send_route($generate, @_);
1946 return unless $self->user->wantpc16;
1947 broadcast_route($self, \&pc16, 1, @_);
1953 return unless $self->user->wantpc16;
1954 broadcast_route($self, \&pc17, 1, @_);
1960 broadcast_route($self, \&pc19, scalar @_, @_);
1966 broadcast_route($self, \&pc21, scalar @_, @_);
1972 broadcast_route($self, \&pc24, 1, @_);
1978 broadcast_route($self, \&pc41, 1, @_);
1984 broadcast_route($self, \&pc50, 1, @_);
1990 broadcast_route($self, \&pc90, 1, @_);
1997 my ($filter, $hops) = (1, 1);
1999 if ($self->{inroutefilter}) {
2000 ($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);
2001 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2009 my $t = shift || $eph_restime;
2013 $s =~ s/\^H\d\d?\^?\~?$//;
2014 $r = 1 if exists $eph{$s}; # pump up the dup if it keeps circulating
2015 $eph{$s} = $main::systime + $t;
2023 while (($key, $val) = each %eph) {
2024 if ($key =~ m{$regex}) {
2034 while (($key, $val) = each %eph) {
2035 if ($main::systime >= $val) {
2046 while (($key, $val) = each %eph) {
2047 push @out, $key, $val;
2054 goto &DXCommandmode::run_cmd;