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