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