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