3 # This module impliments the protocal mode for a dx cluster
5 # Copyright (c) 1998 Dirk Koopman G1TLH
41 use vars qw($VERSION $BRANCH);
42 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
43 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0));
44 $main::build += $VERSION;
45 $main::branch += $BRANCH;
47 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
48 $last_hour $last10 %eph %pings %rcmds $ann_to_talk
49 $pingint $obscount %pc19list $chatdupeage $chatimportfn
50 $investigation_int $pc19_version $myprot_version
51 %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
52 $allowzero $decode_dk0wcy $send_opernam @checklist
55 $pc11_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc11
56 $pc23_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc23
58 $last_hour = time; # last time I did an hourly periodic update
59 %rcmds = (); # outstanding rcmd requests outbound
60 %nodehops = (); # node specific hop control
61 %pc19list = (); # list of outstanding PC19s that haven't had PC16s on them
63 $censorpc = 1; # Do a BadWords::check on text fields and reject things
64 # loads of 'bad things'
65 $baddx = new DXHash "baddx";
66 $badspotter = new DXHash "badspotter";
67 $badnode = new DXHash "badnode";
68 $last10 = $last_pc50 = time;
72 $eph_info_restime = 60*60;
73 $eph_pc34_restime = 30;
76 $chatdupeage = 20 * 60 * 60;
77 $chatimportfn = "$main::root/chat_import";
78 $investigation_int = 12*60*60; # time between checks to see if we can see this node
79 $pc19_version = 5466; # the visible version no for outgoing PC19s generated from pc59
80 $handle_xml = 0; # handle XML sentences
84 [ qw(i c c m bp bc c) ], # pc10
85 [ qw(i f m d t m c c h) ], # pc11
86 [ qw(i c bm m bm bm p h) ], # pc12
90 undef , # pc16 has to be validated manually
91 [ qw(i c c h) ], # pc17
93 undef , # pc19 has to be validated manually
94 undef , # pc20 no validation
95 [ qw(i c m h) ], # pc21
96 undef , # pc22 no validation
97 [ qw(i d n n n n m c c h) ], # pc23
98 [ qw(i c p h) ], # pc24
99 [ qw(i c c n n) ], # pc25
100 [ qw(i f m d t m c c bc) ], # pc26
101 [ qw(i d n n n n m c c bc) ], # pc27
102 [ qw(i c c m c d t p m bp n p bp bc) ], # pc28
103 [ qw(i c c n m) ], # pc29
104 [ qw(i c c n) ], # pc30
105 [ qw(i c c n) ], # pc31
106 [ qw(i c c n) ], # pc32
107 [ qw(i c c n) ], # pc33
108 [ qw(i c c m) ], # pc34
109 [ qw(i c c m) ], # pc35
110 [ qw(i c c m) ], # pc36
111 [ qw(i c c n m) ], # pc37
112 undef, # pc38 not interested
113 [ qw(i c m) ], # pc39
114 [ qw(i c c m p n) ], # pc40
115 [ qw(i c n m h) ], # pc41
116 [ qw(i c c n) ], # pc42
117 undef, # pc43 don't handle it
118 [ qw(i c c n m m c) ], # pc44
119 [ qw(i c c n m) ], # pc45
120 [ qw(i c c n) ], # pc46
123 [ qw(i c m h) ], # pc49
124 [ qw(i c n h) ], # pc50
125 [ qw(i c c n) ], # pc51
147 [ qw(i d n n n n n n m m m c c h) ], # pc73
158 [ qw(i c c c m) ], # pc84
159 [ qw(i c c c m) ], # pc85
164 [ qw(i c n) ], # pc90
167 # use the entry in the check list to check the field list presented
168 # return OK if line NOT in check list (for now)
173 return 0 if $n < 0 || $n > @checklist;
174 my $ref = $checklist[$n];
175 return 0 unless ref $ref;
178 for ($i = 1; $i < @$ref; $i++) {
179 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
180 return 0 unless $act;
181 next if $blank && $_[$i] =~ /^[ \*]$/;
183 return $i unless is_callsign($_[$i]);
184 } elsif ($act eq 'i') {
186 } elsif ($act eq 'm') {
187 return $i unless is_pctext($_[$i]);
188 } elsif ($act eq 'p') {
189 return $i unless is_pcflag($_[$i]);
190 } elsif ($act eq 'f') {
191 return $i unless is_freq($_[$i]);
192 } elsif ($act eq 'n') {
193 return $i unless $_[$i] =~ /^[\d ]+$/;
194 } elsif ($act eq 'h') {
195 return $i unless $_[$i] =~ /^H\d\d?$/;
196 } elsif ($act eq 'd') {
197 return $i unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
198 } elsif ($act eq 't') {
199 return $i unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
207 do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
210 my $user = DXUser->get($main::mycall);
211 die "User $main::mycall not setup or disappeared RTFM" unless $user;
213 $myprot_version += $main::version*100;
214 $main::me = DXProt->new($main::mycall, 0, $user);
215 $main::me->{here} = 1;
216 $main::me->{state} = "indifferent";
217 $main::me->{sort} = 'S'; # S for spider
218 $main::me->{priv} = 9;
219 $main::me->{metric} = 0;
220 $main::me->{pingave} = 0;
221 $main::me->{registered} = 1;
222 $main::me->{version} = $main::version;
223 $main::me->{build} = $main::build;
227 # obtain a new connection this is derived from dxchannel
232 my $self = DXChannel::alloc(@_);
234 # add this node to the table, the values get filled in later
237 $main::routeroot->add($call, '5000', Route::here(1)) if $call ne $main::mycall;
242 # this is how a pc connection starts (for an incoming connection)
243 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
244 # all the crap that comes between).
247 my ($self, $line, $sort) = @_;
248 my $call = $self->{call};
249 my $user = $self->{user};
252 my $host = $self->{conn}->{peerhost};
253 $host ||= "AGW Port #$self->{conn}->{agwport}" if exists $self->{conn}->{agwport};
256 Log('DXProt', "$call connected from $host");
258 # remember type of connection
259 $self->{consort} = $line;
260 $self->{outbound} = $sort eq 'O';
261 my $priv = $user->priv;
262 $priv = $user->priv(1) unless $priv;
263 $self->{priv} = $priv; # other clusters can always be 'normal' users
264 $self->{lang} = $user->lang || 'en';
265 $self->{isolate} = $user->{isolate};
266 $self->{consort} = $line; # save the connection type
270 # sort out registration
271 $self->{registered} = 1;
273 # get the output filters
274 $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
275 $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
276 $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
277 $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
278 $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
281 # get the INPUT filters (these only pertain to Clusters)
282 $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
283 $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
284 $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
285 $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
286 $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
288 # set unbuffered and no echo
289 $self->send_now('B',"0");
290 $self->send_now('E',"0");
291 $self->conn->echo(0) if $self->conn->can('echo');
293 # ping neighbour node stuff
294 my $ping = $user->pingint;
295 $ping = $pingint unless defined $ping;
296 $self->{pingint} = $ping;
297 $self->{nopings} = $user->nopings || $obscount;
298 $self->{pingtime} = [ ];
299 $self->{pingave} = 999;
300 $self->{metric} ||= 100;
301 $self->{lastping} = $main::systime;
303 # send initialisation string
304 unless ($self->{outbound}) {
308 $self->state('init');
309 $self->{pc50_t} = $main::systime;
311 # send info to all logged in thingies
312 $self->tell_login('loginn');
314 # run a script send the output to the debug file
315 my $script = new Script(lc $call) || new Script('node_default');
316 $script->run($self) if $script;
320 # send outgoing 'challenge'
330 # This is the normal pcxx despatcher
334 my ($self, $line) = @_;
336 if ($line =~ '^<\w+\s') {
337 DXXml::normal($self, $line);
341 my @field = split /\^/, $line;
342 return unless @field;
344 pop @field if $field[-1] eq '~';
346 # print join(',', @field), "\n";
349 # process PC frames, this will fail unless the frame starts PCnn
350 my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
351 unless (defined $pcno && $pcno >= 10 && $pcno <= 99) {
352 dbg("PCPROT: unknown protocol") if isdbg('chanerr');
356 # check for and dump bad protocol messages
357 my $n = check($pcno, @field);
359 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
363 my $origin = $self->{call};
365 my $sub = "handle_$pcno";
367 if ($self->can($sub)) {
368 $self->$sub($pcno, $line, $origin, @field);
370 $self->handle_default($pcno, $line, $origin, @field);
374 # incoming talk commands
383 return if $rspfcheck and !$self->rspfcheck(0, $_[6], $_[1]);
385 # will we allow it at all?
388 if (@bad = BadWords::check($_[3])) {
389 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
394 # is it for me or one of mine?
395 my ($from, $to, $via, $call, $dxchan);
404 # if this is a 'nodx' node then ignore it
405 if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
406 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
410 # if this is a 'bad spotter' user then ignore it
412 $nossid =~ s/-\d+$//;
413 if ($badspotter->in($nossid)) {
414 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
418 # if we are converting announces to talk is it a dup?
420 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
421 dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
426 # remember a route to this node and also the node on which this user is
427 RouteDB::update($_[6], $self->{call});
428 # RouteDB::update($to, $_[6]);
430 # it is here and logged on
431 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
432 $dxchan = DXChannel::get($to) unless $dxchan;
433 if ($dxchan && $dxchan->is_user) {
435 $dxchan->talk($from, $to, $via, $_[3]);
439 # is it elsewhere, visible on the cluster via the to address?
440 # note: this discards the via unless the to address is on
443 if ($ref = Route::get($to)) {
444 $vref = Route::Node::get($via) if $via;
445 $vref = undef unless $vref && grep $to eq $_, $vref->users;
446 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
450 # can we see an interface to send it down?
452 # not visible here, send a message of condolence
454 $ref = Route::get($from);
455 $vref = $ref = Route::Node::get($_[6]) unless $ref;
457 $dxchan = $ref->dxchan;
458 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
470 # route 'foreign' pc26s
472 if ($_[7] ne $main::mycall) {
473 $self->route($_[7], $line);
479 # return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
481 # is the spotted callsign blank? This should really be trapped earlier but it
482 # could break other protocol sentences. Also check for lower case characters.
483 if ($_[2] =~ /^\s*$/) {
484 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
487 if ($_[2] =~ /[a-z]/) {
488 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
493 # if this is a 'nodx' node then ignore it
494 if ($badnode->in($_[7])) {
495 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
499 # if this is a 'bad spotter' user then ignore it
501 $nossid =~ s/-\d+$//;
502 if ($badspotter->in($nossid)) {
503 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
507 # convert the date to a unix date
508 my $d = cltounix($_[3], $_[4]);
509 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
510 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
511 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
516 if ($baddx->in($_[2]) || BadWords::check($_[2]) || $_[2] =~ /COCK/) {
517 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
522 $_[5] =~ s/^\s+//; # take any leading blanks off
523 $_[2] = unpad($_[2]); # take off leading and trailing blanks from spotted callsign
524 if ($_[2] =~ /BUST\w*$/) {
525 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
530 if (@bad = BadWords::check($_[5])) {
531 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
537 # RouteDB::update($_[7], $self->{call});
538 # RouteDB::update($_[6], $_[7]);
540 my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $nossid, $_[7]);
541 # global spot filtering on INPUT
542 if ($self->{inspotsfilter}) {
543 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
545 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
550 # this goes after the input filtering, but before the add
551 # so that if it is input filtered, it isn't added to the dup
552 # list. This allows it to come in from a "legitimate" source
553 if (Spot::dup(@spot[0..4,5])) {
554 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
562 # @spot at this point contains:-
563 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
564 # then spotted itu, spotted cq, spotters itu, spotters cq
565 # you should be able to route on any of these
568 # fix up qra locators of known users
569 my $user = DXUser->get_current($spot[4]);
571 my $qra = $user->qra;
572 unless ($qra && is_qra($qra)) {
573 my $lat = $user->lat;
574 my $long = $user->long;
575 if (defined $lat && defined $long) {
576 $user->qra(DXBearing::lltoqra($lat, $long));
581 # send a remote command to a distant cluster if it is visible and there is no
582 # qra locator and we havn't done it for a month.
584 unless ($user->qra) {
586 my $to = $user->homenode;
587 my $last = $user->lastoper || 0;
588 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
589 my $cmd = "forward/opernam $spot[4]";
590 # send the rcmd but we aren't interested in the replies...
591 my $dxchan = $node->dxchan;
592 if ($dxchan && $dxchan->is_clx) {
593 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
595 route(undef, $to, pc34($main::mycall, $to, $cmd));
599 $node = Route::Node::get($to);
601 $dxchan = $node->dxchan;
602 if ($dxchan && $dxchan->is_clx) {
603 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
605 route(undef, $to, pc34($main::mycall, $to, $cmd));
609 $user->lastoper($main::systime);
618 $r = Local::spot($self, @spot);
620 # dbg("Local::spot1 error $@") if isdbg('local') if $@;
623 # DON'T be silly and send on PC26s!
624 return if $pcno == 26;
626 # send out the filtered spots
627 send_dx_spot($self, $line, @spot) if @spot;
638 # return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
640 # announce duplicate checking
641 $_[3] =~ s/^\s+//; # remove leading blanks
645 if (@bad = BadWords::check($_[3])) {
646 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
651 # if this is a 'nodx' node then ignore it
652 if ($badnode->in($_[5])) {
653 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
657 # if this is a 'bad spotter' user then ignore it
659 $nossid =~ s/-\d+$//;
660 if ($badspotter->in($nossid)) {
661 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
668 if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
669 $self->send_chat($line, @_[1..6]);
670 } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
673 # RouteDB::update($_[5], $self->{call});
674 # RouteDB::update($_[1], $_[5]);
676 # ignore something that looks like a chat line coming in with sysop
677 # flag - this is a kludge...
678 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
679 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
683 # here's a bit of fun, convert incoming ann with a callsign in the first word
684 # or one saying 'to <call>' to a talk if we can route to the recipient
686 my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
688 my $ref = Route::get($call);
690 $dxchan = $ref->dxchan;
691 $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
698 $self->send_announce($line, @_[1..6]);
700 $self->route($_[2], $line);
715 my $newline = "PC16^";
717 # dos I want users from this channel?
718 unless ($self->user->wantpc16) {
719 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
723 if ($ncall eq $main::mycall) {
724 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
728 RouteDB::update($ncall, $self->{call});
730 # do we believe this call?
731 unless ($ncall eq $self->{call} || $self->is_believed($ncall)) {
732 if (my $ivp = Investigate::get($ncall, $self->{call})) {
733 $ivp->store_pcxx($pcno,$line,$origin,@_);
735 dbg("PCPROT: We don't believe $ncall on $self->{call}") if isdbg('chanerr');
740 if (eph_dup($line)) {
741 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
745 my $parent = Route::Node::get($ncall);
747 # if there is a parent, proceed, otherwise if there is a latent PC19 in the PC19list,
748 # fix it up in the routing tables and issue it forth before the PC16
750 my $nl = $pc19list{$ncall};
752 if ($nl && @_ > 3) { # 3 because of the hop count!
754 # this is a new (remembered) node, now attach it to me if it isn't in filtered
755 # and we haven't disallowed it
756 my $user = DXUser->get_current($ncall);
758 $user = DXUser->new($ncall);
760 $user->priv(1); # I have relented and defaulted nodes
762 $user->homenode($ncall);
766 my $wantpc19 = $user->wantroutepc19;
767 if ($wantpc19 || !defined $wantpc19) {
768 my $new = Route->new($ncall); # throw away
769 if ($self->in_filter_route($new)) {
772 $parent = Route::Node::get($_->[0]);
773 $dxchan = $parent->dxchan if $parent;
774 if ($dxchan && $dxchan ne $self) {
775 dbg("PCPROT: PC19 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
779 my $r = $parent->add($ncall, $_->[1], $_->[2]);
780 push @nrout, $r unless @nrout;
783 $user->wantroutepc19(1) unless defined $wantpc19; # for now we work on the basis that pc16 = real route
784 $user->lastin($main::systime) unless DXChannel::get($ncall);
787 # route the pc19 - this will cause 'stuttering PC19s' for a while
788 $self->route_pc19($origin, $line, @nrout) if @nrout ;
789 $parent = Route::Node::get($ncall);
791 dbg("PCPROT: lost $ncall after sending PC19 for it?");
797 delete $pc19list{$ncall};
800 dbg("PCPROT: Node $ncall not in config") if isdbg('chanerr');
805 $dxchan = $parent->dxchan;
806 if ($dxchan && $dxchan ne $self) {
807 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
811 # input filter if required
812 return unless $self->in_filter_route($parent);
817 for ($i = 2; $i < $#_; $i++) {
818 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
819 next unless $call && $conf && defined $here && is_callsign($call);
820 next if $call eq $main::mycall;
822 eph_del_regex("^PC17\\^$call\\^$ncall");
824 $conf = $conf eq '*';
826 # reject this if we think it is a node already
827 my $r = Route::Node::get($call);
828 my $u = DXUser->get_current($call) unless $r;
829 if ($r || ($u && $u->is_node)) {
830 dbg("PCPROT: $call is a node") if isdbg('chanerr');
834 $r = Route::User::get($call);
835 my $flags = Route::here($here)|Route::conf($conf);
838 my $au = $r->addparent($parent);
839 if ($r->flags != $flags) {
843 push @rout, $r if $au;
845 push @rout, $parent->add_user($call, $flags);
849 # add this station to the user database, if required
850 $call =~ s/-\d+$//o; # remove ssid for users
851 my $user = DXUser->get_current($call);
852 $user = DXUser->new($call) if !$user;
853 $user->homenode($parent->call) if !$user->homenode;
854 $user->node($parent->call);
855 $user->lastin($main::systime) unless DXChannel::get($call);
858 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
872 eph_del_regex("^PC16\\^$ncall.*$ucall");
874 # do I want users from this channel?
875 unless ($self->user->wantpc16) {
876 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
879 if ($ncall eq $main::mycall) {
880 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
884 RouteDB::delete($ncall, $self->{call});
886 # do we believe this call?
887 unless ($ncall eq $self->{call} || $self->is_believed($ncall)) {
888 if (my $ivp = Investigate::get($ncall, $self->{call})) {
889 $ivp->store_pcxx($pcno,$line,$origin,@_);
891 dbg("PCPROT: We don't believe $ncall on $self->{call}") if isdbg('chanerr');
896 my $uref = Route::User::get($ucall);
898 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
900 my $parent = Route::Node::get($ncall);
902 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
905 $dxchan = $parent->dxchan if $parent;
906 if ($dxchan && $dxchan ne $self) {
907 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
911 # input filter if required and then remove user if present
913 # return unless $self->in_filter_route($parent);
914 $parent->del_user($uref) if $uref;
916 $parent = Route->new($ncall); # throw away
919 if (eph_dup($line)) {
920 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
924 $uref = Route->new($ucall) unless $uref; # throw away
925 $self->route_pc17($origin, $line, $parent, $uref);
935 $self->state('init');
937 # record the type and version offered
938 if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
939 $self->version(53 + $1);
940 $self->user->version(53 + $1);
941 $self->build(0 + $2);
942 $self->user->build(0 + $2);
943 unless ($self->is_spider) {
944 $self->user->sort('S');
948 $self->{handle_xml}++ if $main::do_xml && $_[1] =~ /\bxml\b/;
950 $self->version(50.0);
951 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
952 $self->user->version($self->version);
955 # first clear out any nodes on this dxchannel
956 my $parent = Route::Node::get($self->{call});
957 my @rout = $parent->del_nodes;
958 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
959 $self->send_local_config();
963 # incoming cluster list
972 my $newline = "PC19^";
977 # first get the INTERFACE node
978 my $parent = Route::Node::get($self->{call});
980 dbg("DXPROT: my parent $self->{call} has disappeared");
985 # if the origin isn't the same as the INTERFACE, then reparent, creating nodes as necessary
986 if ($origin ne $self->call) {
987 my $op = Route::Node::get($origin);
989 $op = $parent->add($origin, 5000, Route::here(1));
990 my $user = DXUser->get_current($origin);
992 $user = DXUser->new($origin);
993 $user->priv(1); # I have relented and defaulted nodes
995 $user->homenode($origin);
996 $user->node($origin);
997 $user->wantroutepc19(1);
999 $user->sort('A') unless $user->is_node;
1006 for ($i = 1; $i < $#_-1; $i += 4) {
1008 my $call = uc $_[$i+1];
1009 my $conf = $_[$i+2];
1011 next unless defined $here && defined $conf && is_callsign($call);
1013 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
1015 # check for sane parameters
1016 # $ver = 5000 if $ver eq '0000';
1017 next if $ver < 5000; # only works with version 5 software
1018 next if length $call < 3; # min 3 letter callsigns
1019 next if $call eq $main::mycall;
1021 # check that this PC19 isn't trying to alter the wrong dxchan
1022 my $dxchan = DXChannel::get($call);
1023 if ($dxchan && $dxchan != $self) {
1024 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
1028 # add this station to the user database, if required (don't remove SSID from nodes)
1029 my $user = DXUser->get_current($call);
1031 $user = DXUser->new($call);
1032 $user->priv(1); # I have relented and defaulted nodes
1034 $user->homenode($call);
1037 $user->sort('A') unless $user->is_node;
1039 RouteDB::update($call, $self->{call});
1041 # do we believe this call?
1042 my $genline = "PC19^$here^$call^$conf^$ver^$_[-1]^";
1043 unless ($call eq $self->{call} || $self->is_believed($call)) {
1044 my $pt = $user->lastping($self->{call}) || 0;
1045 if ($pt+$investigation_int < $main::systime && !Investigate::get($call, $self->{call})) {
1046 my $ivp = Investigate->new($call, $self->{call});
1047 $ivp->version($ver);
1049 $ivp->store_pcxx($pcno,$genline,$origin,'PC19',$here,$call,$conf,$ver,$_[-1]);
1051 dbg("PCPROT: We don't believe $call on $self->{call}") if isdbg('chanerr');
1057 if (eph_dup($genline)) {
1058 dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
1062 my $r = Route::Node::get($call);
1063 my $flags = Route::here($here)|Route::conf($conf);
1065 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1068 if ($call ne $parent->call) {
1069 if ($self->in_filter_route($r)) {
1070 $ar = $parent->add($call, $ver, $flags);
1071 push @rout, $ar if $ar;
1076 if ($r->version ne $ver || $r->flags != $flags) {
1079 push @rout, $r unless $ar;
1083 # if he is directly connected or allowed then add him, otherwise store him up for later
1084 if ($call eq $self->{call} || $user->wantroutepc19) {
1085 my $new = Route->new($call); # throw away
1086 if ($self->in_filter_route($new)) {
1087 my $ar = $parent->add($call, $ver, $flags);
1088 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1089 push @rout, $ar if $ar;
1094 $pc19list{$call} = [] unless exists $pc19list{$call};
1095 my $nl = $pc19list{$call};
1096 push @{$pc19list{$call}}, [$self->{call}, $ver, $flags] unless grep $_->[0] eq $self->{call}, @$nl;
1100 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1101 my $mref = DXMsg::get_busy($call);
1102 $mref->stop_msg($call) if $mref;
1104 $user->lastin($main::systime) unless DXChannel::get($call);
1109 $self->route_pc19($origin, $line, @rout) if @rout;
1112 # send local configuration
1119 $self->send_local_config();
1120 $self->send(pc22());
1121 $self->state('normal');
1122 $self->{lastping} = 0;
1125 # delete a cluster from the list
1132 my $call = uc $_[1];
1134 eph_del_regex("^PC1[679].*$call");
1136 # if I get a PC21 from the same callsign as self then treat it
1137 # as a PC39: I have gone away
1138 if ($call eq $self->call) {
1139 $self->disconnect(1);
1143 RouteDB::delete($call, $self->{call});
1145 # check if we believe this
1146 unless ($call eq $self->{call} || $self->is_believed($call)) {
1147 if (my $ivp = Investigate::get($call, $self->{call})) {
1148 $ivp->store_pcxx($pcno,$line,$origin,@_);
1150 dbg("PCPROT: We don't believe $call on $self->{call}") if isdbg('chanerr');
1155 # check to see if we are in the pc19list, if we are then don't bother with any of
1156 # this routing table manipulation, just remove it from the list and dump it
1158 if (my $nl = $pc19list{$call}) {
1159 $pc19list{$call} = [ grep {$_->[0] ne $self->{call}} @$nl ];
1160 delete $pc19list{$call} unless @{$pc19list{$call}};
1163 my $parent = Route::Node::get($self->{call});
1165 dbg("DXPROT: my parent $self->{call} has disappeared");
1169 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1170 my $node = Route::Node::get($call);
1173 my $dxchan = DXChannel::get($call);
1174 if ($dxchan && $dxchan != $self) {
1175 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1180 return unless $self->in_filter_route($node);
1183 push @rout, $node->del($parent);
1186 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1191 $self->route_pc21($origin, $line, @rout) if @rout;
1201 $self->state('normal');
1202 $self->{lastping} = 0;
1213 # route foreign' pc27s
1215 if ($_[8] ne $main::mycall) {
1216 $self->route($_[8], $line);
1221 # only do a rspf check on PC23 (not 27)
1223 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
1227 my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1228 my $sfi = unpad($_[3]);
1229 my $k = unpad($_[4]);
1230 my $i = unpad($_[5]);
1231 my ($r) = $_[6] =~ /R=(\d+)/;
1233 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1234 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1238 # global wwv filtering on INPUT
1239 my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
1240 if ($self->{inwwvfilter}) {
1241 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
1243 dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1247 $_[7] =~ s/-\d+$//o; # remove spotter's ssid
1248 if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
1249 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1253 # note this only takes the first one it gets
1254 Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1258 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1260 # dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1263 # DON'T be silly and send on PC27s!
1264 return if $pcno == 27;
1266 # broadcast to the eager world
1267 send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1277 my $call = uc $_[1];
1279 $nref = Route::Node::get($call);
1280 $uref = Route::User::get($call);
1281 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1283 if (eph_dup($line)) {
1284 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1288 $nref->here($_[2]) if $nref;
1289 $uref->here($_[2]) if $uref;
1290 my $ref = $nref || $uref;
1291 return unless $self->in_filter_route($ref);
1293 $self->route_pc24($origin, $line, $ref, $_[3]);
1303 if ($_[1] ne $main::mycall) {
1304 $self->route($_[1], $line);
1307 if ($_[2] eq $main::mycall) {
1308 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1312 Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1316 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1319 $self->send(pc26(@{$in}[0..4], $_[2]));
1325 my @in = reverse Geomag::search(0, $_[4], time, 1);
1328 $self->send(pc27(@{$in}[0..5], $_[2]));
1333 sub handle_26 {goto &handle_11}
1334 sub handle_27 {goto &handle_23}
1336 # mail/file handling
1343 if ($_[1] eq $main::mycall) {
1345 my $sub = "DXMsg::handle_$pcno";
1348 $self->route($_[1], $line) unless $self->is_clx;
1352 sub handle_29 {goto &handle_28}
1353 sub handle_30 {goto &handle_28}
1354 sub handle_31 {goto &handle_28}
1355 sub handle_32 {goto &handle_28}
1356 sub handle_33 {goto &handle_28}
1364 if (eph_dup($line, $eph_pc34_restime)) {
1365 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1367 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1371 # remote command replies
1378 eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1379 $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1382 sub handle_36 {goto &handle_34}
1391 if ($_[1] eq $main::mycall) {
1393 my $sub = "DXDb::handle_$pcno";
1396 $self->route($_[1], $line) unless $self->is_clx;
1400 # node connected list from neighbour
1409 # incoming disconnect
1416 if ($_[1] eq $self->{call}) {
1417 $self->disconnect(1);
1419 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1423 sub handle_40 {goto &handle_28}
1435 $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1436 if (eph_dup($l, $eph_info_restime)) {
1437 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1441 # input filter if required
1442 # my $ref = Route::get($call) || Route->new($call);
1443 # return unless $self->in_filter_route($ref);
1445 if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1446 dbg('PCPROT: invalid value') if isdbg('chanerr');
1450 # add this station to the user database, if required
1451 my $user = DXUser->get_current($call);
1452 $user = DXUser->new($call) unless $user;
1456 } elsif ($_[2] == 2) {
1458 } elsif ($_[2] == 3) {
1459 if (is_latlong($_[3])) {
1460 my ($lat, $long) = DXBearing::stoll($_[3]);
1463 $user->qra(DXBearing::lltoqra($lat, $long));
1465 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1468 } elsif ($_[2] == 4) {
1469 $user->homenode($_[3]);
1470 } elsif ($_[2] == 5) {
1471 if (is_qra(uc $_[3])) {
1472 my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1475 $user->qra(uc $_[3]);
1477 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1481 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1484 unless ($self->{isolate}) {
1485 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1488 # perhaps this IS what we want after all
1489 # $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1492 sub handle_42 {goto &handle_28}
1496 sub handle_44 {goto &handle_37}
1497 sub handle_45 {goto &handle_37}
1498 sub handle_46 {goto &handle_37}
1499 sub handle_47 {goto &handle_37}
1500 sub handle_48 {goto &handle_37}
1502 # message and database
1510 if (eph_dup($line)) {
1511 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1515 if ($_[1] eq $main::mycall) {
1516 DXMsg::handle_49($self, @_);
1518 $self->route($_[1], $line) unless $self->is_clx;
1522 # keep alive/user list
1532 RouteDB::update($call, $self->{call});
1534 my $node = Route::Node::get($call);
1536 return unless $node->call eq $self->{call};
1537 $node->usercount($_[2]);
1539 # input filter if required
1540 return unless $self->in_filter_route($node);
1542 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1546 # incoming ping requests/answers
1559 if ($to eq $main::mycall) {
1561 $self->send(pc51($from, $to, '0'));
1563 DXXml::Ping::handle_ping_reply($self, $from);
1567 RouteDB::update($from, $self->{call});
1569 if (eph_dup($line)) {
1570 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1573 # route down an appropriate thingy
1574 $self->route($to, $line);
1578 # dunno but route it
1586 if ($call ne $main::mycall) {
1587 $self->route($call, $line);
1601 my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1602 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1603 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1606 @_ = map { unpad($_) } @_;
1608 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1612 my $wcy = WCY::update($d, @_[2..12]);
1616 $rep = Local::wcy($self, @_[1..12]);
1618 # dbg("Local::wcy error $@") if isdbg('local') if $@;
1621 # broadcast to the eager world
1622 send_wcy_spot($self, $line, $d, @_[2..12]);
1625 # remote commands (incoming)
1632 $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1635 # remote command replies
1642 $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1645 # if get here then rebroadcast the thing with its Hop count decremented (if
1646 # there is one). If it has a hop count and it decrements to zero then don't
1649 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1660 if (eph_dup($line)) {
1661 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1663 unless ($self->{isolate}) {
1664 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1670 # This is called from inside the main cluster processing loop and is used
1671 # for despatching commands that are doing some long processing job
1676 my @dxchan = DXChannel::get_all();
1680 # send out a pc50 on EVERY channel all at once
1681 if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1682 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1687 foreach $dxchan (@dxchan) {
1688 next unless $dxchan->is_node;
1689 next if $dxchan->handle_xml;
1690 next if $dxchan == $main::me;
1693 $dxchan->send($pc50s) if $pc50s;
1695 # send a ping out on this channel
1696 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1697 if ($dxchan->{nopings} <= 0) {
1698 $dxchan->disconnect;
1700 DXXml::Ping::add($main::me, $dxchan->call);
1701 $dxchan->{nopings} -= 1;
1702 $dxchan->{lastping} = $t;
1703 $dxchan->{lastping} += $dxchan->{pingint} / 2 unless @{$dxchan->{pingtime}};
1708 Investigate::process();
1711 if ($t - $last10 >= 10) {
1712 # clean out ephemera
1721 if ($main::systime - 3600 > $last_hour) {
1722 $last_hour = $main::systime;
1727 # finish up a pc context
1731 # some active measures
1739 my @dxchan = DXChannel::get_all();
1742 # send it if it isn't the except list and isn't isolated and still has a hop count
1743 # taking into account filtering and so on
1744 foreach $dxchan (@dxchan) {
1745 next if $dxchan == $main::me;
1746 next if $dxchan == $self && $self->is_node;
1747 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1755 my $isolate = shift;
1756 my ($filter, $hops);
1758 if ($self->{spotsfilter}) {
1759 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1760 return unless $filter;
1762 send_prot_line($self, $filter, $hops, $isolate, $line);
1767 my ($self, $filter, $hops, $isolate, $line) = @_;
1773 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1775 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
1776 return unless $routeit;
1779 $self->send($routeit);
1781 $self->send($routeit) unless $self->{isolate} || $isolate;
1790 my @dxchan = DXChannel::get_all();
1792 my @dxcc = ((Prefix::cty_data($_[6]))[0..2], (Prefix::cty_data($_[7]))[0..2]);
1794 # send it if it isn't the except list and isn't isolated and still has a hop count
1795 # taking into account filtering and so on
1796 foreach $dxchan (@dxchan) {
1797 next if $dxchan == $main::me;
1798 next if $dxchan == $self && $self->is_node;
1800 my ($filter, $hops);
1802 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1810 my $isolate = shift;
1811 my ($filter, $hops);
1813 if ($self->{wwvfilter}) {
1814 ($filter, $hops) = $self->{wwvfilter}->it(@_[7..$#_]);
1815 return unless $filter;
1817 send_prot_line($self, $filter, $hops, $isolate, $line)
1824 my @dxchan = DXChannel::get_all();
1826 my @dxcc = ((Prefix::cty_data($_[10]))[0..2], (Prefix::cty_data($_[11]))[0..2]);
1828 # send it if it isn't the except list and isn't isolated and still has a hop count
1829 # taking into account filtering and so on
1830 foreach $dxchan (@dxchan) {
1831 next if $dxchan == $main::me;
1832 next if $dxchan == $self;
1834 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1842 my $isolate = shift;
1843 my ($filter, $hops);
1845 if ($self->{wcyfilter}) {
1846 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1847 return unless $filter;
1849 send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1857 my @dxchan = DXChannel::get_all();
1861 my $text = unpad($_[2]);
1863 if ($_[3] eq '*') { # sysops
1865 } elsif ($_[3] gt ' ') { # speciality list handling
1866 my ($name) = split /\./, $_[3];
1867 $target = "$name"; # put the rest in later (if bothered)
1874 $target = "ALL" if !$target;
1877 # obtain country codes etc
1878 my @a = Prefix::cty_data($_[0]);
1879 my @b = Prefix::cty_data($_[4]);
1880 if ($self->{inannfilter}) {
1881 my ($filter, $hops) =
1882 $self->{inannfilter}->it(@_, $self->{call},
1884 @b[0..2], $a[3], $b[3]);
1886 dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1891 if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1892 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1896 Log('ann', $target, $_[0], $text);
1898 # send it if it isn't the except list and isn't isolated and still has a hop count
1899 # taking into account filtering and so on
1900 foreach $dxchan (@dxchan) {
1901 next if $dxchan == $main::me;
1902 next if $dxchan == $self && $self->is_node;
1903 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call},
1904 @a[0..2], @b[0..2]);
1913 $msgid = 1 if $msgid > 999;
1922 my @dxchan = DXChannel::get_all();
1925 my $text = unpad($_[2]);
1928 # munge the group and recast the line if required
1929 if ($target =~ s/\.LST$//) {
1933 # obtain country codes etc
1934 my @a = Prefix::cty_data($_[0]);
1935 my @b = Prefix::cty_data($_[4]);
1936 if ($self->{inannfilter}) {
1937 my ($filter, $hops) =
1938 $self->{inannfilter}->it(@_, $self->{call},
1940 @b[0..2], $a[3], $b[3]);
1942 dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1947 if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
1948 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1953 Log('chat', $target, $_[0], $text);
1955 # send it if it isn't the except list and isn't isolated and still has a hop count
1956 # taking into account filtering and so on
1957 foreach $dxchan (@dxchan) {
1958 my $is_ak1a = $dxchan->is_ak1a;
1960 if ($dxchan->is_node) {
1961 next if $dxchan == $main::me;
1962 next if $dxchan == $self;
1963 next unless $dxchan->is_spider || $is_ak1a;
1964 next if $target eq 'LOCAL';
1965 if (!$ak1a_line && $is_ak1a) {
1966 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
1970 $dxchan->chat($is_ak1a ? $ak1a_line : $line, $self->{isolate}, $target, $_[1],
1971 $text, @_, $self->{call}, @a[0..2], @b[0..2]);
1979 my $isolate = shift;
1983 my ($filter, $hops);
1985 if ($self->{annfilter}) {
1986 ($filter, $hops) = $self->{annfilter}->it(@_);
1987 return unless $filter;
1989 send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
1998 sub send_local_config
2006 dbg('DXProt::send_local_config') if isdbg('trace');
2009 if ($self->{isolate}) {
2010 @localnodes = ( $main::routeroot );
2011 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
2013 # create a list of all the nodes that are not connected to this connection
2014 # and are not themselves isolated, this to make sure that isolated nodes
2015 # don't appear outside of this node
2017 # send locally connected nodes
2018 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
2019 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
2020 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
2023 my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
2025 for $node (@rawintcalls) {
2026 push @intcalls, $node unless grep $node eq $_, @intcalls;
2028 my $ref = Route::Node::get($self->{call});
2029 my @rnodes = $ref->nodes;
2030 for $node (@intcalls) {
2031 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
2033 $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
2036 # get all the users connected on the above nodes and send them out
2037 foreach $node ($main::routeroot, @localnodes, @remotenodes) {
2039 my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
2040 $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
2042 dbg("sent a null value") if isdbg('chanerr');
2048 # route a message down an appropriate interface for a callsign
2050 # is called route(to, pcline);
2055 my ($self, $call, $line) = @_;
2057 if (ref $self && $call eq $self->{call}) {
2058 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2062 # always send it down the local interface if available
2063 my $dxchan = DXChannel::get($call);
2065 dbg("route: $call -> $dxchan->{call} direct" ) if isdbg('route');
2067 my $cl = Route::get($call);
2068 $dxchan = $cl->dxchan if $cl;
2070 if (ref $self && $dxchan eq $self) {
2071 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2074 dbg("route: $call -> $dxchan->{call} using normal route" ) if isdbg('route');
2078 # try the backstop method
2080 my $rcall = RouteDB::get($call);
2082 if ($self && $rcall eq $self->{call}) {
2083 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2086 $dxchan = DXChannel::get($rcall);
2087 dbg("route: $call -> $rcall using RouteDB" ) if isdbg('route') && $dxchan;
2092 my $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name
2094 $dxchan->send($routeit) unless $dxchan == $main::me;
2097 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
2102 # obtain the hops from the list for this callsign and pc no
2108 my $hops = $DXProt::hopcount{$pcno};
2109 $hops = $DXProt::def_hopcount if !$hops;
2114 # adjust the hop count on a per node basis using the user loadable
2115 # hop table if available or else decrement an existing one
2122 my $call = $self->{call};
2125 if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2126 my ($pcno) = $s =~ /^PC(\d\d)/o;
2127 confess "$call called adjust_hops with '$s'" unless $pcno;
2128 my $ref = $nodehops{$call} if %nodehops;
2130 my $newhops = $ref->{$pcno};
2131 return "" if defined $newhops && $newhops == 0;
2132 $newhops = $ref->{default} unless $newhops;
2133 return "" if defined $newhops && $newhops == 0;
2134 $newhops = $hops if !$newhops;
2135 $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2137 # simply decrement it
2139 return "" if !$hops;
2140 $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2152 return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2153 do "$main::data/hop_table.pl";
2160 my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2161 if ($tonode eq $main::mycall) {
2162 my $ref = DXUser->get_current($fromnode);
2163 my $cref = Route::Node::get($fromnode);
2164 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2165 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2166 if ($ref->{priv}) { # you have to have SOME privilege, the commands have further filtering
2167 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2168 my $oldpriv = $self->{priv};
2169 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2170 my @in = (DXCommandmode::run_cmd($self, $cmd));
2171 $self->{priv} = $oldpriv;
2172 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2173 delete $self->{remotecmd};
2175 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2178 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2181 my $ref = DXUser->get_current($tonode);
2182 if ($ref && $ref->is_clx) {
2183 $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2185 $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2190 sub process_rcmd_reply
2192 my ($self, $tonode, $fromnode, $user, $line) = @_;
2193 if ($tonode eq $main::mycall) {
2194 my $s = $rcmds{$fromnode};
2196 my $dxchan = DXChannel::get($s->{call});
2197 my $ref = $user eq $tonode ? $dxchan : (DXChannel::get($user) || $dxchan);
2198 $ref->send($line) if $ref;
2199 delete $rcmds{$fromnode} if !$dxchan;
2201 # send unsolicited ones to the sysop
2202 my $dxchan = DXChannel::get($main::myalias);
2203 $dxchan->send($line) if $dxchan;
2206 my $ref = DXUser->get_current($tonode);
2207 if ($ref && $ref->is_clx) {
2208 $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2210 $self->route($tonode, pc35($fromnode, $tonode, $line));
2219 my $fromnode = shift;
2224 Log('rcmd', 'out', $fromnode, $line);
2225 if ($self->is_clx) {
2226 $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2228 $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2233 # add a rcmd request to the rcmd queues
2236 my ($self, $to, $cmd) = @_;
2239 $r->{call} = $self->{call};
2240 $r->{t} = $main::systime;
2244 my $ref = Route::Node::get($to);
2245 my $dxchan = $ref->dxchan;
2246 if ($dxchan && $dxchan->is_clx) {
2247 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2249 route(undef, $to, pc34($main::mycall, $to, $cmd));
2256 my $pc39flag = shift;
2257 my $call = $self->call;
2259 return if $self->{disconnecting}++;
2261 unless ($pc39flag && $pc39flag == 1) {
2262 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2265 # get rid of any PC16/17/19
2266 eph_del_regex("^PC1[679]*$call");
2268 # do routing stuff, remove me from routing table
2269 my $node = Route::Node::get($call);
2272 @rout = $node->del($main::routeroot);
2274 # and all my ephemera as well
2277 eph_del_regex("^PC1[679].*$c");
2281 RouteDB::delete_interface($call);
2283 # remove them from the pc19list as well
2284 while (my ($k,$v) = each %pc19list) {
2285 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2287 $pc19list{$k} = \@l;
2289 delete $pc19list{$k};
2293 eph_del_regex("^PC1[679].*$k");
2296 # unbusy and stop and outgoing mail
2297 my $mref = DXMsg::get_busy($call);
2298 $mref->stop_msg($call) if $mref;
2300 # broadcast to all other nodes that all the nodes connected to via me are gone
2301 unless ($pc39flag && $pc39flag == 2) {
2302 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2305 # remove outstanding pings
2306 delete $pings{$call};
2308 # I was the last node visited
2309 $self->user->node($main::mycall);
2311 # send info to all logged in thingies
2312 $self->tell_login('logoutn');
2314 Log('DXProt', $call . " Disconnected");
2316 $self->SUPER::disconnect;
2321 # send a talk message to this thingy
2325 my ($self, $from, $to, $via, $line, $origin) = @_;
2327 $line =~ s/\^/\\5E/g; # remove any ^ characters
2328 $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2329 Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2332 # send it if it isn't the except list and isn't isolated and still has a hop count
2333 # taking into account filtering and so on
2339 my $generate = shift;
2340 my $no = shift; # the no of things to filter on
2342 my ($filter, $hops);
2345 for (; @_ && $no; $no--) {
2348 if (!$self->{isolate} && $self->{routefilter}) {
2351 ($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});
2355 dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2358 dbg("was sent a null value") if isdbg('chanerr');
2361 push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2365 foreach my $line (&$generate(@rin, @_)) {
2368 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2370 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
2371 next unless $routeit;
2374 $self->send($routeit);
2383 my $generate = shift;
2385 my @dxchan = DXChannel::get_all_nodes();
2388 unless ($self->{isolate}) {
2389 foreach $dxchan (@dxchan) {
2390 next if $dxchan == $self;
2391 next if $dxchan == $main::me;
2392 next unless $dxchan->isa('DXProt');
2393 next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2395 $dxchan->send_route($origin, $generate, @_);
2403 return unless $self->user->wantpc16;
2406 broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2412 return unless $self->user->wantpc16;
2415 broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2423 broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2431 broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2439 broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2447 broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2455 broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2462 my ($filter, $hops) = (1, 1);
2464 if ($self->{inroutefilter}) {
2465 ($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);
2466 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2474 my $t = shift || $eph_restime;
2478 $s =~ s/\^H\d\d?\^?\~?$//;
2479 $r = 1 if exists $eph{$s}; # pump up the dup if it keeps circulating
2480 $eph{$s} = $main::systime + $t;
2481 dbg("PCPROT: emphemeral duplicate") if $r && isdbg('chanerr');
2489 while (($key, $val) = each %eph) {
2490 if ($key =~ m{$regex}) {
2500 while (($key, $val) = each %eph) {
2501 if ($main::systime >= $val) {
2512 while (($key, $val) = each %eph) {
2513 push @out, $key, $val;
2520 goto &DXCommandmode::run_cmd;
2524 # import any msgs in the chat directory
2525 # the messages are sent to the chat group which forms the
2526 # the first part of the name (eg: solar.1243.txt would be
2527 # sent to chat group SOLAR)
2529 # Each message found is sent: one non-blank line to one chat
2530 # message. So 4 lines = 4 chat messages.
2532 # The special name LOCAL is for local users ANN
2533 # The special name ALL is for ANN/FULL
2534 # The special name SYSOP is for ANN/SYSOP
2538 # are there any to do in this directory?
2539 return unless -d $chatimportfn;
2540 unless (opendir(DIR, $chatimportfn)) {
2541 dbg("can\'t open $chatimportfn $!") if isdbg('msg');
2542 Log('msg', "can\'t open $chatimportfn $!");
2546 my @names = readdir(DIR);
2549 foreach $name (@names) {
2550 next if $name =~ /^\./;
2551 my $splitit = $name =~ /^split/;
2552 my $fn = "$chatimportfn/$name";
2554 unless (open(MSG, $fn)) {
2555 dbg("can\'t open import file $fn $!") if isdbg('msg');
2556 Log('msg', "can\'t open import file $fn $!");
2560 my @msg = map { s/\r?\n$//; $_ } <MSG>;
2564 my @cat = split /\./, $name;
2565 my $target = uc $cat[0];
2567 foreach my $text (@msg) {
2568 next unless $text && $text !~ /^\s*#/;
2569 if ($target eq 'ALL' || $target eq 'LOCAL' || $target eq 'SYSOP') {
2570 my $sysopflag = $target eq 'SYSOP' ? '*' : ' ';
2571 if ($target ne 'LOCAL') {
2572 send_announce($main::me, pc12($main::mycall, $text, '*', $sysopflag), $main::mycall, '*', $text, $sysopflag, $main::mycall, '0');
2574 Log('ann', 'LOCAL', $main::mycall, $text);
2575 DXChannel::broadcast_list("To LOCAL de ${main::mycall}: $text\a", 'ann', undef, DXCommandmode->get_all());
2578 my $msgid = nextchatmsgid();
2579 $text = "#$msgid $text";
2580 send_chat($main::me, pc12($main::mycall, $text, '*', $target), $main::mycall, '*', $text, $target, $main::mycall, '0');