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