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