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