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