add some Hello and Bye
[spider.git] / perl / DXProt.pm
1 #!/usr/bin/perl
2 #
3 # This module impliments the protocal mode for a dx cluster
4 #
5 # Copyright (c) 1998 Dirk Koopman G1TLH
6 #
7 # $Id$
8
9
10 package DXProt;
11
12 @ISA = qw(DXChannel);
13
14 use DXUtil;
15 use DXChannel;
16 use DXUser;
17 use DXM;
18 use DXProtVars;
19 use DXCommandmode;
20 use DXLog;
21 use Spot;
22 use DXProtout;
23 use DXDebug;
24 use Filter;
25 use Local;
26 use DXDb;
27 use AnnTalk;
28 use Geomag;
29 use WCY;
30 use Time::HiRes qw(gettimeofday tv_interval);
31 use BadWords;
32 use DXHash;
33 use Route;
34 use Route::Node;
35 use Script;
36 use Investigate;
37 use RouteDB;
38 use Thingy;
39 use Thingy::Dx;
40 use Thingy::Rt;
41 use Thingy::Ping;
42 use Thingy::T;
43 use Thingy::Hello;
44 use Thingy::Bye;
45
46 use strict;
47
48 use vars qw($VERSION $BRANCH);
49
50 main::mkver($VERSION = q$Revision$);
51
52 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
53                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
54                         $pingint $obscount %pc19list $chatdupeage $chatimportfn
55                         $investigation_int $pc19_version $myprot_version
56                         %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
57                         $allowzero $decode_dk0wcy $send_opernam @checklist);
58
59 $pc11_max_age = 1*3600;                 # the maximum age for an incoming 'real-time' pc11
60 $pc23_max_age = 1*3600;                 # the maximum age for an incoming 'real-time' pc23
61
62 $last_hour = time;                              # last time I did an hourly periodic update
63 %pings = ();                    # outstanding ping requests outbound
64 %rcmds = ();                    # outstanding rcmd requests outbound
65 %nodehops = ();                 # node specific hop control
66 %pc19list = ();                                 # list of outstanding PC19s that haven't had PC16s on them
67
68 $censorpc = 1;                                  # Do a BadWords::check on text fields and reject things
69                                                                 # loads of 'bad things'
70 $baddx = new DXHash "baddx";
71 $badspotter = new DXHash "badspotter";
72 $badnode = new DXHash "badnode";
73 $last10 = $last_pc50 = time;
74 $ann_to_talk = 1;
75 $rspfcheck = 1;
76 $eph_restime = 180;
77 $eph_info_restime = 60*60;
78 $eph_pc34_restime = 30;
79 $pingint = 5*60;
80 $obscount = 2;
81 $chatdupeage = 20 * 60 * 60;
82 $chatimportfn = "$main::root/chat_import";
83 $investigation_int = 12*60*60;  # time between checks to see if we can see this node
84 $pc19_version = 5466;                   # the visible version no for outgoing PC19s generated from pc59
85
86 @checklist = 
87 (
88  [ qw(i c c m bp bc c) ],                       # pc10
89  [ qw(i f m d t m c c h) ],             # pc11
90  [ qw(i c bm m bm bm p h) ],            # pc12
91  [ qw(i c h) ],                                 # 
92  [ qw(i c h) ],                                 # 
93  [ qw(i c m h) ],                                       # 
94  undef ,                                                # pc16 has to be validated manually
95  [ qw(i c c h) ],                                       # pc17
96  [ qw(i m n) ],                                 # pc18
97  undef ,                                                # pc19 has to be validated manually
98  undef ,                                                # pc20 no validation
99  [ qw(i c m h) ],                                       # pc21
100  undef ,                                                # pc22 no validation
101  [ qw(i d n n n n m c c h) ],           # pc23
102  [ qw(i c p h) ],                                       # pc24
103  [ qw(i c c n n) ],                             # pc25
104  [ qw(i f m d t m c c bc) ],            # pc26
105  [ qw(i d n n n n m c c bc) ],  # pc27
106  [ qw(i c c m c d t p m bp n p bp bc) ], # pc28
107  [ qw(i c c n m) ],                             # pc29
108  [ qw(i c c n) ],                                       # pc30
109  [ qw(i c c n) ],                                       # pc31
110  [ qw(i c c n) ],                                       # pc32
111  [ qw(i c c n) ],                                       # pc33
112  [ qw(i c c m) ],                                       # pc34
113  [ qw(i c c m) ],                                       # pc35
114  [ qw(i c c m) ],                                       # pc36
115  [ qw(i c c n m) ],                             # pc37
116  undef,                                                 # pc38 not interested
117  [ qw(i c m) ],                                 # pc39
118  [ qw(i c c m p n) ],                           # pc40
119  [ qw(i c n m h) ],                             # pc41
120  [ qw(i c c n) ],                                       # pc42
121  undef,                                                 # pc43 don't handle it
122  [ qw(i c c n m m c) ],                 # pc44
123  [ qw(i c c n m) ],                             # pc45
124  [ qw(i c c n) ],                                       # pc46
125  undef,                                                 # pc47
126  undef,                                                 # pc48
127  [ qw(i c m h) ],                                       # pc49
128  [ qw(i c n h) ],                                       # pc50
129  [ qw(i c c n) ],                                       # pc51
130  undef,
131  undef,
132  undef,
133  undef,
134  undef,
135  undef,
136  undef,
137  undef,
138  undef,                                                 # pc60
139  undef,
140  undef,
141  undef,
142  undef,
143  undef,
144  undef,
145  undef,
146  undef,
147  undef,
148  undef,                                                 # pc70
149  undef,
150  undef,
151  [ qw(i d n n n n n n m m m c c h) ],   # pc73
152  undef,
153  undef,
154  undef,
155  undef,
156  undef,
157  undef,
158  undef,                                                 # pc80
159  undef,
160  undef,
161  undef,
162  [ qw(i c c c m) ],                             # pc84
163  [ qw(i c c c m) ],                             # pc85
164  undef,
165  undef,
166  undef,
167  undef,
168  [ qw(i c n) ],                                 # pc90
169 );
170
171 # use the entry in the check list to check the field list presented
172 # return OK if line NOT in check list (for now)
173 sub check
174 {
175         my $n = shift;
176         $n -= 10;
177         return 0 if $n < 0 || $n > @checklist; 
178         my $ref = $checklist[$n];
179         return 0 unless ref $ref;
180         
181         my $i;
182         for ($i = 1; $i < @$ref; $i++) {
183                 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
184                 return 0 unless $act;
185                 next if $blank && $_[$i] =~ /^[ \*]$/;
186                 if ($act eq 'c') {
187                         return $i unless is_callsign($_[$i]);
188                 } elsif ($act eq 'i') {                 
189                         ;                                       # do nothing
190                 } elsif ($act eq 'm') {
191                         return $i unless is_pctext($_[$i]);
192                 } elsif ($act eq 'p') {
193                         return $i unless is_pcflag($_[$i]);
194                 } elsif ($act eq 'f') {
195                         return $i unless is_freq($_[$i]);
196                 } elsif ($act eq 'n') {
197                         return $i unless $_[$i] =~ /^[\d ]+$/;
198                 } elsif ($act eq 'h') {
199                         return $i unless $_[$i] =~ /^H\d\d?$/;
200                 } elsif ($act eq 'd') {
201                         return $i unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
202                 } elsif ($act eq 't') {
203                         return $i unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
204                 } 
205         }
206         return 0;
207 }
208
209 sub init
210 {
211         do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
212         confess $@ if $@;
213
214         my $user = DXUser->get($main::mycall);
215         die "User $main::mycall not setup or disappeared RTFM" unless $user;
216         
217         $myprot_version += $main::version*100;
218         $main::me = DXProt->new($main::mycall, 0, $user); 
219         $main::me->{here} = 1;
220         $main::me->{state} = "indifferent";
221         $main::me->{sort} = 'S';    # S for spider
222         $main::me->{priv} = 9;
223         $main::me->{metric} = 0;
224         $main::me->{pingave} = 0;
225         $main::me->{registered} = 1;
226         $main::me->{version} = 5251 + $main::version;
227         $main::me->{build} = $main::build;
228 }
229
230 #
231 # obtain a new connection this is derived from dxchannel
232 #
233
234 sub new 
235 {
236         my $self = DXChannel::alloc(@_);
237
238         # add this node to the table, the values get filled in later
239         my $pkg = shift;
240         my $call = shift;
241         $main::routeroot->add($call, '5000', Route::here(1)) if $call ne $main::mycall;
242         my $thing = Thingy::Hello->new(user=>$call);
243         $thing->broadcast($self);
244         
245         return $self;
246 }
247
248 # this is how a pc connection starts (for an incoming connection)
249 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
250 # all the crap that comes between).
251 sub start
252 {
253         my ($self, $line, $sort) = @_;
254         my $call = $self->{call};
255         my $user = $self->{user};
256
257         # log it
258         my $host = $self->{conn}->{peerhost} || "unknown";
259         Log('DXProt', "$call connected from $host");
260         
261         # remember type of connection
262         $self->{consort} = $line;
263         $self->{outbound} = $sort eq 'O';
264         my $priv = $user->priv;
265         $priv = $user->priv(1) unless $priv;
266         $self->{priv} = $priv;     # other clusters can always be 'normal' users
267         $self->{lang} = $user->lang || 'en';
268         $self->{isolate} = $user->{isolate};
269         $self->{consort} = $line;       # save the connection type
270         $self->{here} = 1;
271         $self->{width} = 80;
272
273         # sort out registration
274         $self->{registered} = 1;
275
276         # get the output filters
277         $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
278         $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
279         $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
280         $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
281         $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
282
283
284         # get the INPUT filters (these only pertain to Clusters)
285         $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
286         $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
287         $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
288         $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
289         $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
290         
291         # set unbuffered and no echo
292         $self->send_now('B',"0");
293         $self->send_now('E',"0");
294         $self->conn->echo(0) if $self->conn->can('echo');
295         
296         # ping neighbour node stuff
297         my $ping = $user->pingint;
298         $ping = $pingint unless defined $ping;
299         $self->{pingint} = $ping;
300         $self->{nopings} = $user->nopings || $obscount;
301         $self->{pingtime} = [ ];
302         $self->{pingave} = 999;
303         $self->{metric} ||= 100;
304         $self->{lastping} = $main::systime;
305
306         # send initialisation string
307         unless ($self->{outbound}) {
308                 $self->sendinit;
309         }
310         
311         $self->state('init');
312         $self->{pc50_t} = $main::systime;
313
314         # send info to all logged in thingies
315         $self->tell_login('loginn');
316
317         # run a script send the output to the debug file
318         my $script = new Script(lc $call) || new Script('node_default');
319         $script->run($self) if $script;
320 }
321
322 #
323 # send outgoing 'challenge'
324 #
325
326 sub sendinit
327 {
328         my $self = shift;
329         $self->send(pc18());
330 }
331
332
333 #
334 # This is the normal pcxx despatcher
335 #
336 sub normal
337 {
338         my ($self, $line) = @_;
339
340         my @field = split /\^/, $line;
341         return unless @field;
342         
343         pop @field if $field[-1] eq '~';
344         
345 #       print join(',', @field), "\n";
346                                                 
347         # process PC frames, this will fail unless the frame starts PCnn
348         my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
349         unless (defined $pcno && $pcno >= 10 && $pcno <= 99) {
350                 dbg("PCPROT: unknown protocol") if isdbg('chanerr');
351                 return;
352         }
353
354         # check for and dump bad protocol messages
355         my $n = check($pcno, @field);
356         if ($n) {
357                 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
358                 return;
359         }
360
361         # decrement any hop fields at this point
362         if ($line =~ /\^H(\d\d?)\^?~?$/) {
363                 my $hops = $1 - 1;
364                 if ($hops < 0) {
365                         dbg("PCPROT: zero hop count, dumped") if isdbg('chanerr');
366                         return;
367                 }
368                 $line =~ s/\^H\d\d?(\^?~?)$/^H$hops$1/;
369         }
370
371         my $origin = $self->{call};
372         no strict 'subs';
373         my $sub = "handle_$pcno";
374
375         if ($self->can($sub)) {
376                 $self->$sub($pcno, $line, $origin, @field);
377         } else {
378                 $self->handle_default($pcno, $line, $origin, @field);
379         }
380 }
381         
382 # incoming talk commands
383 sub handle_10
384 {
385         my $self = shift;
386         my $pcno = shift;
387         my $line = shift;
388         my $origin = shift;
389
390         # rsfp check
391         return if $rspfcheck and !$self->rspfcheck(0, $_[6], $_[1]);
392                         
393         # will we allow it at all?
394         if ($censorpc) {
395                 my @bad;
396                 if (@bad = BadWords::check($_[3])) {
397                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
398                         return;
399                 }
400         }
401
402         # is it for me or one of mine?
403         my ($from, $to, $via, $call, $dxchan);
404         $from = $_[1];
405         if ($_[5] gt ' ') {
406                 $via = $_[2];
407                 $to = $_[5];
408         } else {
409                 $to = $_[2];
410         }
411
412         # if this is a 'nodx' node then ignore it
413         if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
414                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
415                 return;
416         }
417
418         # if this is a 'bad spotter' user then ignore it
419         my $nossid = $from;
420         $nossid =~ s/-\d+$//;
421         if ($badspotter->in($nossid)) {
422                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
423                 return;
424         }
425
426         # if we are converting announces to talk is it a dup?
427         if ($ann_to_talk) {
428                 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
429                         dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
430                         return;
431                 }
432         }
433
434         # remember a route to this node and also the node on which this user is
435         RouteDB::update($_[6], $origin);
436 #       RouteDB::update($to, $_[6]);
437
438         # it is here and logged on
439         $dxchan = DXChannel->get($main::myalias) if $to eq $main::mycall;
440         $dxchan = DXChannel->get($to) unless $dxchan;
441         if ($dxchan && $dxchan->is_user) {
442                 $_[3] =~ s/\%5E/^/g;
443                 $dxchan->talk($from, $to, $via, $_[3]);
444                 return;
445         }
446
447         # is it elsewhere, visible on the cluster via the to address?
448         # note: this discards the via unless the to address is on
449         # the via address
450         my ($ref, $vref);
451         if ($ref = Route::get($to)) {
452                 $vref = Route::Node::get($via) if $via;
453                 $vref = undef unless $vref && grep $to eq $_, $vref->users;
454                 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
455                 return;
456         }
457
458         # can we see an interface to send it down?
459         
460         # not visible here, send a message of condolence
461         $vref = undef;
462         $ref = Route::get($from);
463         $vref = $ref = Route::Node::get($_[6]) unless $ref; 
464         if ($ref) {
465                 $dxchan = $ref->dxchan;
466                 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
467         }
468 }
469
470 # DX Spot handling
471 sub handle_11
472 {
473         my $self = shift;
474         my $pcno = shift;
475         my $line = shift;
476         my $origin = shift;
477
478         # route 'foreign' pc26s 
479         if ($pcno == 26) {
480                 if ($_[7] ne $main::mycall) {
481                         $self->route($_[7], $line);
482                         return;
483                 }
484         }
485                         
486         # rsfp check
487         #                       return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
488
489         # if this is a 'nodx' node then ignore it
490         if ($badnode->in($_[7])) {
491                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
492                 return;
493         }
494                         
495         # if this is a 'bad spotter' user then ignore it
496         my $nossid = $_[6];
497         $nossid =~ s/-\d+$//;
498         if ($badspotter->in($nossid)) {
499                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
500                 return;
501         }
502                         
503         # convert the date to a unix date
504         my $d = cltounix($_[3], $_[4]);
505         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
506         if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
507                 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
508                 return;
509         }
510
511         # is it 'baddx'
512         if ($baddx->in($_[2]) || BadWords::check($_[2])) {
513                 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
514                 return;
515         }
516                         
517         # do some de-duping
518         $_[5] =~ s/^\s+//;                      # take any leading blanks off
519         $_[2] = unpad($_[2]);           # take off leading and trailing blanks from spotted callsign
520         if ($_[2] =~ /BUST\w*$/) {
521                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
522                 return;
523         }
524         if ($censorpc) {
525                 my @bad;
526                 if (@bad = BadWords::check($_[5])) {
527                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
528                         return;
529                 }
530         }
531
532         # remember a route
533 #       RouteDB::update($_[7], $self->{call});
534 #       RouteDB::update($_[6], $_[7]);
535         
536         my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $_[6], $_[7]);
537
538         my $thing = Thingy::Dx->new(origin=>$main::mycall);
539         $thing->from_DXProt(DXProt=>$line,spotdata=>\@spot);
540         $thing->process($self);
541
542         # this goes after the input filtering, but before the add
543         # so that if it is input filtered, it isn't added to the dup
544         # list. This allows it to come in from a "legitimate" source
545         #
546         # @spot at this point contains:-
547         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
548         # then  spotted itu, spotted cq, spotters itu, spotters cq
549         # you should be able to route on any of these
550         #
551                         
552         # fix up qra locators of known users 
553         my $user = DXUser->get_current($spot[4]);
554         if ($user) {
555                 my $qra = $user->qra;
556                 unless ($qra && is_qra($qra)) {
557                         my $lat = $user->lat;
558                         my $long = $user->long;
559                         if (defined $lat && defined $long) {
560                                 $user->qra(DXBearing::lltoqra($lat, $long)); 
561                                 $user->put;
562                         }
563                 }
564
565                 # send a remote command to a distant cluster if it is visible and there is no
566                 # qra locator and we havn't done it for a month.
567
568                 unless ($user->qra) {
569                         my $node;
570                         my $to = $user->homenode;
571                         my $last = $user->lastoper || 0;
572                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
573                                 my $cmd = "forward/opernam $spot[4]";
574                                 # send the rcmd but we aren't interested in the replies...
575                                 my $dxchan = $node->dxchan;
576                                 if ($dxchan && $dxchan->is_clx) {
577                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
578                                 } else {
579                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
580                                 }
581                                 if ($to ne $_[7]) {
582                                         $to = $_[7];
583                                         $node = Route::Node::get($to);
584                                         if ($node) {
585                                                 $dxchan = $node->dxchan;
586                                                 if ($dxchan && $dxchan->is_clx) {
587                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
588                                                 } else {
589                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
590                                                 }
591                                         }
592                                 }
593                                 $user->lastoper($main::systime);
594                                 $user->put;
595                         }
596                 }
597         }
598 }
599                 
600 # announces
601 sub handle_12
602 {
603         my $self = shift;
604         my $pcno = shift;
605         my $line = shift;
606         my $origin = shift;
607
608         #                       return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
609
610         # announce duplicate checking
611         $_[3] =~ s/^\s+//;                      # remove leading blanks
612
613         if ($censorpc) {
614                 my @bad;
615                 if (@bad = BadWords::check($_[3])) {
616                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
617                         return;
618                 }
619         }
620
621         # if this is a 'nodx' node then ignore it
622         if ($badnode->in($_[5])) {
623                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
624                 return;
625         }
626
627         # if this is a 'bad spotter' user then ignore it
628         my $nossid = $_[1];
629         $nossid =~ s/-\d+$//;
630         if ($badspotter->in($nossid)) {
631                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
632                 return;
633         }
634
635
636         my $dxchan;
637         
638         if ((($dxchan = DXChannel->get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
639                 $self->send_chat($line, @_[1..6]);
640         } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
641
642                 # remember a route
643 #               RouteDB::update($_[5], $self->{call});
644 #               RouteDB::update($_[1], $_[5]);
645
646                 # ignore something that looks like a chat line coming in with sysop
647                 # flag - this is a kludge...
648                 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
649                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
650                         return;
651                 }
652
653                 # here's a bit of fun, convert incoming ann with a callsign in the first word
654                 # or one saying 'to <call>' to a talk if we can route to the recipient
655                 if ($ann_to_talk) {
656                         my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
657                         if ($call) {
658                                 my $ref = Route::get($call);
659                                 if ($ref) {
660                                         $dxchan = $ref->dxchan;
661                                         $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
662                                         return;
663                                 }
664                         }
665                 }
666         
667                 # send it
668                 $self->send_announce($line, @_[1..6]);
669         } else {
670                 $self->route($_[2], $line);
671         }
672 }
673                 
674 # incoming user         
675 sub handle_16
676 {
677         my $self = shift;
678         my $pcno = shift;
679         my $line = shift;
680         my $origin = shift;
681
682         # general checks
683         my $dxchan;
684         my $ncall = $_[1];
685         my $newline = "PC16^";
686                         
687         # dos I want users from this channel?
688         unless ($self->user->wantpc16) {
689                 dbg("PCPROT: don't send users to $origin") if isdbg('chanerr');
690                 return;
691         }
692         # is it me?
693         if ($ncall eq $main::mycall) {
694                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
695                 return;
696         }
697
698
699         RouteDB::update($ncall, $origin);
700
701         # do we believe this call? 
702         unless ($ncall eq $origin || $self->is_believed($ncall)) {
703                 if (my $ivp = Investigate::get($ncall, $origin)) {
704                         $ivp->store_pcxx($pcno,$line,$origin,@_);
705                 } else {
706                         dbg("PCPROT: We don't believe $ncall on $origin") if isdbg('chanerr');
707                 }
708                 return;
709         }
710
711         if (eph_dup($line)) {
712                 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
713                 return;
714         }
715
716         my $parent = Route::Node::get($ncall); 
717
718         # if there is a parent, proceed, otherwise if there is a latent PC19 in the PC19list, 
719         # fix it up in the routing tables and issue it forth before the PC16
720         if ($parent) {
721
722                 $dxchan = $parent->dxchan;
723                 if ($dxchan && $dxchan ne $self) {
724                         dbg("PCPROT: PC16 from $origin trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
725                         return;
726                 }
727
728                 
729                 my $i;
730                 my $rout;
731                 for ($i = 2; $i < $#_; $i++) {
732                         my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
733                         next unless $call && $conf && defined $here && is_callsign($call);
734                         next if $call eq $main::mycall;
735                         
736                         eph_del_regex("^PC17\\^$call\\^$ncall");
737                                 
738                         my $flags = $here ? 1 : 0;
739                         $rout .= "$flags$call:";
740                 }
741                 
742
743                 if ($rout) {
744                         chop $rout;
745                         my $thing = Thingy::Rt->new(origin=>$main::mycall, user=>$self->{call});
746                         $thing->from_DXProt(t=>'au', $ncall eq $self->{call} ? () : ('n', "1$ncall"), u=>$rout, DXProt=>$line);
747                         $thing->process($self);
748                 } else {
749                         dbg("PCPROT: No usable users") if isdbg('chanerr');
750                 }
751         } else {
752                 dbg("PCPROT: no PC19 seen for $ncall" ) if isdbg('chanerr');
753         }
754 }
755                 
756 # remove a user
757 sub handle_17
758 {
759         my $self = shift;
760         my $pcno = shift;
761         my $line = shift;
762         my $origin = shift;
763         my $dxchan;
764         my $ncall = $_[2];
765         my $ucall = $_[1];
766
767         eph_del_regex("^PC16\\^$ncall.*$ucall");
768                         
769         # do I want users from this channel?
770         unless ($self->user->wantpc16) {
771                 dbg("PCPROT: don't send users to $origin") if isdbg('chanerr');
772                 return;
773         }
774         if ($ncall eq $main::mycall) {
775                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
776                 return;
777         }
778
779         RouteDB::delete($ncall, $origin);
780
781         # do we believe this call? 
782         unless ($ncall eq $origin || $self->is_believed($ncall)) {
783                 if (my $ivp = Investigate::get($ncall, $origin)) {
784                         $ivp->store_pcxx($pcno,$line,$origin,@_);
785                 } else {
786                         dbg("PCPROT: We don't believe $ncall on $origin") if isdbg('chanerr');
787                 }
788                 return;
789         }
790
791         my $uref = Route::User::get($ucall);
792         unless ($uref) {
793                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
794         }
795         my $parent = Route::Node::get($ncall);
796         unless ($parent) {
797                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
798         }                       
799
800         $dxchan = $parent->dxchan if $parent;
801         if ($dxchan && $dxchan ne $self) {
802                 dbg("PCPROT: PC17 from $origin trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
803                 return;
804         }
805
806         if (eph_dup($line)) {
807                 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
808                 return;
809         }
810
811         $uref = Route->new($ucall) unless $uref; # throw away
812         my $thing = Thingy::Rt->new(origin=>$main::mycall, user=>$self->{call});
813         $thing->from_DXProt(t=>'du', $ncall eq $self->{call} ? () : ('n', "1$ncall"), u=>"1$ucall", DXProt=>$line);
814         $thing->process($self);
815 }
816                 
817 # link request
818 sub handle_18
819 {
820         my $self = shift;
821         my $pcno = shift;
822         my $line = shift;
823         my $origin = shift;
824         $self->state('init');   
825
826         # record the type and version offered
827         if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
828                 $self->version(52.51 + $1);
829                 $self->user->version(52.51 + $1);
830                 $self->build(0 + $2);
831                 $self->user->build(0 + $2);
832                 unless ($self->is_spider) {
833                         $self->user->sort('S');
834                         $self->user->put;
835                         $self->sort('S');
836                 }
837         } else {
838                 $self->version(50.0);
839                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
840                 $self->user->version($self->version);
841         }
842
843         # first clear out any nodes on this dxchannel
844         my $parent = Route::Node::get($origin);
845         my @rout = $parent->del_nodes;
846         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
847         $self->send_local_config();
848         $self->send(pc20());
849 }
850                 
851 # incoming cluster list
852 sub handle_19
853 {
854         my $self = shift;
855         my $pcno = shift;
856         my $line = shift;
857         my $origin = shift;
858
859         my $i;
860         my $newline = "PC19^";
861
862         # new routing list
863         my @rout;
864
865         # first get the INTERFACE node
866         my $parent = Route::Node::get($origin);
867         unless ($parent) {
868                 dbg("DXPROT: my parent $origin has disappeared");
869                 $self->disconnect;
870                 return;
871         }
872
873         # if the origin isn't the same as the INTERFACE, then reparent, creating nodes as necessary
874         if ($origin ne $self->call) {
875                 my $op = Route::Node::get($origin);
876                 unless ($op) {
877                         $op = $parent->add($origin, 5000, Route::here(1));
878                         my $user = DXUser->get_current($origin);
879                         if (!$user) {
880                                 $user = DXUser->new($origin);
881                                 $user->priv(1);         # I have relented and defaulted nodes
882                                 $user->lockout(1);
883                                 $user->homenode($origin);
884                                 $user->node($origin);
885                                 $user->wantroutepc19(1);
886                         }
887                         $user->sort('A') unless $user->is_node;
888                         $user->put;
889                 }
890                 $parent = $op;
891         }
892
893         # parse the PC19
894         for ($i = 1; $i < $#_-1; $i += 4) {
895                 my $here = $_[$i];
896                 my $call = uc $_[$i+1];
897                 my $conf = $_[$i+2];
898                 my $ver = $_[$i+3];
899                 next unless defined $here && defined $conf && is_callsign($call);
900
901                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
902                                 
903                 # check for sane parameters
904                 #                               $ver = 5000 if $ver eq '0000';
905                 next if $ver < 5000;    # only works with version 5 software
906                 next if length $call < 3; # min 3 letter callsigns
907                 next if $call eq $main::mycall;
908
909                 # check that this PC19 isn't trying to alter the wrong dxchan
910                 my $dxchan = DXChannel->get($call);
911                 if ($dxchan && $dxchan != $self) {
912                         dbg("PCPROT: PC19 from $origin trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
913                         next;
914                 }
915
916                 # add this station to the user database, if required (don't remove SSID from nodes)
917                 my $user = DXUser->get_current($call);
918                 if (!$user) {
919                         $user = DXUser->new($call);
920                         $user->priv(1);         # I have relented and defaulted nodes
921                         $user->lockout(1);
922                         $user->homenode($call);
923                         $user->node($call);
924                 }
925                 $user->sort('A') unless $user->is_node;
926
927                 RouteDB::update($call, $origin);
928
929                 # do we believe this call?
930                 my $genline = "PC19^$here^$call^$conf^$ver^$_[-1]^"; 
931                 unless ($call eq $origin || $self->is_believed($call)) {
932                         my $pt = $user->lastping($origin) || 0;
933                         if ($pt+$investigation_int < $main::systime && !Investigate::get($call, $origin)) {
934                                 my $ivp  = Investigate->new($call, $origin);
935                                 $ivp->version($ver);
936                                 $ivp->here($here);
937                                 $ivp->store_pcxx($pcno,$genline,$origin,'PC19',$here,$call,$conf,$ver,$_[-1]);
938                         } else {
939                                 dbg("PCPROT: We don't believe $call on $origin") if isdbg('chanerr');
940                         }
941                         $user->put;
942                         next;
943                 }
944
945                 if (eph_dup($genline)) {
946                         dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
947                         next;
948                 }
949
950                 my $r = Route::Node::get($call);
951                 my $flags = Route::here($here)|Route::conf($conf);
952
953                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
954                 if ($r) {
955                         my $ar;
956                         if ($call ne $parent->call) {
957                                 if ($self->in_filter_route($r)) {
958                                         $ar = $parent->add($call, $ver, $flags);
959                                         push @rout, $ar if $ar;
960                                 } else {
961                                         next;
962                                 }
963                         }
964                         if ($r->version ne $ver || $r->flags != $flags) {
965                                 $r->version($ver);
966                                 $r->flags($flags);
967                                 push @rout, $r unless $ar;
968                         }
969                 } else {
970
971                         # if he is directly connected or allowed then add him, otherwise store him up for later
972                         if ($call eq $origin || $user->wantroutepc19) {
973                                 my $new = Route->new($call); # throw away
974                                 if ($self->in_filter_route($new)) {
975                                         my $ar = $parent->add($call, $ver, $flags);
976                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
977                                         push @rout, $ar if $ar;
978                                 } else {
979                                         next;
980                                 }
981                         } else {
982                                 $pc19list{$call} = [] unless exists $pc19list{$call};
983                                 my $nl = $pc19list{$call};
984                                 push @{$pc19list{$call}}, [$origin, $ver, $flags] unless grep $_->[0] eq $origin, @$nl;
985                         }
986                 }
987
988                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
989                 my $mref = DXMsg::get_busy($call);
990                 $mref->stop_msg($call) if $mref;
991                                 
992                 $user->lastin($main::systime) unless DXChannel->get($call);
993                 $user->put;
994         }
995
996
997         $self->route_pc19($origin, $line, @rout) if @rout;
998 }
999                 
1000 # send local configuration
1001 sub handle_20
1002 {
1003         my $self = shift;
1004         my $pcno = shift;
1005         my $line = shift;
1006         my $origin = shift;
1007         $self->send_local_config();
1008         $self->send(pc22());
1009         $self->state('normal');
1010         $self->{lastping} = 0;
1011 }
1012                 
1013 # delete a cluster from the list
1014 sub handle_21
1015 {
1016         my $self = shift;
1017         my $pcno = shift;
1018         my $line = shift;
1019         my $origin = shift;
1020         my $call = uc $_[1];
1021
1022         eph_del_regex("^PC1[679].*$call");
1023                         
1024         # if I get a PC21 from the same callsign as self then treat it
1025         # as a PC39: I have gone away
1026         if ($call eq $self->call) {
1027                 $self->disconnect(1);
1028                 return;
1029         }
1030
1031         RouteDB::delete($call, $origin);
1032
1033         # check if we believe this
1034         unless ($call eq $origin || $self->is_believed($call)) {
1035                 if (my $ivp = Investigate::get($call, $origin)) {
1036                         $ivp->store_pcxx($pcno,$line,$origin,@_);
1037                 } else {
1038                         dbg("PCPROT: We don't believe $call on $origin") if isdbg('chanerr');
1039                 }
1040                 return;
1041         }
1042
1043         # check to see if we are in the pc19list, if we are then don't bother with any of
1044         # this routing table manipulation, just remove it from the list and dump it
1045         my @rout;
1046         if (my $nl = $pc19list{$call}) {
1047                 $pc19list{$call} = [ grep {$_->[0] ne $origin} @$nl ];
1048                 delete $pc19list{$call} unless @{$pc19list{$call}};
1049         } else {
1050                                 
1051                 my $parent = Route::Node::get($origin);
1052                 unless ($parent) {
1053                         dbg("DXPROT: my parent $origin has disappeared");
1054                         $self->disconnect;
1055                         return;
1056                 }
1057                 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1058                         my $node = Route::Node::get($call);
1059                         if ($node) {
1060                                                 
1061                                 my $dxchan = DXChannel->get($call);
1062                                 if ($dxchan && $dxchan != $self) {
1063                                         dbg("PCPROT: PC21 from $origin trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1064                                         return;
1065                                 }
1066                                                 
1067                                 # input filter it
1068                                 return unless $self->in_filter_route($node);
1069                                                 
1070                                 # routing objects
1071                                 push @rout, $node->del($parent);
1072                         }
1073                 } else {
1074                         dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1075                         return;
1076                 }
1077         }
1078
1079         $self->route_pc21($origin, $line, @rout) if @rout;
1080 }
1081                 
1082
1083 sub handle_22
1084 {
1085         my $self = shift;
1086         my $pcno = shift;
1087         my $line = shift;
1088         my $origin = shift;
1089         $self->state('normal');
1090         $self->{lastping} = 0;
1091 }
1092                                 
1093 # WWV info
1094 sub handle_23
1095 {
1096         my $self = shift;
1097         my $pcno = shift;
1098         my $line = shift;
1099         my $origin = shift;
1100                         
1101         # route foreign' pc27s 
1102         if ($pcno == 27) {
1103                 if ($_[8] ne $main::mycall) {
1104                         $self->route($_[8], $line);
1105                         return;
1106                 }
1107         }
1108
1109         # only do a rspf check on PC23 (not 27)
1110         if ($pcno == 23) {
1111                 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
1112         }
1113
1114         # do some de-duping
1115         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1116         my $sfi = unpad($_[3]);
1117         my $k = unpad($_[4]);
1118         my $i = unpad($_[5]);
1119         my ($r) = $_[6] =~ /R=(\d+)/;
1120         $r = 0 unless $r;
1121         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1122                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1123                 return;
1124         }
1125         if (Geomag::dup($d,$sfi,$k,$i,$_[6])) {
1126                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1127                 return;
1128         }
1129         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
1130                 
1131         my $wwv = Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1132
1133         my $rep;
1134         eval {
1135                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1136         };
1137         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1138         return if $rep;
1139
1140         # DON'T be silly and send on PC27s!
1141         return if $pcno == 27;
1142
1143         # broadcast to the eager world
1144         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1145 }
1146                 
1147 # set here status
1148 sub handle_24
1149 {
1150         my $self = shift;
1151         my $pcno = shift;
1152         my $line = shift;
1153         my $origin = shift;
1154         my $call = uc $_[1];
1155         my ($nref, $uref);
1156         $nref = Route::Node::get($call);
1157         $uref = Route::User::get($call);
1158         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1159                         
1160         if (eph_dup($line)) {
1161                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1162                 return;
1163         }
1164         
1165         $nref->here($_[2]) if $nref;
1166         $uref->here($_[2]) if $uref;
1167         my $ref = $nref || $uref;
1168         return unless $self->in_filter_route($ref);
1169
1170         $self->route_pc24($origin, $line, $ref, $_[3]);
1171 }
1172                 
1173 # merge request
1174 sub handle_25
1175 {
1176         my $self = shift;
1177         my $pcno = shift;
1178         my $line = shift;
1179         my $origin = shift;
1180         if ($_[1] ne $main::mycall) {
1181                 $self->route($_[1], $line);
1182                 return;
1183         }
1184         if ($_[2] eq $main::mycall) {
1185                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1186                 return;
1187         }
1188
1189         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1190                         
1191         # spots
1192         if ($_[3] > 0) {
1193                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1194                 my $in;
1195                 foreach $in (@in) {
1196                         $self->send(pc26(@{$in}[0..4], $_[2]));
1197                 }
1198         }
1199
1200         # wwv
1201         if ($_[4] > 0) {
1202                 my @in = reverse Geomag::search(0, $_[4], time, 1);
1203                 my $in;
1204                 foreach $in (@in) {
1205                         $self->send(pc27(@{$in}[0..5], $_[2]));
1206                 }
1207         }
1208 }
1209
1210 sub handle_26 {goto &handle_11}
1211 sub handle_27 {goto &handle_23}
1212
1213 # mail/file handling
1214 sub handle_28
1215 {
1216         my $self = shift;
1217         my $pcno = shift;
1218         my $line = shift;
1219         my $origin = shift;
1220         if ($_[1] eq $main::mycall) {
1221                 no strict 'refs';
1222                 my $sub = "DXMsg::handle_$pcno";
1223                 &$sub($self, @_);
1224         } else {
1225                 $self->route($_[1], $line) unless $self->is_clx;
1226         }
1227 }
1228
1229 sub handle_29 {goto &handle_28}
1230 sub handle_30 {goto &handle_28}
1231 sub handle_31 {goto &handle_28}
1232 sub handle_32 {goto &handle_28}
1233 sub handle_33 {goto &handle_28}
1234                 
1235 sub handle_34
1236 {
1237         my $self = shift;
1238         my $pcno = shift;
1239         my $line = shift;
1240         my $origin = shift;
1241         if (eph_dup($line, $eph_pc34_restime)) {
1242                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1243         } else {
1244                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1245         }
1246 }
1247                 
1248 # remote command replies
1249 sub handle_35
1250 {
1251         my $self = shift;
1252         my $pcno = shift;
1253         my $line = shift;
1254         my $origin = shift;
1255         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1256         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1257 }
1258                 
1259 sub handle_36 {goto &handle_34}
1260
1261 # database stuff
1262 sub handle_37
1263 {
1264         my $self = shift;
1265         my $pcno = shift;
1266         my $line = shift;
1267         my $origin = shift;
1268         if ($_[1] eq $main::mycall) {
1269                 no strict 'refs';
1270                 my $sub = "DXDb::handle_$pcno";
1271                 &$sub($self, @_);
1272         } else {
1273                 $self->route($_[1], $line) unless $self->is_clx;
1274         }
1275 }
1276
1277 # node connected list from neighbour
1278 sub handle_38
1279 {
1280         my $self = shift;
1281         my $pcno = shift;
1282         my $line = shift;
1283         my $origin = shift;
1284 }
1285                 
1286 # incoming disconnect
1287 sub handle_39
1288 {
1289         my $self = shift;
1290         my $pcno = shift;
1291         my $line = shift;
1292         my $origin = shift;
1293         if ($_[1] eq $origin) {
1294                 $self->disconnect(1);
1295         } else {
1296                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1297         }
1298 }
1299
1300 sub handle_40 {goto &handle_28}
1301                 
1302 # user info
1303 sub handle_41
1304 {
1305         my $self = shift;
1306         my $pcno = shift;
1307         my $line = shift;
1308         my $origin = shift;
1309         my $call = $_[1];
1310
1311         my $l = $line;
1312         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1313         if (eph_dup($l, $eph_info_restime)) {
1314                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1315                 return;
1316         }
1317                         
1318         # input filter if required
1319         #                       my $ref = Route::get($call) || Route->new($call);
1320         #                       return unless $self->in_filter_route($ref);
1321
1322         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1323                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1324                 return;
1325         }
1326
1327         # add this station to the user database, if required
1328         my $user = DXUser->get_current($call);
1329         $user = DXUser->new($call) unless $user;
1330                         
1331         if ($_[2] == 1) {
1332                 $user->name($_[3]);
1333         } elsif ($_[2] == 2) {
1334                 $user->qth($_[3]);
1335         } elsif ($_[2] == 3) {
1336                 if (is_latlong($_[3])) {
1337                         my ($lat, $long) = DXBearing::stoll($_[3]);
1338                         $user->lat($lat);
1339                         $user->long($long);
1340                         $user->qra(DXBearing::lltoqra($lat, $long));
1341                 } else {
1342                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1343                         return;
1344                 }
1345         } elsif ($_[2] == 4) {
1346                 $user->homenode($_[3]);
1347         } elsif ($_[2] == 5) {
1348                 if (is_qra(uc $_[3])) {
1349                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1350                         $user->lat($lat);
1351                         $user->long($long);
1352                         $user->qra(uc $_[3]);
1353                 } else {
1354                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1355                         return;
1356                 }
1357         }
1358         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1359         $user->put;
1360
1361         unless ($self->{isolate}) {
1362                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1363         }
1364
1365         #  perhaps this IS what we want after all
1366         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1367 }
1368
1369 sub handle_42 {goto &handle_28}
1370
1371
1372 # database
1373 sub handle_44 {goto &handle_37}
1374 sub handle_45 {goto &handle_37}
1375 sub handle_46 {goto &handle_37}
1376 sub handle_47 {goto &handle_37}
1377 sub handle_48 {goto &handle_37}
1378                 
1379 # message and database
1380 sub handle_49
1381 {
1382         my $self = shift;
1383         my $pcno = shift;
1384         my $line = shift;
1385         my $origin = shift;
1386
1387         if (eph_dup($line)) {
1388                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1389                 return;
1390         }
1391         
1392         if ($_[1] eq $main::mycall) {
1393                 DXMsg::handle_49($self, @_);
1394         } else {
1395                 $self->route($_[1], $line) unless $self->is_clx;
1396         }
1397 }
1398
1399 # keep alive/user list
1400 sub handle_50
1401 {
1402         my $self = shift;
1403         my $pcno = shift;
1404         my $line = shift;
1405         my $origin = shift;
1406
1407         my $call = $_[1];
1408
1409         RouteDB::update($call, $origin);
1410
1411         my $node = Route::Node::get($call);
1412         if ($node) {
1413                 return unless $node->call eq $origin;
1414                 $node->usercount($_[2]);
1415
1416                 # input filter if required
1417                 return unless $self->in_filter_route($node);
1418
1419                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1420         }
1421 }
1422                 
1423 # incoming ping requests/answers
1424 sub handle_51
1425 {
1426         my $self = shift;
1427         my $pcno = shift;
1428         my $line = shift;
1429         my $origin = shift;
1430         my $to = $_[1];
1431         my $from = $_[2];
1432         my $flag = $_[3];
1433
1434                         
1435         # is it for us?
1436         if ($to eq $main::mycall) {
1437                 if ($flag == 1) {
1438                         $self->send(pc51($from, $to, '0'));
1439                 } else {
1440                         # it's a reply, look in the ping list for this one
1441                         my $ref = $pings{$from};
1442                         if ($ref) {
1443                                 my $tochan =  DXChannel->get($from);
1444                                 while (@$ref) {
1445                                         my $r = shift @$ref;
1446                                         my $dxchan = DXChannel->get($r->{call});
1447                                         next unless $dxchan;
1448                                         my $t = tv_interval($r->{t}, [ gettimeofday ]);
1449                                         if ($dxchan->is_user) {
1450                                                 my $s = sprintf "%.2f", $t; 
1451                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
1452                                                 $dxchan->send($dxchan->msg('pingi', $from, $s, $ave))
1453                                         } elsif ($dxchan->is_node) {
1454                                                 if ($tochan) {
1455                                                         my $nopings = $tochan->user->nopings || $obscount;
1456                                                         push @{$tochan->{pingtime}}, $t;
1457                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
1458                                                         
1459                                                         # cope with a missed ping, this means you must set the pingint large enough
1460                                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
1461                                                                 $t -= $tochan->{pingint};
1462                                                         }
1463                                                         
1464                                                         # calc smoothed RTT a la TCP
1465                                                         if (@{$tochan->{pingtime}} == 1) {
1466                                                                 $tochan->{pingave} = $t;
1467                                                         } else {
1468                                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
1469                                                         }
1470                                                         $tochan->{nopings} = $nopings; # pump up the timer
1471                                                         if (my $ivp = Investigate::get($from, $origin)) {
1472                                                                 $ivp->handle_ping;
1473                                                         }
1474                                                 } elsif (my $rref = Route::Node::get($r->{call})) {
1475                                                         if (my $ivp = Investigate::get($from, $origin)) {
1476                                                                 $ivp->handle_ping;
1477                                                         }
1478                                                 }
1479                                         }
1480                                 }
1481                         }
1482                 }
1483         } else {
1484
1485                 RouteDB::update($from, $origin);
1486
1487                 if (eph_dup($line)) {
1488                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1489                         return;
1490                 }
1491                 # route down an appropriate thingy
1492                 $self->route($to, $line);
1493         }
1494 }
1495
1496 # dunno but route it
1497 sub handle_75
1498 {
1499         my $self = shift;
1500         my $pcno = shift;
1501         my $line = shift;
1502         my $origin = shift;
1503         my $call = $_[1];
1504         if ($call ne $main::mycall) {
1505                 $self->route($call, $line);
1506         }
1507 }
1508
1509 # WCY broadcasts
1510 sub handle_73
1511 {
1512         my $self = shift;
1513         my $pcno = shift;
1514         my $line = shift;
1515         my $origin = shift;
1516         my $call = $_[1];
1517                         
1518         # do some de-duping
1519         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1520         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1521                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1522                 return;
1523         }
1524         @_ = map { unpad($_) } @_;
1525         if (WCY::dup($d)) {
1526                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1527                 return;
1528         }
1529                 
1530         my $wcy = WCY::update($d, @_[2..12]);
1531
1532         my $rep;
1533         eval {
1534                 $rep = Local::wcy($self, @_[1..12]);
1535         };
1536         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1537         return if $rep;
1538
1539         # broadcast to the eager world
1540         send_wcy_spot($self, $line, $d, @_[2..12]);
1541 }
1542
1543 # remote commands (incoming)
1544 sub handle_84
1545 {
1546         my $self = shift;
1547         my $pcno = shift;
1548         my $line = shift;
1549         my $origin = shift;
1550         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1551 }
1552
1553 # remote command replies
1554 sub handle_85
1555 {
1556         my $self = shift;
1557         my $pcno = shift;
1558         my $line = shift;
1559         my $origin = shift;
1560         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1561 }
1562
1563 # if get here then rebroadcast the thing with its Hop count decremented (if
1564 # there is one). If it has a hop count and it decrements to zero then don't
1565 # rebroadcast it.
1566 #
1567 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1568 #        REBROADCAST!!!!
1569 #
1570
1571 sub handle_default
1572 {
1573         my $self = shift;
1574         my $pcno = shift;
1575         my $line = shift;
1576         my $origin = shift;
1577
1578         if (eph_dup($line)) {
1579                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1580         } else {
1581                 unless ($self->{isolate}) {
1582                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1583                 }
1584         }
1585 }
1586
1587 #
1588 # This is called from inside the main cluster processing loop and is used
1589 # for despatching commands that are doing some long processing job
1590 #
1591 sub process
1592 {
1593         my $t = time;
1594         my @dxchan = DXChannel->get_all();
1595         my $dxchan;
1596         my $pc50s;
1597         
1598         # send out a pc50 on EVERY channel all at once
1599         if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1600                 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1601                 eph_dup($pc50s);
1602                 $last_pc50 = $t;
1603         }
1604
1605         foreach $dxchan (@dxchan) {
1606                 next unless $dxchan->is_node();
1607                 next if $dxchan == $main::me;
1608
1609                 # send the pc50
1610                 $dxchan->send($pc50s) if $pc50s;
1611                 
1612                 # send a ping out on this channel
1613                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1614                         if ($dxchan->{nopings} <= 0) {
1615                                 $dxchan->disconnect;
1616                         } else {
1617                                 addping($main::mycall, $dxchan->call);
1618                                 $dxchan->{nopings} -= 1;
1619                                 $dxchan->{lastping} = $t;
1620                         }
1621                 }
1622         }
1623
1624         Investigate::process();
1625
1626         # every ten seconds
1627         if ($t - $last10 >= 10) {       
1628                 # clean out ephemera 
1629
1630                 eph_clean();
1631                 import_chat();
1632                 
1633
1634                 $last10 = $t;
1635         }
1636         
1637         if ($main::systime - 3600 > $last_hour) {
1638                 $last_hour = $main::systime;
1639         }
1640 }
1641
1642 #
1643 # finish up a pc context
1644 #
1645
1646 #
1647 # some active measures
1648 #
1649
1650
1651 sub send_prot_line
1652 {
1653         my ($self, $filter, $hops, $isolate, $line) = @_;
1654         my $routeit;
1655
1656
1657         if ($hops) {
1658                 $routeit = $line;
1659                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1660         } else {
1661                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
1662                 return unless $routeit;
1663         }
1664         if ($filter) {
1665                 $self->send($routeit);
1666         } else {
1667                 $self->send($routeit) unless $self->{isolate} || $isolate;
1668         }
1669 }
1670
1671
1672 sub send_wwv_spot
1673 {
1674         my $self = shift;
1675         my $line = shift;
1676         my @dxchan = DXChannel->get_all();
1677         my $dxchan;
1678         my @dxcc = ((Prefix::cty_data($_[6]))[0..2], (Prefix::cty_data($_[7]))[0..2]);
1679
1680         # send it if it isn't the except list and isn't isolated and still has a hop count
1681         # taking into account filtering and so on
1682         foreach $dxchan (@dxchan) {
1683                 next if $dxchan == $main::me;
1684                 next if $dxchan == $self && $self->is_node;
1685                 my $routeit;
1686                 my ($filter, $hops);
1687
1688                 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1689         }
1690 }
1691
1692 sub wwv
1693 {
1694         my $self = shift;
1695         my $line = shift;
1696         my $isolate = shift;
1697         my ($filter, $hops);
1698         
1699         if ($self->{wwvfilter}) {
1700                 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1701                 return unless $filter;
1702         }
1703         send_prot_line($self, $filter, $hops, $isolate, $line)
1704 }
1705
1706 sub send_wcy_spot
1707 {
1708         my $self = shift;
1709         my $line = shift;
1710         my @dxchan = DXChannel->get_all();
1711         my $dxchan;
1712         my @dxcc = ((Prefix::cty_data($_[10]))[0..2], (Prefix::cty_data($_[11]))[0..2]);
1713         
1714         # send it if it isn't the except list and isn't isolated and still has a hop count
1715         # taking into account filtering and so on
1716         foreach $dxchan (@dxchan) {
1717                 next if $dxchan == $main::me;
1718                 next if $dxchan == $self;
1719
1720                 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1721         }
1722 }
1723
1724 sub wcy
1725 {
1726         my $self = shift;
1727         my $line = shift;
1728         my $isolate = shift;
1729         my ($filter, $hops);
1730
1731         if ($self->{wcyfilter}) {
1732                 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1733                 return unless $filter;
1734         }
1735         send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1736 }
1737
1738 # send an announce
1739 sub send_announce
1740 {
1741         my $self = shift;
1742         my $line = shift;
1743         my @dxchan = DXChannel->get_all();
1744         my $dxchan;
1745         my $target;
1746         my $to = 'To ';
1747         my $text = unpad($_[2]);
1748                                 
1749         if ($_[3] eq '*') {     # sysops
1750                 $target = "SYSOP";
1751         } elsif ($_[3] gt ' ') { # speciality list handling
1752                 my ($name) = split /\./, $_[3]; 
1753                 $target = "$name"; # put the rest in later (if bothered) 
1754         } 
1755         
1756         if ($_[5] eq '1') {
1757                 $target = "WX"; 
1758                 $to = '';
1759         }
1760         $target = "ALL" if !$target;
1761
1762
1763         # obtain country codes etc 
1764         my @a = Prefix::cty_data($_[0]);
1765         my @b = Prefix::cty_data($_[4]);
1766         if ($self->{inannfilter}) {
1767                 my ($filter, $hops) = 
1768                         $self->{inannfilter}->it(@_, $self->{call}, 
1769                                                                          @a[0..2],
1770                                                                          @b[0..2], $a[3], $b[3]);
1771                 unless ($filter) {
1772                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1773                         return;
1774                 }
1775         }
1776
1777         if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1778                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1779                 return;
1780         }
1781
1782         Log('ann', $target, $_[0], $text);
1783
1784         # send it if it isn't the except list and isn't isolated and still has a hop count
1785         # taking into account filtering and so on
1786         foreach $dxchan (@dxchan) {
1787                 next if $dxchan == $main::me;
1788                 next if $dxchan == $self && $self->is_node;
1789                 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call},
1790                                                   @a[0..2], @b[0..2]);
1791         }
1792 }
1793
1794 my $msgid = 0;
1795
1796 sub nextchatmsgid
1797 {
1798         $msgid++;
1799         $msgid = 1 if $msgid > 999;
1800         return $msgid;
1801 }
1802
1803 # send a chat line
1804 sub send_chat
1805 {
1806         my $self = shift;
1807         my $line = shift;
1808         my @dxchan = DXChannel->get_all();
1809         my $dxchan;
1810         my $target = $_[3];
1811         my $text = unpad($_[2]);
1812         my $ak1a_line;
1813                                 
1814         # munge the group and recast the line if required
1815         if ($target =~ s/\.LST$//) {
1816                 $ak1a_line = $line;
1817         }
1818         
1819         # obtain country codes etc 
1820         my @a = Prefix::cty_data($_[0]);
1821         my @b = Prefix::cty_data($_[4]);
1822         if ($self->{inannfilter}) {
1823                 my ($filter, $hops) = 
1824                         $self->{inannfilter}->it(@_, $self->{call}, 
1825                                                                          @a[0..2],
1826                                                                          @b[0..2], $a[3], $b[3]);
1827                 unless ($filter) {
1828                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1829                         return;
1830                 }
1831         }
1832
1833         if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
1834                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1835                 return;
1836         }
1837
1838
1839         Log('chat', $target, $_[0], $text);
1840
1841         # send it if it isn't the except list and isn't isolated and still has a hop count
1842         # taking into account filtering and so on
1843         foreach $dxchan (@dxchan) {
1844                 my $is_ak1a = $dxchan->is_ak1a;
1845                 
1846                 if ($dxchan->is_node) {
1847                         next if $dxchan == $main::me;
1848                         next if $dxchan == $self;
1849                         next unless $dxchan->is_spider || $is_ak1a;
1850                         next if $target eq 'LOCAL';
1851                         if (!$ak1a_line && $is_ak1a) {
1852                                 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
1853                         }
1854                 }
1855                 
1856                 $dxchan->chat($is_ak1a ? $ak1a_line : $line, $self->{isolate}, $target, $_[1], 
1857                                           $text, @_, $self->{call}, @a[0..2], @b[0..2]);
1858         }
1859 }
1860
1861 sub announce
1862 {
1863         my $self = shift;
1864         my $line = shift;
1865         my $isolate = shift;
1866         my $to = shift;
1867         my $target = shift;
1868         my $text = shift;
1869         my ($filter, $hops);
1870
1871         if ($self->{annfilter}) {
1872                 ($filter, $hops) = $self->{annfilter}->it(@_);
1873                 return unless $filter;
1874         }
1875         send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
1876 }
1877
1878 sub chat
1879 {
1880         goto &announce;
1881 }
1882
1883
1884 sub send_local_config
1885 {
1886         my $self = shift;
1887         my $node;
1888         my @nodes;
1889         my @localnodes;
1890         my @remotenodes;
1891
1892         dbg('DXProt::send_local_config') if isdbg('trace');
1893         
1894         # send our nodes
1895         if ($self->{isolate}) {
1896                 @localnodes = ( $main::routeroot );
1897                 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
1898         } else {
1899                 # create a list of all the nodes that are not connected to this connection
1900                 # and are not themselves isolated, this to make sure that isolated nodes
1901         # don't appear outside of this node
1902
1903                 # send locally connected nodes
1904                 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
1905                 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
1906                 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
1907
1908                 my $node;
1909                 my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
1910                 my @intcalls;
1911                 for $node (@rawintcalls) {
1912                         push @intcalls, $node unless grep $node eq $_, @intcalls; 
1913                 }
1914                 my $ref = Route::Node::get($self->{call});
1915                 my @rnodes = $ref->nodes;
1916                 for $node (@intcalls) {
1917                         push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
1918                 }
1919                 $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
1920         }
1921         
1922         # get all the users connected on the above nodes and send them out
1923         foreach $node ($main::routeroot, @localnodes, @remotenodes) {
1924                 if ($node) {
1925                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
1926                         $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
1927                 } else {
1928                         dbg("sent a null value") if isdbg('chanerr');
1929                 }
1930         }
1931 }
1932
1933 #
1934 # route a message down an appropriate interface for a callsign
1935 #
1936 # is called route(to, pcline);
1937 #
1938
1939 sub route
1940 {
1941         my ($self, $call, $line) = @_;
1942
1943         if (ref $self && $call eq $self->{call}) {
1944                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1945                 return;
1946         }
1947
1948         # always send it down the local interface if available
1949         my $dxchan = DXChannel->get($call);
1950         if ($dxchan) {
1951                 dbg("route: $call -> $dxchan->{call} direct" ) if isdbg('route');
1952         } else {
1953                 my $cl = Route::get($call);
1954                 $dxchan = $cl->dxchan if $cl;
1955                 if (ref $dxchan) {
1956                         if (ref $self && $dxchan eq $self) {
1957                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1958                                 return;
1959                         }
1960                         dbg("route: $call -> $dxchan->{call} using normal route" ) if isdbg('route');
1961                 }
1962         }
1963
1964         # try the backstop method
1965         unless ($dxchan) {
1966                 my $rcall = RouteDB::get($call);
1967                 if ($rcall) {
1968                         if ($self && $rcall eq $self->{call}) {
1969                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1970                                 return;
1971                         }
1972                         $dxchan = DXChannel->get($rcall);
1973                         dbg("route: $call -> $rcall using RouteDB" ) if isdbg('route') && $dxchan;
1974                 }
1975         }
1976
1977         if ($dxchan) {
1978                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
1979                 if ($routeit) {
1980                         $dxchan->send($routeit) unless $dxchan == $main::me;
1981                 }
1982         } else {
1983                 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
1984         }
1985 }
1986
1987 #
1988 # obtain the hops from the list for this callsign and pc no 
1989 #
1990
1991 sub get_hops
1992 {
1993         my $pcno = shift;
1994         my $hops = $DXProt::hopcount{$pcno};
1995         $hops = $DXProt::def_hopcount if !$hops;
1996         return "H$hops";       
1997 }
1998
1999
2000 # adjust the hop count on a per node basis using the user loadable 
2001 # hop table if available or else decrement an existing one
2002 #
2003
2004 sub adjust_hops
2005 {
2006         my $self = shift;
2007         my $s = shift;
2008         my $call = $self->{call};
2009         my $hops;
2010         
2011         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2012                 my ($pcno) = $s =~ /^PC(\d\d)/o;
2013                 confess "$call called adjust_hops with '$s'" unless $pcno;
2014                 my $ref = $nodehops{$call} if %nodehops;
2015                 if ($ref) {
2016                         my $newhops = $ref->{$pcno};
2017                         return "" if defined $newhops && $newhops == 0;
2018                         $newhops = $ref->{default} unless $newhops;
2019                         return "" if defined $newhops && $newhops == 0;
2020                         $newhops = $hops if !$newhops;
2021                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2022                 } else {
2023                         # simply decrement it
2024 #                       $hops--;               this is done on receipt now
2025                         return "" if !$hops;
2026                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2027                 }
2028         }
2029         return $s;
2030 }
2031
2032
2033 # load hop tables
2034 #
2035 sub load_hops
2036 {
2037         my $self = shift;
2038         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2039         do "$main::data/hop_table.pl";
2040         return $@ if $@;
2041         return ();
2042 }
2043
2044
2045 # add a ping request to the ping queues
2046 sub addping
2047 {
2048         my ($from, $to, $via) = @_;
2049         my $ref = $pings{$to} || [];
2050         my $r = {};
2051         $r->{call} = $from;
2052         $r->{t} = [ gettimeofday ];
2053         if ($via && (my $dxchan = DXChannel->get($via))) {
2054                 $dxchan->send(pc51($to, $main::mycall, 1));
2055         } else {
2056                 route(undef, $to, pc51($to, $main::mycall, 1));
2057         }
2058         push @$ref, $r;
2059         $pings{$to} = $ref;
2060         my $u = DXUser->get_current($to);
2061         if ($u) {
2062                 $u->lastping(($via || $from), $main::systime);
2063                 $u->put;
2064         }
2065 }
2066
2067 sub process_rcmd
2068 {
2069         my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2070         if ($tonode eq $main::mycall) {
2071                 my $ref = DXUser->get_current($fromnode);
2072                 my $cref = Route::Node::get($fromnode);
2073                 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2074                 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2075                         if ($ref->{priv}) {             # you have to have SOME privilege, the commands have further filtering
2076                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2077                                 my $oldpriv = $self->{priv};
2078                                 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2079                                 my @in = (DXCommandmode::run_cmd($self, $cmd));
2080                                 $self->{priv} = $oldpriv;
2081                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2082                                 delete $self->{remotecmd};
2083                         } else {
2084                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2085                         }
2086                 } else {
2087                         $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2088                 }
2089         } else {
2090                 my $ref = DXUser->get_current($tonode);
2091                 if ($ref && $ref->is_clx) {
2092                         $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2093                 } else {
2094                         $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2095                 }
2096         }
2097 }
2098
2099 sub process_rcmd_reply
2100 {
2101         my ($self, $tonode, $fromnode, $user, $line) = @_;
2102         if ($tonode eq $main::mycall) {
2103                 my $s = $rcmds{$fromnode};
2104                 if ($s) {
2105                         my $dxchan = DXChannel->get($s->{call});
2106                         my $ref = $user eq $tonode ? $dxchan : (DXChannel->get($user) || $dxchan);
2107                         $ref->send($line) if $ref;
2108                         delete $rcmds{$fromnode} if !$dxchan;
2109                 } else {
2110                         # send unsolicited ones to the sysop
2111                         my $dxchan = DXChannel->get($main::myalias);
2112                         $dxchan->send($line) if $dxchan;
2113                 }
2114         } else {
2115                 my $ref = DXUser->get_current($tonode);
2116                 if ($ref && $ref->is_clx) {
2117                         $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2118                 } else {
2119                         $self->route($tonode, pc35($fromnode, $tonode, $line));
2120                 }
2121         }
2122 }
2123
2124 sub send_rcmd_reply
2125 {
2126         my $self = shift;
2127         my $tonode = shift;
2128         my $fromnode = shift;
2129         my $user = shift;
2130         while (@_) {
2131                 my $line = shift;
2132                 $line =~ s/\s*$//;
2133                 Log('rcmd', 'out', $fromnode, $line);
2134                 if ($self->is_clx) {
2135                         $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2136                 } else {
2137                         $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2138                 }
2139         }
2140 }
2141
2142 # add a rcmd request to the rcmd queues
2143 sub addrcmd
2144 {
2145         my ($self, $to, $cmd) = @_;
2146
2147         my $r = {};
2148         $r->{call} = $self->{call};
2149         $r->{t} = $main::systime;
2150         $r->{cmd} = $cmd;
2151         $rcmds{$to} = $r;
2152         
2153         my $ref = Route::Node::get($to);
2154         my $dxchan = $ref->dxchan;
2155         if ($dxchan && $dxchan->is_clx) {
2156                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2157         } else {
2158                 route(undef, $to, pc34($main::mycall, $to, $cmd));
2159         }
2160 }
2161
2162 sub disconnect
2163 {
2164         my $self = shift;
2165         my $pc39flag = shift;
2166         my $call = $self->call;
2167
2168         return if $self->{disconnecting}++;
2169         
2170         unless ($pc39flag && $pc39flag == 1) {
2171                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2172         }
2173
2174         # get rid of any PC16/17/19
2175         eph_del_regex("^PC1[679]*$call");
2176
2177         # do routing stuff, remove me from routing table
2178         my $node = Route::Node::get($call);
2179         my @rout;
2180         if ($node) {
2181                 @rout = $node->del($main::routeroot);
2182                 
2183                 # and all my ephemera as well
2184                 for (@rout) {
2185                         my $c = $_->call;
2186                         eph_del_regex("^PC1[679].*$c");
2187                 }
2188         }
2189
2190         RouteDB::delete_interface($call);
2191         
2192         # remove them from the pc19list as well
2193         while (my ($k,$v) = each %pc19list) {
2194                 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2195                 if (@l) {
2196                         $pc19list{$k} = \@l;
2197                 } else {
2198                         delete $pc19list{$k};
2199                 }
2200                 
2201                 # and the ephemera
2202                 eph_del_regex("^PC1[679].*$k");
2203         }
2204
2205         # unbusy and stop and outgoing mail
2206         my $mref = DXMsg::get_busy($call);
2207         $mref->stop_msg($call) if $mref;
2208         
2209         # broadcast to all other nodes that all the nodes connected to via me are gone
2210         unless ($pc39flag && $pc39flag == 2) {
2211                 my $thing = Thingy::Bye->new(user=>$call);
2212                 $thing->broadcast($self);
2213
2214                 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2215         }
2216
2217         # remove outstanding pings
2218         delete $pings{$call};
2219         
2220         # I was the last node visited
2221     $self->user->node($main::mycall);
2222
2223         # send info to all logged in thingies
2224         $self->tell_login('logoutn');
2225
2226         Log('DXProt', $call . " Disconnected");
2227
2228         $self->SUPER::disconnect;
2229 }
2230
2231
2232
2233 # send a talk message to this thingy
2234 #
2235 sub talk
2236 {
2237         my ($self, $from, $to, $via, $line, $origin) = @_;
2238         
2239         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
2240         $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2241         Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2242 }
2243
2244 # send it if it isn't the except list and isn't isolated and still has a hop count
2245 # taking into account filtering and so on
2246
2247 sub send_route
2248 {
2249         my $self = shift;
2250         my $origin = shift;
2251         my $generate = shift;
2252         my $no = shift;     # the no of things to filter on 
2253         my $routeit;
2254         my ($filter, $hops);
2255         my @rin;
2256         
2257         for (; @_ && $no; $no--) {
2258                 my $r = shift;
2259                 
2260                 if (!$self->{isolate} && $self->{routefilter}) {
2261                         $filter = undef;
2262                         if ($r) {
2263                                 ($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});
2264                                 if ($filter) {
2265                                         push @rin, $r;
2266                                 } else {
2267                                         dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2268                                 }
2269                         } else {
2270                                 dbg("was sent a null value") if isdbg('chanerr');
2271                         }
2272                 } else {
2273                         push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2274                 }
2275         }
2276         if (@rin) {
2277                 foreach my $line (&$generate(@rin, @_)) {
2278                         if ($hops) {
2279                                 $routeit = $line;
2280                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2281                         } else {
2282                                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
2283                                 next unless $routeit;
2284                         }
2285                         
2286                         $self->send($routeit);
2287                 }
2288         }
2289 }
2290
2291 sub broadcast_route
2292 {
2293         my $self = shift;
2294         my $origin = shift;
2295         my $generate = shift;
2296         my $line = shift;
2297         my @dxchan = DXChannel::get_all_nodes();
2298         my $dxchan;
2299         
2300         unless ($self->{isolate}) {
2301                 foreach $dxchan (@dxchan) {
2302                         next if $dxchan == $self;
2303                         next if $dxchan == $main::me;
2304                         next unless $dxchan->isa('DXProt');
2305                         next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2306  
2307                         $dxchan->send_route($origin, $generate, @_);
2308                 }
2309         }
2310 }
2311
2312 sub route_pc16
2313 {
2314         my $self = shift;
2315         return unless $self->user->wantpc16;
2316         my $origin = shift;
2317         my $line = shift;
2318         broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2319 }
2320
2321 sub route_pc17
2322 {
2323         my $self = shift;
2324         return unless $self->user->wantpc16;
2325         my $origin = shift;
2326         my $line = shift;
2327         broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2328 }
2329
2330 sub route_pc19
2331 {
2332         my $self = shift;
2333         my $origin = shift;
2334         my $line = shift;
2335         broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2336 }
2337
2338 sub route_pc21
2339 {
2340         my $self = shift;
2341         my $origin = shift;
2342         my $line = shift;
2343         broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2344 }
2345
2346 sub route_pc24
2347 {
2348         my $self = shift;
2349         my $origin = shift;
2350         my $line = shift;
2351         broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2352 }
2353
2354 sub route_pc41
2355 {
2356         my $self = shift;
2357         my $origin = shift;
2358         my $line = shift;
2359         broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2360 }
2361
2362 sub route_pc50
2363 {
2364         my $self = shift;
2365         my $origin = shift;
2366         my $line = shift;
2367         broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2368 }
2369
2370 sub in_filter_route
2371 {
2372         my $self = shift;
2373         my $r = shift;
2374         my ($filter, $hops) = (1, 1);
2375         
2376         if ($self->{inroutefilter}) {
2377                 ($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);
2378                 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2379         }
2380         return $filter;
2381 }
2382
2383 sub eph_dup
2384 {
2385         my $s = shift;
2386         my $t = shift || $eph_restime;
2387         my $r;
2388
2389         # chop the end off
2390         $s =~ s/\^H\d\d?\^?\~?$//;
2391         $r = 1 if exists $eph{$s};    # pump up the dup if it keeps circulating
2392         $eph{$s} = $main::systime + $t;
2393         dbg("PCPROT: emphemeral duplicate") if $r && isdbg('chanerr'); 
2394         return $r;
2395 }
2396
2397 sub eph_del_regex
2398 {
2399         my $regex = shift;
2400         my ($key, $val);
2401         while (($key, $val) = each %eph) {
2402                 if ($key =~ m{$regex}) {
2403                         delete $eph{$key};
2404                 }
2405         }
2406 }
2407
2408 sub eph_clean
2409 {
2410         my ($key, $val);
2411         
2412         while (($key, $val) = each %eph) {
2413                 if ($main::systime >= $val) {
2414                         delete $eph{$key};
2415                 }
2416         }
2417 }
2418
2419 sub eph_list
2420 {
2421         my ($key, $val);
2422         my @out;
2423
2424         while (($key, $val) = each %eph) {
2425                 push @out, $key, $val;
2426         }
2427         return @out;
2428 }
2429
2430 sub run_cmd
2431 {
2432         goto &DXCommandmode::run_cmd;
2433 }
2434
2435
2436 # import any msgs in the chat directory
2437 # the messages are sent to the chat group which forms the
2438 # the first part of the name (eg: solar.1243.txt would be
2439 # sent to chat group SOLAR)
2440
2441 # Each message found is sent: one non-blank line to one chat
2442 # message. So 4 lines = 4 chat messages.
2443
2444 # The special name LOCAL is for local users ANN
2445 # The special name ALL is for ANN/FULL
2446 # The special name SYSOP is for ANN/SYSOP
2447 #
2448 sub import_chat
2449 {
2450         # are there any to do in this directory?
2451         return unless -d $chatimportfn;
2452         unless (opendir(DIR, $chatimportfn)) {
2453                 dbg("can\'t open $chatimportfn $!") if isdbg('msg');
2454                 Log('msg', "can\'t open $chatimportfn $!");
2455                 return;
2456         } 
2457
2458         my @names = readdir(DIR);
2459         closedir(DIR);
2460         my $name;
2461         foreach $name (@names) {
2462                 next if $name =~ /^\./;
2463                 my $splitit = $name =~ /^split/;
2464                 my $fn = "$chatimportfn/$name";
2465                 next unless -f $fn;
2466                 unless (open(MSG, $fn)) {
2467                         dbg("can\'t open import file $fn $!") if isdbg('msg');
2468                         Log('msg', "can\'t open import file $fn $!");
2469                         unlink($fn);
2470                         next;
2471                 }
2472                 my @msg = map { s/\r?\n$//; $_ } <MSG>;
2473                 close(MSG);
2474                 unlink($fn);
2475
2476                 my @cat = split /\./, $name;
2477                 my $target = uc $cat[0];
2478
2479                 foreach my $text (@msg) {
2480                         next unless $text && $text !~ /^\s*#/;
2481                         if ($target eq 'ALL' || $target eq 'LOCAL' || $target eq 'SYSOP') {
2482                                 my $sysopflag = $target eq 'SYSOP' ? '*' : ' ';
2483                                 if ($target ne 'LOCAL') {
2484                                         send_announce($main::me, pc12($main::mycall, $text, '*', $sysopflag), $main::mycall, '*', $text, $sysopflag, $main::mycall, '0');
2485                                 } else {
2486                                         Log('ann', 'LOCAL', $main::mycall, $text);
2487                                         DXChannel::broadcast_list("To LOCAL de ${main::mycall}: $text\a", 'ann', undef, DXCommandmode->get_all());
2488                                 }
2489                         } else {
2490                                 my $msgid = nextchatmsgid();
2491                                 $text = "#$msgid $text";
2492                                 send_chat($main::me, pc12($main::mycall, $text, '*', $target), $main::mycall, '*', $text, $target, $main::mycall, '0');
2493                         }
2494                 }
2495         }
2496 }
2497
2498 1;
2499 __END__