disable propagation of PC9x sentences
[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         }
933         my $parent = Route::Node::get($ncall);
934         unless ($parent) {
935                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
936         }                       
937
938         $dxchan = $parent->dxchan if $parent;
939         if ($dxchan && $dxchan ne $self) {
940                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
941                 return;
942         }
943
944         # input filter if required and then remove user if present
945         if ($parent) {
946 #               return unless $self->in_filter_route($parent);  
947                 $parent->del_user($uref) if $uref;
948         } else {
949                 $parent = Route->new($ncall);  # throw away
950         }
951
952         # send info to all logged in thingies
953         $self->tell_login('logoutu', "$ncall: $ucall") if DXUser->get_current($ncall)->is_local_node;
954         $self->tell_buddies('logoutb', $ucall, $ncall);
955
956         if (eph_dup($line)) {
957                 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
958                 return;
959         }
960
961         $uref = Route->new($ucall) unless $uref; # throw away
962         $self->route_pc17($origin, $line, $parent, $uref);
963 }
964                 
965 # link request
966 sub handle_18
967 {
968         my $self = shift;
969         my $pcno = shift;
970         my $line = shift;
971         my $origin = shift;
972         $self->state('init');   
973
974         # record the type and version offered
975         if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
976                 $self->version(53 + $1);
977                 $self->user->version(53 + $1);
978                 $self->build(0 + $2);
979                 $self->user->build(0 + $2);
980                 unless ($self->is_spider) {
981                         $self->user->sort('S');
982                         $self->user->put;
983                         $self->sort('S');
984                 }
985                 $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml\b/;
986         } else {
987                 $self->version(50.0);
988                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
989                 $self->user->version($self->version);
990         }
991
992         # first clear out any nodes on this dxchannel
993         my $parent = Route::Node::get($self->{call});
994         my @rout = $parent->del_nodes;
995         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
996         $self->send_local_config();
997         $self->send(pc20());
998 }
999                 
1000 # incoming cluster list
1001 sub handle_19
1002 {
1003         my $self = shift;
1004         my $pcno = shift;
1005         my $line = shift;
1006         my $origin = shift;
1007
1008         my $i;
1009         my $newline = "PC19^";
1010
1011         # new routing list
1012         my @rout;
1013
1014         # first get the INTERFACE node
1015         my $parent = Route::Node::get($self->{call});
1016         unless ($parent) {
1017                 dbg("DXPROT: my parent $self->{call} has disappeared");
1018                 $self->disconnect;
1019                 return;
1020         }
1021
1022         # if the origin isn't the same as the INTERFACE, then reparent, creating nodes as necessary
1023         if ($origin ne $self->call) {
1024                 my $op = Route::Node::get($origin);
1025                 unless ($op) {
1026                         $op = $parent->add($origin, 5000, Route::here(1));
1027                         my $user = DXUser->get_current($origin);
1028                         if (!$user) {
1029                                 $user = DXUser->new($origin);
1030                                 $user->priv(1);         # I have relented and defaulted nodes
1031                                 $user->lockout(1);
1032                                 $user->homenode($origin);
1033                                 $user->node($origin);
1034                                 $user->wantroutepc19(1);
1035                         }
1036                         $user->sort('A') unless $user->is_node;
1037                         $user->put;
1038                 }
1039                 $parent = $op;
1040         }
1041
1042         # parse the PC19
1043         for ($i = 1; $i < $#_-1; $i += 4) {
1044                 my $here = $_[$i];
1045                 my $call = uc $_[$i+1];
1046                 my $conf = $_[$i+2];
1047                 my $ver = $_[$i+3];
1048                 next unless defined $here && defined $conf && is_callsign($call);
1049
1050                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
1051                                 
1052                 # check for sane parameters
1053                 #                               $ver = 5000 if $ver eq '0000';
1054                 next unless $ver && $ver =~ /^\d+$/;
1055                 next if $ver < 5000;    # only works with version 5 software
1056                 next if length $call < 3; # min 3 letter callsigns
1057                 next if $call eq $main::mycall;
1058
1059                 # check that this PC19 isn't trying to alter the wrong dxchan
1060                 my $dxchan = DXChannel::get($call);
1061                 if ($dxchan && $dxchan != $self) {
1062                         dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
1063                         next;
1064                 }
1065
1066                 # add this station to the user database, if required (don't remove SSID from nodes)
1067                 my $user = DXUser->get_current($call);
1068                 if (!$user) {
1069                         $user = DXUser->new($call);
1070                         $user->priv(1);         # I have relented and defaulted nodes
1071                         $user->lockout(1);
1072                         $user->homenode($call);
1073                         $user->node($call);
1074                 }
1075                 $user->sort('A') unless $user->is_node;
1076
1077                 RouteDB::update($call, $self->{call});
1078
1079                 # do we believe this call?
1080                 my $genline = "PC19^$here^$call^$conf^$ver^$_[-1]^"; 
1081                 unless ($call eq $self->{call} || $self->is_believed($call)) {
1082                         my $pt = $user->lastping($self->{call}) || 0;
1083                         if ($pt+$investigation_int < $main::systime && !Investigate::get($call, $self->{call})) {
1084                                 my $ivp  = Investigate->new($call, $self->{call});
1085                                 $ivp->version($ver);
1086                                 $ivp->here($here);
1087                                 $ivp->store_pcxx($pcno,$genline,$origin,'PC19',$here,$call,$conf,$ver,$_[-1]);
1088                         } else {
1089                                 dbg("PCPROT: We don't believe $call on $self->{call}") if isdbg('chanerr');
1090                         }
1091                         $user->put;
1092                         next;
1093                 }
1094
1095                 if (eph_dup($genline)) {
1096                         dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
1097                         next;
1098                 }
1099
1100                 my $r = Route::Node::get($call);
1101                 my $flags = Route::here($here)|Route::conf($conf);
1102
1103                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1104                 if ($r) {
1105                         my $ar;
1106                         if ($call ne $parent->call) {
1107                                 if ($self->in_filter_route($r)) {
1108                                         $ar = $parent->add($call, $ver, $flags);
1109                                         push @rout, $ar if $ar;
1110                                 } else {
1111                                         next;
1112                                 }
1113                         }
1114                         if ($r->version ne $ver || $r->flags != $flags) {
1115                                 $r->version($ver);
1116                                 $r->flags($flags);
1117                                 push @rout, $r unless $ar;
1118                         }
1119                 } else {
1120
1121                         # if he is directly connected or allowed then add him, otherwise store him up for later
1122                         if ($call eq $self->{call} || $user->wantroutepc19) {
1123                                 my $new = Route->new($call); # throw away
1124                                 if ($self->in_filter_route($new)) {
1125                                         my $ar = $parent->add($call, $ver, $flags);
1126                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1127                                         push @rout, $ar if $ar;
1128                                 } else {
1129                                         next;
1130                                 }
1131                         } else {
1132                                 $pc19list{$call} = [] unless exists $pc19list{$call};
1133                                 my $nl = $pc19list{$call};
1134                                 push @{$pc19list{$call}}, [$self->{call}, $ver, $flags] unless grep $_->[0] eq $self->{call}, @$nl;
1135                         }
1136                 }
1137
1138                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1139                 my $mref = DXMsg::get_busy($call);
1140                 $mref->stop_msg($call) if $mref;
1141                                 
1142                 $user->lastin($main::systime) unless DXChannel::get($call);
1143                 $user->put;
1144         }
1145
1146
1147         $self->route_pc19($origin, $line, @rout) if @rout;
1148 }
1149                 
1150 # send local configuration
1151 sub handle_20
1152 {
1153         my $self = shift;
1154         my $pcno = shift;
1155         my $line = shift;
1156         my $origin = shift;
1157         $self->send_local_config();
1158         $self->send(pc22());
1159         $self->state('normal');
1160         $self->{lastping} = 0;
1161 }
1162                 
1163 # delete a cluster from the list
1164 sub handle_21
1165 {
1166         my $self = shift;
1167         my $pcno = shift;
1168         my $line = shift;
1169         my $origin = shift;
1170         my $call = uc $_[1];
1171
1172         eph_del_regex("^PC1[679].*$call");
1173                         
1174         # if I get a PC21 from the same callsign as self then treat it
1175         # as a PC39: I have gone away
1176         if ($call eq $self->call) {
1177                 $self->disconnect(1);
1178                 return;
1179         }
1180
1181         RouteDB::delete($call, $self->{call});
1182
1183         # check if we believe this
1184         unless ($call eq $self->{call} || $self->is_believed($call)) {
1185                 if (my $ivp = Investigate::get($call, $self->{call})) {
1186                         $ivp->store_pcxx($pcno,$line,$origin,@_);
1187                 } else {
1188                         dbg("PCPROT: We don't believe $call on $self->{call}") if isdbg('chanerr');
1189                 }
1190                 return;
1191         }
1192
1193         # check to see if we are in the pc19list, if we are then don't bother with any of
1194         # this routing table manipulation, just remove it from the list and dump it
1195         my @rout;
1196         if (my $nl = $pc19list{$call}) {
1197                 $pc19list{$call} = [ grep {$_->[0] ne $self->{call}} @$nl ];
1198                 delete $pc19list{$call} unless @{$pc19list{$call}};
1199         } else {
1200                                 
1201                 my $parent = Route::Node::get($self->{call});
1202                 unless ($parent) {
1203                         dbg("DXPROT: my parent $self->{call} has disappeared");
1204                         $self->disconnect;
1205                         return;
1206                 }
1207                 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1208                         my $node = Route::Node::get($call);
1209                         if ($node) {
1210                                                 
1211                                 my $dxchan = DXChannel::get($call);
1212                                 if ($dxchan && $dxchan != $self) {
1213                                         dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1214                                         return;
1215                                 }
1216                                                 
1217                                 # input filter it
1218                                 return unless $self->in_filter_route($node);
1219                                                 
1220                                 # routing objects
1221                                 push @rout, $node->del($parent);
1222                         }
1223                 } else {
1224                         dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1225                         return;
1226                 }
1227         }
1228
1229         $self->route_pc21($origin, $line, @rout) if @rout;
1230 }
1231                 
1232
1233 sub handle_22
1234 {
1235         my $self = shift;
1236         my $pcno = shift;
1237         my $line = shift;
1238         my $origin = shift;
1239         $self->state('normal');
1240         $self->{lastping} = 0;
1241 }
1242                                 
1243 # WWV info
1244 sub handle_23
1245 {
1246         my $self = shift;
1247         my $pcno = shift;
1248         my $line = shift;
1249         my $origin = shift;
1250                         
1251         # route foreign' pc27s 
1252         if ($pcno == 27) {
1253                 if ($_[8] ne $main::mycall) {
1254                         $self->route($_[8], $line);
1255                         return;
1256                 }
1257         }
1258
1259         # only do a rspf check on PC23 (not 27)
1260         if ($pcno == 23) {
1261                 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
1262         }
1263
1264         # do some de-duping
1265         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1266         my $sfi = unpad($_[3]);
1267         my $k = unpad($_[4]);
1268         my $i = unpad($_[5]);
1269         my ($r) = $_[6] =~ /R=(\d+)/;
1270         $r = 0 unless $r;
1271         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1272                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1273                 return;
1274         }
1275
1276         # global wwv filtering on INPUT
1277         my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
1278         if ($self->{inwwvfilter}) {
1279                 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
1280                 unless ($filter) {
1281                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1282                         return;
1283                 }
1284         }
1285         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
1286         if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
1287                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1288                 return;
1289         }
1290                 
1291         # note this only takes the first one it gets
1292         Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1293
1294         my $rep;
1295         eval {
1296                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1297         };
1298         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1299         return if $rep;
1300
1301         # DON'T be silly and send on PC27s!
1302         return if $pcno == 27;
1303
1304         # broadcast to the eager world
1305         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1306 }
1307                 
1308 # set here status
1309 sub handle_24
1310 {
1311         my $self = shift;
1312         my $pcno = shift;
1313         my $line = shift;
1314         my $origin = shift;
1315         my $call = uc $_[1];
1316         my ($nref, $uref);
1317         $nref = Route::Node::get($call);
1318         $uref = Route::User::get($call);
1319         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1320                         
1321         if (eph_dup($line)) {
1322                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1323                 return;
1324         }
1325         
1326         $nref->here($_[2]) if $nref;
1327         $uref->here($_[2]) if $uref;
1328         my $ref = $nref || $uref;
1329         return unless $self->in_filter_route($ref);
1330
1331         $self->route_pc24($origin, $line, $ref, $_[3]);
1332 }
1333                 
1334 # merge request
1335 sub handle_25
1336 {
1337         my $self = shift;
1338         my $pcno = shift;
1339         my $line = shift;
1340         my $origin = shift;
1341         if ($_[1] ne $main::mycall) {
1342                 $self->route($_[1], $line);
1343                 return;
1344         }
1345         if ($_[2] eq $main::mycall) {
1346                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1347                 return;
1348         }
1349
1350         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1351                         
1352         # spots
1353         if ($_[3] > 0) {
1354                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1355                 my $in;
1356                 foreach $in (@in) {
1357                         $self->send(pc26(@{$in}[0..4], $_[2]));
1358                 }
1359         }
1360
1361         # wwv
1362         if ($_[4] > 0) {
1363                 my @in = reverse Geomag::search(0, $_[4], time, 1);
1364                 my $in;
1365                 foreach $in (@in) {
1366                         $self->send(pc27(@{$in}[0..5], $_[2]));
1367                 }
1368         }
1369 }
1370
1371 sub handle_26 {goto &handle_11}
1372 sub handle_27 {goto &handle_23}
1373
1374 # mail/file handling
1375 sub handle_28
1376 {
1377         my $self = shift;
1378         my $pcno = shift;
1379         my $line = shift;
1380         my $origin = shift;
1381         if ($_[1] eq $main::mycall) {
1382                 no strict 'refs';
1383                 my $sub = "DXMsg::handle_$pcno";
1384                 &$sub($self, @_);
1385         } else {
1386                 $self->route($_[1], $line) unless $self->is_clx;
1387         }
1388 }
1389
1390 sub handle_29 {goto &handle_28}
1391 sub handle_30 {goto &handle_28}
1392 sub handle_31 {goto &handle_28}
1393 sub handle_32 {goto &handle_28}
1394 sub handle_33 {goto &handle_28}
1395                 
1396 sub handle_34
1397 {
1398         my $self = shift;
1399         my $pcno = shift;
1400         my $line = shift;
1401         my $origin = shift;
1402         if (eph_dup($line, $eph_pc34_restime)) {
1403                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1404         } else {
1405                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1406         }
1407 }
1408                 
1409 # remote command replies
1410 sub handle_35
1411 {
1412         my $self = shift;
1413         my $pcno = shift;
1414         my $line = shift;
1415         my $origin = shift;
1416         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1417         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1418 }
1419                 
1420 sub handle_36 {goto &handle_34}
1421
1422 # database stuff
1423 sub handle_37
1424 {
1425         my $self = shift;
1426         my $pcno = shift;
1427         my $line = shift;
1428         my $origin = shift;
1429         if ($_[1] eq $main::mycall) {
1430                 no strict 'refs';
1431                 my $sub = "DXDb::handle_$pcno";
1432                 &$sub($self, @_);
1433         } else {
1434                 $self->route($_[1], $line) unless $self->is_clx;
1435         }
1436 }
1437
1438 # node connected list from neighbour
1439 sub handle_38
1440 {
1441         my $self = shift;
1442         my $pcno = shift;
1443         my $line = shift;
1444         my $origin = shift;
1445 }
1446                 
1447 # incoming disconnect
1448 sub handle_39
1449 {
1450         my $self = shift;
1451         my $pcno = shift;
1452         my $line = shift;
1453         my $origin = shift;
1454         if ($_[1] eq $self->{call}) {
1455                 $self->disconnect(1);
1456         } else {
1457                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1458         }
1459 }
1460
1461 sub handle_40 {goto &handle_28}
1462                 
1463 # user info
1464 sub handle_41
1465 {
1466         my $self = shift;
1467         my $pcno = shift;
1468         my $line = shift;
1469         my $origin = shift;
1470         my $call = $_[1];
1471
1472         my $l = $line;
1473         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1474         if (eph_dup($l, $eph_info_restime)) {
1475                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1476                 return;
1477         }
1478                         
1479         # input filter if required
1480         #                       my $ref = Route::get($call) || Route->new($call);
1481         #                       return unless $self->in_filter_route($ref);
1482
1483         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1484                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1485                 return;
1486         }
1487
1488         # add this station to the user database, if required
1489         my $user = DXUser->get_current($call);
1490         $user = DXUser->new($call) unless $user;
1491                         
1492         if ($_[2] == 1) {
1493                 $user->name($_[3]);
1494         } elsif ($_[2] == 2) {
1495                 $user->qth($_[3]);
1496         } elsif ($_[2] == 3) {
1497                 if (is_latlong($_[3])) {
1498                         my ($lat, $long) = DXBearing::stoll($_[3]);
1499                         $user->lat($lat);
1500                         $user->long($long);
1501                         $user->qra(DXBearing::lltoqra($lat, $long));
1502                 } else {
1503                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1504                         return;
1505                 }
1506         } elsif ($_[2] == 4) {
1507                 $user->homenode($_[3]);
1508         } elsif ($_[2] == 5) {
1509                 if (is_qra(uc $_[3])) {
1510                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1511                         $user->lat($lat);
1512                         $user->long($long);
1513                         $user->qra(uc $_[3]);
1514                 } else {
1515                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1516                         return;
1517                 }
1518         }
1519         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1520         $user->put;
1521
1522         unless ($self->{isolate}) {
1523                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1524         }
1525
1526         #  perhaps this IS what we want after all
1527         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1528 }
1529
1530 sub handle_42 {goto &handle_28}
1531
1532
1533 # database
1534 sub handle_44 {goto &handle_37}
1535 sub handle_45 {goto &handle_37}
1536 sub handle_46 {goto &handle_37}
1537 sub handle_47 {goto &handle_37}
1538 sub handle_48 {goto &handle_37}
1539                 
1540 # message and database
1541 sub handle_49
1542 {
1543         my $self = shift;
1544         my $pcno = shift;
1545         my $line = shift;
1546         my $origin = shift;
1547
1548         if (eph_dup($line)) {
1549                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1550                 return;
1551         }
1552         
1553         if ($_[1] eq $main::mycall) {
1554                 DXMsg::handle_49($self, @_);
1555         } else {
1556                 $self->route($_[1], $line) unless $self->is_clx;
1557         }
1558 }
1559
1560 # keep alive/user list
1561 sub handle_50
1562 {
1563         my $self = shift;
1564         my $pcno = shift;
1565         my $line = shift;
1566         my $origin = shift;
1567
1568         my $call = $_[1];
1569
1570         RouteDB::update($call, $self->{call});
1571
1572         my $node = Route::Node::get($call);
1573         if ($node) {
1574                 return unless $node->call eq $self->{call};
1575                 $node->usercount($_[2]);
1576
1577                 # input filter if required
1578                 return unless $self->in_filter_route($node);
1579
1580                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1581         }
1582 }
1583                 
1584 # incoming ping requests/answers
1585 sub handle_51
1586 {
1587         my $self = shift;
1588         my $pcno = shift;
1589         my $line = shift;
1590         my $origin = shift;
1591         my $to = $_[1];
1592         my $from = $_[2];
1593         my $flag = $_[3];
1594
1595                         
1596         # is it for us?
1597         if ($to eq $main::mycall) {
1598                 if ($flag == 1) {
1599                         $self->send(pc51($from, $to, '0'));
1600                 } else {
1601                         DXXml::Ping::handle_ping_reply($self, $from);
1602                 }
1603         } else {
1604
1605                 RouteDB::update($from, $self->{call});
1606
1607                 if (eph_dup($line)) {
1608                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1609                         return;
1610                 }
1611                 # route down an appropriate thingy
1612                 $self->route($to, $line);
1613         }
1614 }
1615
1616 # dunno but route it
1617 sub handle_75
1618 {
1619         my $self = shift;
1620         my $pcno = shift;
1621         my $line = shift;
1622         my $origin = shift;
1623         my $call = $_[1];
1624         if ($call ne $main::mycall) {
1625                 $self->route($call, $line);
1626         }
1627 }
1628
1629 # WCY broadcasts
1630 sub handle_73
1631 {
1632         my $self = shift;
1633         my $pcno = shift;
1634         my $line = shift;
1635         my $origin = shift;
1636         my $call = $_[1];
1637                         
1638         # do some de-duping
1639         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1640         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1641                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1642                 return;
1643         }
1644         @_ = map { unpad($_) } @_;
1645         if (WCY::dup($d)) {
1646                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1647                 return;
1648         }
1649                 
1650         my $wcy = WCY::update($d, @_[2..12]);
1651
1652         my $rep;
1653         eval {
1654                 $rep = Local::wcy($self, @_[1..12]);
1655         };
1656         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1657         return if $rep;
1658
1659         # broadcast to the eager world
1660         send_wcy_spot($self, $line, $d, @_[2..12]);
1661 }
1662
1663 # remote commands (incoming)
1664 sub handle_84
1665 {
1666         my $self = shift;
1667         my $pcno = shift;
1668         my $line = shift;
1669         my $origin = shift;
1670         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1671 }
1672
1673 # remote command replies
1674 sub handle_85
1675 {
1676         my $self = shift;
1677         my $pcno = shift;
1678         my $line = shift;
1679         my $origin = shift;
1680         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1681 }
1682
1683 # if get here then rebroadcast the thing with its Hop count decremented (if
1684 # there is one). If it has a hop count and it decrements to zero then don't
1685 # rebroadcast it.
1686 #
1687 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1688 #        REBROADCAST!!!!
1689 #
1690
1691 sub handle_default
1692 {
1693         my $self = shift;
1694         my $pcno = shift;
1695         my $line = shift;
1696         my $origin = shift;
1697
1698         if (eph_dup($line)) {
1699                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1700         } else {
1701                 unless ($self->{isolate}) {
1702                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1703                 }
1704         }
1705 }
1706
1707 #
1708 # This is called from inside the main cluster processing loop and is used
1709 # for despatching commands that are doing some long processing job
1710 #
1711 sub process
1712 {
1713         my $t = time;
1714         my @dxchan = DXChannel::get_all();
1715         my $dxchan;
1716         my $pc50s;
1717         
1718         # send out a pc50 on EVERY channel all at once
1719         if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1720                 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1721                 eph_dup($pc50s);
1722                 $last_pc50 = $t;
1723         }
1724
1725         foreach $dxchan (@dxchan) {
1726                 next unless $dxchan->is_node;
1727                 next if $dxchan->handle_xml;
1728                 next if $dxchan == $main::me;
1729
1730                 # send the pc50
1731                 $dxchan->send($pc50s) if $pc50s;
1732                 
1733                 # send a ping out on this channel
1734                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1735                         if ($dxchan->{nopings} <= 0) {
1736                                 $dxchan->disconnect;
1737                         } else {
1738                                 DXXml::Ping::add($main::me, $dxchan->call);
1739                                 $dxchan->{nopings} -= 1;
1740                                 $dxchan->{lastping} = $t;
1741                                 $dxchan->{lastping} += $dxchan->{pingint} / 2 unless @{$dxchan->{pingtime}};
1742                         }
1743                 }
1744         }
1745
1746         Investigate::process();
1747
1748         # every ten seconds
1749         if ($t - $last10 >= 10) {       
1750                 # clean out ephemera 
1751
1752                 eph_clean();
1753                 import_chat();
1754                 
1755
1756                 $last10 = $t;
1757         }
1758         
1759         if ($main::systime - 3600 > $last_hour) {
1760                 $last_hour = $main::systime;
1761         }
1762 }
1763
1764 #
1765 # finish up a pc context
1766 #
1767
1768 #
1769 # some active measures
1770 #
1771
1772
1773 sub send_dx_spot
1774 {
1775         my $self = shift;
1776         my $line = shift;
1777         my @dxchan = DXChannel::get_all();
1778         my $dxchan;
1779         
1780         # send it if it isn't the except list and isn't isolated and still has a hop count
1781         # taking into account filtering and so on
1782         foreach $dxchan (@dxchan) {
1783                 next if $dxchan == $main::me;
1784                 next if $dxchan == $self && $self->is_node;
1785                 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1786         }
1787 }
1788
1789 sub dx_spot
1790 {
1791         my $self = shift;
1792         my $line = shift;
1793         my $isolate = shift;
1794         my ($filter, $hops);
1795
1796         if ($self->{spotsfilter}) {
1797                 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1798                 return unless $filter;
1799         }
1800         send_prot_line($self, $filter, $hops, $isolate, $line);
1801 }
1802
1803 sub send_prot_line
1804 {
1805         my ($self, $filter, $hops, $isolate, $line) = @_;
1806         my $routeit;
1807
1808
1809         if ($hops) {
1810                 $routeit = $line;
1811                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1812         } else {
1813                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
1814                 return unless $routeit;
1815         }
1816         if ($filter) {
1817                 $self->send($routeit);
1818         } else {
1819                 $self->send($routeit) unless $self->{isolate} || $isolate;
1820         }
1821 }
1822
1823
1824 sub send_wwv_spot
1825 {
1826         my $self = shift;
1827         my $line = shift;
1828         my @dxchan = DXChannel::get_all();
1829         my $dxchan;
1830         my @dxcc = ((Prefix::cty_data($_[6]))[0..2], (Prefix::cty_data($_[7]))[0..2]);
1831
1832         # send it if it isn't the except list and isn't isolated and still has a hop count
1833         # taking into account filtering and so on
1834         foreach $dxchan (@dxchan) {
1835                 next if $dxchan == $main::me;
1836                 next if $dxchan == $self && $self->is_node;
1837                 my $routeit;
1838                 my ($filter, $hops);
1839
1840                 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1841         }
1842 }
1843
1844 sub wwv
1845 {
1846         my $self = shift;
1847         my $line = shift;
1848         my $isolate = shift;
1849         my ($filter, $hops);
1850         
1851         if ($self->{wwvfilter}) {
1852                 ($filter, $hops) = $self->{wwvfilter}->it(@_[7..$#_]);
1853                 return unless $filter;
1854         }
1855         send_prot_line($self, $filter, $hops, $isolate, $line)
1856 }
1857
1858 sub send_wcy_spot
1859 {
1860         my $self = shift;
1861         my $line = shift;
1862         my @dxchan = DXChannel::get_all();
1863         my $dxchan;
1864         my @dxcc = ((Prefix::cty_data($_[10]))[0..2], (Prefix::cty_data($_[11]))[0..2]);
1865         
1866         # send it if it isn't the except list and isn't isolated and still has a hop count
1867         # taking into account filtering and so on
1868         foreach $dxchan (@dxchan) {
1869                 next if $dxchan == $main::me;
1870                 next if $dxchan == $self;
1871
1872                 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1873         }
1874 }
1875
1876 sub wcy
1877 {
1878         my $self = shift;
1879         my $line = shift;
1880         my $isolate = shift;
1881         my ($filter, $hops);
1882
1883         if ($self->{wcyfilter}) {
1884                 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1885                 return unless $filter;
1886         }
1887         send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1888 }
1889
1890 # send an announce
1891 sub send_announce
1892 {
1893         my $self = shift;
1894         my $line = shift;
1895         my @dxchan = DXChannel::get_all();
1896         my $dxchan;
1897         my $target;
1898         my $to = 'To ';
1899         my $text = unpad($_[2]);
1900                                 
1901         if ($_[3] eq '*') {     # sysops
1902                 $target = "SYSOP";
1903         } elsif ($_[3] gt ' ') { # speciality list handling
1904                 my ($name) = split /\./, $_[3]; 
1905                 $target = "$name"; # put the rest in later (if bothered) 
1906         } 
1907         
1908         if ($_[5] eq '1') {
1909                 $target = "WX"; 
1910                 $to = '';
1911         }
1912         $target = "ALL" if !$target;
1913
1914
1915         # obtain country codes etc 
1916         my @a = Prefix::cty_data($_[0]);
1917         my @b = Prefix::cty_data($_[4]);
1918         if ($self->{inannfilter}) {
1919                 my ($filter, $hops) = 
1920                         $self->{inannfilter}->it(@_, $self->{call}, 
1921                                                                          @a[0..2],
1922                                                                          @b[0..2], $a[3], $b[3]);
1923                 unless ($filter) {
1924                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1925                         return;
1926                 }
1927         }
1928
1929         if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1930                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1931                 return;
1932         }
1933
1934         Log('ann', $target, $_[0], $text);
1935
1936         # send it if it isn't the except list and isn't isolated and still has a hop count
1937         # taking into account filtering and so on
1938         foreach $dxchan (@dxchan) {
1939                 next if $dxchan == $main::me;
1940                 next if $dxchan == $self && $self->is_node;
1941                 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call},
1942                                                   @a[0..2], @b[0..2]);
1943         }
1944 }
1945
1946 my $msgid = 0;
1947
1948 sub nextchatmsgid
1949 {
1950         $msgid++;
1951         $msgid = 1 if $msgid > 999;
1952         return $msgid;
1953 }
1954
1955 # send a chat line
1956 sub send_chat
1957 {
1958         my $self = shift;
1959         my $line = shift;
1960         my @dxchan = DXChannel::get_all();
1961         my $dxchan;
1962         my $target = $_[3];
1963         my $text = unpad($_[2]);
1964         my $ak1a_line;
1965                                 
1966         # munge the group and recast the line if required
1967         if ($target =~ s/\.LST$//) {
1968                 $ak1a_line = $line;
1969         }
1970         
1971         # obtain country codes etc 
1972         my @a = Prefix::cty_data($_[0]);
1973         my @b = Prefix::cty_data($_[4]);
1974         if ($self->{inannfilter}) {
1975                 my ($filter, $hops) = 
1976                         $self->{inannfilter}->it(@_, $self->{call}, 
1977                                                                          @a[0..2],
1978                                                                          @b[0..2], $a[3], $b[3]);
1979                 unless ($filter) {
1980                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1981                         return;
1982                 }
1983         }
1984
1985         if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
1986                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1987                 return;
1988         }
1989
1990
1991         Log('chat', $target, $_[0], $text);
1992
1993         # send it if it isn't the except list and isn't isolated and still has a hop count
1994         # taking into account filtering and so on
1995         foreach $dxchan (@dxchan) {
1996                 my $is_ak1a = $dxchan->is_ak1a;
1997                 
1998                 if ($dxchan->is_node) {
1999                         next if $dxchan == $main::me;
2000                         next if $dxchan == $self;
2001                         next unless $dxchan->is_spider || $is_ak1a;
2002                         next if $target eq 'LOCAL';
2003                         if (!$ak1a_line && $is_ak1a) {
2004                                 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
2005                         }
2006                 }
2007                 
2008                 $dxchan->chat($is_ak1a ? $ak1a_line : $line, $self->{isolate}, $target, $_[1], 
2009                                           $text, @_, $self->{call}, @a[0..2], @b[0..2]);
2010         }
2011 }
2012
2013 sub announce
2014 {
2015         my $self = shift;
2016         my $line = shift;
2017         my $isolate = shift;
2018         my $to = shift;
2019         my $target = shift;
2020         my $text = shift;
2021         my ($filter, $hops);
2022
2023         if ($self->{annfilter}) {
2024                 ($filter, $hops) = $self->{annfilter}->it(@_);
2025                 return unless $filter;
2026         }
2027         send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
2028 }
2029
2030 sub chat
2031 {
2032         goto &announce;
2033 }
2034
2035
2036 sub send_local_config
2037 {
2038         my $self = shift;
2039         my $node;
2040         my @nodes;
2041         my @localnodes;
2042         my @remotenodes;
2043
2044         dbg('DXProt::send_local_config') if isdbg('trace');
2045         
2046         # send our nodes
2047         if ($self->{isolate}) {
2048                 @localnodes = ( $main::routeroot );
2049                 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
2050         } else {
2051                 # create a list of all the nodes that are not connected to this connection
2052                 # and are not themselves isolated, this to make sure that isolated nodes
2053         # don't appear outside of this node
2054
2055                 # send locally connected nodes
2056                 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
2057                 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
2058                 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
2059
2060                 my $node;
2061                 my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
2062                 my @intcalls;
2063                 for $node (@rawintcalls) {
2064                         push @intcalls, $node unless grep $node eq $_, @intcalls; 
2065                 }
2066                 my $ref = Route::Node::get($self->{call});
2067                 my @rnodes = $ref->nodes;
2068                 for $node (@intcalls) {
2069                         push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
2070                 }
2071                 $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
2072         }
2073         
2074         # get all the users connected on the above nodes and send them out
2075         foreach $node ($main::routeroot, @localnodes, @remotenodes) {
2076                 if ($node) {
2077                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
2078                         $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
2079                 } else {
2080                         dbg("sent a null value") if isdbg('chanerr');
2081                 }
2082         }
2083 }
2084
2085 #
2086 # route a message down an appropriate interface for a callsign
2087 #
2088 # is called route(to, pcline);
2089 #
2090
2091 sub route
2092 {
2093         my ($self, $call, $line) = @_;
2094
2095         if (ref $self && $call eq $self->{call}) {
2096                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2097                 return;
2098         }
2099
2100         # always send it down the local interface if available
2101         my $dxchan = DXChannel::get($call);
2102         if ($dxchan) {
2103                 dbg("route: $call -> $dxchan->{call} direct" ) if isdbg('route');
2104         } else {
2105                 my $cl = Route::get($call);
2106                 $dxchan = $cl->dxchan if $cl;
2107                 if (ref $dxchan) {
2108                         if (ref $self && $dxchan eq $self) {
2109                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2110                                 return;
2111                         }
2112                         dbg("route: $call -> $dxchan->{call} using normal route" ) if isdbg('route');
2113                 }
2114         }
2115
2116         # try the backstop method
2117         unless ($dxchan) {
2118                 my $rcall = RouteDB::get($call);
2119                 if ($rcall) {
2120                         if ($self && $rcall eq $self->{call}) {
2121                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2122                                 return;
2123                         }
2124                         $dxchan = DXChannel::get($rcall);
2125                         dbg("route: $call -> $rcall using RouteDB" ) if isdbg('route') && $dxchan;
2126                 }
2127         }
2128
2129         if ($dxchan) {
2130                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
2131                 if ($routeit) {
2132                         $dxchan->send($routeit) unless $dxchan == $main::me;
2133                 }
2134         } else {
2135                 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
2136         }
2137 }
2138
2139 #
2140 # obtain the hops from the list for this callsign and pc no 
2141 #
2142
2143 sub get_hops
2144 {
2145         my $pcno = shift;
2146         my $hops = $DXProt::hopcount{$pcno};
2147         $hops = $DXProt::def_hopcount if !$hops;
2148         return "H$hops";       
2149 }
2150
2151
2152 # adjust the hop count on a per node basis using the user loadable 
2153 # hop table if available or else decrement an existing one
2154 #
2155
2156 sub adjust_hops
2157 {
2158         my $self = shift;
2159         my $s = shift;
2160         my $call = $self->{call};
2161         my $hops;
2162         
2163         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2164                 my ($pcno) = $s =~ /^PC(\d\d)/o;
2165                 confess "$call called adjust_hops with '$s'" unless $pcno;
2166                 my $ref = $nodehops{$call} if %nodehops;
2167                 if ($ref) {
2168                         my $newhops = $ref->{$pcno};
2169                         return "" if defined $newhops && $newhops == 0;
2170                         $newhops = $ref->{default} unless $newhops;
2171                         return "" if defined $newhops && $newhops == 0;
2172                         $newhops = $hops if !$newhops;
2173                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2174                 } else {
2175                         # simply decrement it
2176                         $hops--;
2177                         return "" if !$hops;
2178                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2179                 }
2180         }
2181         return $s;
2182 }
2183
2184
2185 # load hop tables
2186 #
2187 sub load_hops
2188 {
2189         my $self = shift;
2190         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2191         do "$main::data/hop_table.pl";
2192         return $@ if $@;
2193         return ();
2194 }
2195
2196 sub process_rcmd
2197 {
2198         my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2199         if ($tonode eq $main::mycall) {
2200                 my $ref = DXUser->get_current($fromnode);
2201                 my $cref = Route::Node::get($fromnode);
2202                 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2203                 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2204                         if ($ref->{priv}) {             # you have to have SOME privilege, the commands have further filtering
2205                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2206                                 my $oldpriv = $self->{priv};
2207                                 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2208                                 my @in = (DXCommandmode::run_cmd($self, $cmd));
2209                                 $self->{priv} = $oldpriv;
2210                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2211                                 delete $self->{remotecmd};
2212                         } else {
2213                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2214                         }
2215                 } else {
2216                         $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2217                 }
2218         } else {
2219                 my $ref = DXUser->get_current($tonode);
2220                 if ($ref && $ref->is_clx) {
2221                         $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2222                 } else {
2223                         $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2224                 }
2225         }
2226 }
2227
2228 sub process_rcmd_reply
2229 {
2230         my ($self, $tonode, $fromnode, $user, $line) = @_;
2231         if ($tonode eq $main::mycall) {
2232                 my $s = $rcmds{$fromnode};
2233                 if ($s) {
2234                         my $dxchan = DXChannel::get($s->{call});
2235                         my $ref = $user eq $tonode ? $dxchan : (DXChannel::get($user) || $dxchan);
2236                         $ref->send($line) if $ref;
2237                         delete $rcmds{$fromnode} if !$dxchan;
2238                 } else {
2239                         # send unsolicited ones to the sysop
2240                         my $dxchan = DXChannel::get($main::myalias);
2241                         $dxchan->send($line) if $dxchan;
2242                 }
2243         } else {
2244                 my $ref = DXUser->get_current($tonode);
2245                 if ($ref && $ref->is_clx) {
2246                         $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2247                 } else {
2248                         $self->route($tonode, pc35($fromnode, $tonode, $line));
2249                 }
2250         }
2251 }
2252
2253 sub send_rcmd_reply
2254 {
2255         my $self = shift;
2256         my $tonode = shift;
2257         my $fromnode = shift;
2258         my $user = shift;
2259         while (@_) {
2260                 my $line = shift;
2261                 $line =~ s/\s*$//;
2262                 Log('rcmd', 'out', $fromnode, $line);
2263                 if ($self->is_clx) {
2264                         $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2265                 } else {
2266                         $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2267                 }
2268         }
2269 }
2270
2271 # add a rcmd request to the rcmd queues
2272 sub addrcmd
2273 {
2274         my ($self, $to, $cmd) = @_;
2275
2276         my $r = {};
2277         $r->{call} = $self->{call};
2278         $r->{t} = $main::systime;
2279         $r->{cmd} = $cmd;
2280         $rcmds{$to} = $r;
2281         
2282         my $ref = Route::Node::get($to);
2283         my $dxchan = $ref->dxchan;
2284         if ($dxchan && $dxchan->is_clx) {
2285                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2286         } else {
2287                 route(undef, $to, pc34($main::mycall, $to, $cmd));
2288         }
2289 }
2290
2291 sub disconnect
2292 {
2293         my $self = shift;
2294         my $pc39flag = shift;
2295         my $call = $self->call;
2296
2297         return if $self->{disconnecting}++;
2298         
2299         unless ($pc39flag && $pc39flag == 1) {
2300                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2301         }
2302
2303         # get rid of any PC16/17/19
2304         eph_del_regex("^PC1[679]*$call");
2305
2306         # do routing stuff, remove me from routing table
2307         my $node = Route::Node::get($call);
2308         my @rout;
2309         if ($node) {
2310                 @rout = $node->del($main::routeroot);
2311                 
2312                 # and all my ephemera as well
2313                 for (@rout) {
2314                         my $c = $_->call;
2315                         eph_del_regex("^PC1[679].*$c");
2316                 }
2317         }
2318
2319         RouteDB::delete_interface($call);
2320         
2321         # remove them from the pc19list as well
2322         while (my ($k,$v) = each %pc19list) {
2323                 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2324                 if (@l) {
2325                         $pc19list{$k} = \@l;
2326                 } else {
2327                         delete $pc19list{$k};
2328                 }
2329                 
2330                 # and the ephemera
2331                 eph_del_regex("^PC1[679].*$k");
2332         }
2333
2334         # unbusy and stop and outgoing mail
2335         my $mref = DXMsg::get_busy($call);
2336         $mref->stop_msg($call) if $mref;
2337         
2338         # broadcast to all other nodes that all the nodes connected to via me are gone
2339         unless ($pc39flag && $pc39flag == 2) {
2340                 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2341         }
2342
2343         # remove outstanding pings
2344         delete $pings{$call};
2345         
2346         # I was the last node visited
2347     $self->user->node($main::mycall);
2348
2349         # send info to all logged in thingies
2350         $self->tell_login('logoutn');
2351
2352         Log('DXProt', $call . " Disconnected");
2353
2354         $self->SUPER::disconnect;
2355 }
2356
2357
2358
2359 # send a talk message to this thingy
2360 #
2361 sub talk
2362 {
2363         my ($self, $from, $to, $via, $line, $origin) = @_;
2364         
2365         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
2366         $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2367         Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2368 }
2369
2370 # send it if it isn't the except list and isn't isolated and still has a hop count
2371 # taking into account filtering and so on
2372
2373 sub send_route
2374 {
2375         my $self = shift;
2376         my $origin = shift;
2377         my $generate = shift;
2378         my $no = shift;     # the no of things to filter on 
2379         my $routeit;
2380         my ($filter, $hops);
2381         my @rin;
2382         
2383         for (; @_ && $no; $no--) {
2384                 my $r = shift;
2385                 
2386                 if (!$self->{isolate} && $self->{routefilter}) {
2387                         $filter = undef;
2388                         if ($r) {
2389                                 ($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});
2390                                 if ($filter) {
2391                                         push @rin, $r;
2392                                 } else {
2393                                         dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2394                                 }
2395                         } else {
2396                                 dbg("was sent a null value") if isdbg('chanerr');
2397                         }
2398                 } else {
2399                         push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2400                 }
2401         }
2402         if (@rin) {
2403                 foreach my $line (&$generate(@rin, @_)) {
2404                         if ($hops) {
2405                                 $routeit = $line;
2406                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2407                         } else {
2408                                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
2409                                 next unless $routeit;
2410                         }
2411                         
2412                         $self->send($routeit);
2413                 }
2414         }
2415 }
2416
2417 sub broadcast_route
2418 {
2419         my $self = shift;
2420         my $origin = shift;
2421         my $generate = shift;
2422         my $line = shift;
2423         my @dxchan = DXChannel::get_all_nodes();
2424         my $dxchan;
2425         
2426         unless ($self->{isolate}) {
2427                 foreach $dxchan (@dxchan) {
2428                         next if $dxchan == $self;
2429                         next if $dxchan == $main::me;
2430                         next unless $dxchan->isa('DXProt');
2431                         next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2432  
2433                         $dxchan->send_route($origin, $generate, @_);
2434                 }
2435         }
2436 }
2437
2438 sub route_pc16
2439 {
2440         my $self = shift;
2441         return unless $self->user->wantpc16;
2442         my $origin = shift;
2443         my $line = shift;
2444         broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2445 }
2446
2447 sub route_pc17
2448 {
2449         my $self = shift;
2450         return unless $self->user->wantpc16;
2451         my $origin = shift;
2452         my $line = shift;
2453         broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2454 }
2455
2456 sub route_pc19
2457 {
2458         my $self = shift;
2459         my $origin = shift;
2460         my $line = shift;
2461         broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2462 }
2463
2464 sub route_pc21
2465 {
2466         my $self = shift;
2467         my $origin = shift;
2468         my $line = shift;
2469         broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2470 }
2471
2472 sub route_pc24
2473 {
2474         my $self = shift;
2475         my $origin = shift;
2476         my $line = shift;
2477         broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2478 }
2479
2480 sub route_pc41
2481 {
2482         my $self = shift;
2483         my $origin = shift;
2484         my $line = shift;
2485         broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2486 }
2487
2488 sub route_pc50
2489 {
2490         my $self = shift;
2491         my $origin = shift;
2492         my $line = shift;
2493         broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2494 }
2495
2496 sub in_filter_route
2497 {
2498         my $self = shift;
2499         my $r = shift;
2500         my ($filter, $hops) = (1, 1);
2501         
2502         if ($self->{inroutefilter}) {
2503                 ($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);
2504                 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2505         }
2506         return $filter;
2507 }
2508
2509 sub eph_dup
2510 {
2511         my $s = shift;
2512         my $t = shift || $eph_restime;
2513         my $r;
2514
2515         # chop the end off
2516         $s =~ s/\^H\d\d?\^?\~?$//;
2517         $r = 1 if exists $eph{$s};    # pump up the dup if it keeps circulating
2518         $eph{$s} = $main::systime + $t;
2519         dbg("PCPROT: emphemeral duplicate") if $r && isdbg('chanerr'); 
2520         return $r;
2521 }
2522
2523 sub eph_del_regex
2524 {
2525         my $regex = shift;
2526         my ($key, $val);
2527         while (($key, $val) = each %eph) {
2528                 if ($key =~ m{$regex}) {
2529                         delete $eph{$key};
2530                 }
2531         }
2532 }
2533
2534 sub eph_clean
2535 {
2536         my ($key, $val);
2537         
2538         while (($key, $val) = each %eph) {
2539                 if ($main::systime >= $val) {
2540                         delete $eph{$key};
2541                 }
2542         }
2543 }
2544
2545 sub eph_list
2546 {
2547         my ($key, $val);
2548         my @out;
2549
2550         while (($key, $val) = each %eph) {
2551                 push @out, $key, $val;
2552         }
2553         return @out;
2554 }
2555
2556 sub run_cmd
2557 {
2558         goto &DXCommandmode::run_cmd;
2559 }
2560
2561
2562 # import any msgs in the chat directory
2563 # the messages are sent to the chat group which forms the
2564 # the first part of the name (eg: solar.1243.txt would be
2565 # sent to chat group SOLAR)
2566
2567 # Each message found is sent: one non-blank line to one chat
2568 # message. So 4 lines = 4 chat messages.
2569
2570 # The special name LOCAL is for local users ANN
2571 # The special name ALL is for ANN/FULL
2572 # The special name SYSOP is for ANN/SYSOP
2573 #
2574 sub import_chat
2575 {
2576         # are there any to do in this directory?
2577         return unless -d $chatimportfn;
2578         unless (opendir(DIR, $chatimportfn)) {
2579                 dbg("can\'t open $chatimportfn $!") if isdbg('msg');
2580                 Log('msg', "can\'t open $chatimportfn $!");
2581                 return;
2582         } 
2583
2584         my @names = readdir(DIR);
2585         closedir(DIR);
2586         my $name;
2587         foreach $name (@names) {
2588                 next if $name =~ /^\./;
2589                 my $splitit = $name =~ /^split/;
2590                 my $fn = "$chatimportfn/$name";
2591                 next unless -f $fn;
2592                 unless (open(MSG, $fn)) {
2593                         dbg("can\'t open import file $fn $!") if isdbg('msg');
2594                         Log('msg', "can\'t open import file $fn $!");
2595                         unlink($fn);
2596                         next;
2597                 }
2598                 my @msg = map { s/\r?\n$//; $_ } <MSG>;
2599                 close(MSG);
2600                 unlink($fn);
2601
2602                 my @cat = split /\./, $name;
2603                 my $target = uc $cat[0];
2604
2605                 foreach my $text (@msg) {
2606                         next unless $text && $text !~ /^\s*#/;
2607                         if ($target eq 'ALL' || $target eq 'LOCAL' || $target eq 'SYSOP') {
2608                                 my $sysopflag = $target eq 'SYSOP' ? '*' : ' ';
2609                                 if ($target ne 'LOCAL') {
2610                                         send_announce($main::me, pc12($main::mycall, $text, '*', $sysopflag), $main::mycall, '*', $text, $sysopflag, $main::mycall, '0');
2611                                 } else {
2612                                         Log('ann', 'LOCAL', $main::mycall, $text);
2613                                         DXChannel::broadcast_list("To LOCAL de ${main::mycall}: $text\a", 'ann', undef, DXCommandmode->get_all());
2614                                 }
2615                         } else {
2616                                 my $msgid = nextchatmsgid();
2617                                 $text = "#$msgid $text";
2618                                 send_chat($main::me, pc12($main::mycall, $text, '*', $target), $main::mycall, '*', $text, $target, $main::mycall, '0');
2619                         }
2620                 }
2621         }
2622 }
2623
2624 1;
2625 __END__