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