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