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