fix the nasty feature in perl 5.6 with my $ref = $foo if $bar for
[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         $main::me = DXProt->new($main::mycall, 0, $user); 
218         $main::me->{here} = 1;
219         $main::me->{state} = "indifferent";
220         $main::me->{sort} = 'S';    # S for spider
221         $main::me->{priv} = 9;
222         $main::me->{metric} = 0;
223         $main::me->{pingave} = 0;
224         $main::me->{registered} = 1;
225         $main::me->{version} = $myprot_version + int ($main::version * 100);
226         $main::me->{build} = $main::build;
227         $main::me->{lastcf} = $main::me->{lasthello} = time;
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', 1) if $call ne $main::mycall;
242         return $self;
243 }
244
245 # this is how a pc connection starts (for an incoming connection)
246 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
247 # all the crap that comes between).
248 sub start
249 {
250         my ($self, $line, $sort) = @_;
251         my $call = $self->{call};
252         my $user = $self->{user};
253
254         # log it
255         my $host = $self->{conn}->{peerhost} || "unknown";
256         Log('DXProt', "$call connected from $host");
257         
258         # remember type of connection
259         $self->{consort} = $line;
260         $self->{outbound} = $sort eq 'O';
261         my $priv = $user->priv;
262         $priv = $user->priv(1) unless $priv;
263         $self->{priv} = $priv;     # other clusters can always be 'normal' users
264         $self->{lang} = $user->lang || 'en';
265         $self->{isolate} = $user->{isolate};
266         $self->{consort} = $line;       # save the connection type
267         $self->{here} = 1;
268         $self->{width} = 80;
269
270         # sort out registration
271         $self->{registered} = 1;
272
273         # get the output filters
274         $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
275         $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
276         $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
277         $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
278         $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
279
280
281         # get the INPUT filters (these only pertain to Clusters)
282         $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
283         $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
284         $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
285         $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
286         $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
287         
288         # set unbuffered and no echo
289         $self->send_now('B',"0");
290         $self->send_now('E',"0");
291         $self->conn->echo(0) if $self->conn->can('echo');
292         
293         # ping neighbour node stuff
294         my $ping = $user->pingint;
295         $ping = $pingint unless defined $ping;
296         $self->{pingint} = $ping;
297         $self->{nopings} = $user->nopings || $obscount;
298         $self->{pingtime} = [ ];
299         $self->{pingave} = 999;
300         $self->{metric} ||= 100;
301         $self->{lastping} = $main::systime;
302
303         # send initialisation string
304         unless ($self->{outbound}) {
305                 $self->sendinit;
306         }
307         
308         $self->state('init');
309         $self->{pc50_t} = $main::systime;
310
311         # ALWAYS output the hello
312         my $thing = Thingy::Hello->new(user => $call, h => $self->{here});
313         $thing->broadcast($self);
314         $self->lasthello($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         RouteDB::update($ncall, $self->{call});
701
702         # do we believe this call? 
703 #       unless ($ncall eq $self->{call} || $self->is_believed($ncall)) {
704 #               if (my $ivp = Investigate::get($ncall, $self->{call})) {
705 #                       $ivp->store_pcxx($pcno,$line,$origin,@_);
706 #               } else {
707 #                       dbg("PCPROT: We don't believe $ncall on $self->{call}") if isdbg('chanerr');
708 #               }
709 #               return;
710 #       }
711
712         if (eph_dup($line)) {
713                 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
714                 return;
715         }
716
717         my $parent = Route::Node::get($ncall); 
718
719         # if there is a parent, proceed, otherwise if there is a latent PC19 in the PC19list, 
720         # fix it up in the routing tables and issue it forth before the PC16
721         if ($parent) {
722                 $dxchan = $parent->dxchan;
723                 if ($dxchan && $dxchan ne $self) {
724                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
725                         return;
726                 }
727
728                 # input filter if required
729                 return unless $self->in_filter_route($parent);
730         } else {
731                 dbg("PCPROT: Node $ncall not in config") if isdbg('chanerr');
732                 return;
733         }
734
735         # is he under the control of the new protocol?
736 #       if ($parent && $parent->np) {
737 #               dbg("PCPROT: $ncall aranea node, ignored") if isdbg('chanerr');
738 #               return;
739 #       }
740                 
741         my $i;
742         my @rout;
743         for ($i = 2; $i < $#_; $i++) {
744                 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
745                 next unless $call && $conf && defined $here && is_callsign($call);
746                 next if $call eq $main::mycall;
747                 
748                 eph_del_regex("^PC17\\^$call\\^$ncall");
749                 
750                 $conf = $conf eq '*';
751                 
752                 # reject this if we think it is a node already
753                 my $r = Route::Node::get($call);
754                 my $u = DXUser->get_current($call) unless $r;
755                 if ($r || ($u && $u->is_node)) {
756                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
757                         next;
758                 }
759                 
760                 $r = Route::User::get($call);
761                 my $flags = $here;
762                 
763                 if ($r) {
764                         my $au = $r->addparent($parent);                                        
765                         if ($r->flags != $flags) {
766                                 $r->flags($flags);
767                                 $au = $r;
768                         }
769                         push @rout, $r if $au;
770                 } else {
771                         push @rout, $parent->add_user($call, $flags);
772                 }
773                 
774                 
775                 # add this station to the user database, if required
776                 $call =~ s/-\d+$//o;    # remove ssid for users
777                 my $user = DXUser->get_current($call);
778                 $user = DXUser->new($call) if !$user;
779                 $user->homenode($parent->call) if !$user->homenode;
780                 $user->node($parent->call);
781                 $user->lastin($main::systime) unless DXChannel::get($call);
782                 $user->put;
783         }
784         $self->route_pc16($origin, $line, $parent, @rout) if @rout && (DXChannel::get($parent->call) || $parent->np);
785 }
786                 
787 # remove a user
788 sub handle_17
789 {
790         my $self = shift;
791         my $pcno = shift;
792         my $line = shift;
793         my $origin = shift;
794         my $dxchan;
795         my $ncall = $_[2];
796         my $ucall = $_[1];
797
798         eph_del_regex("^PC16\\^$ncall.*$ucall");
799                         
800         # do I want users from this channel?
801         unless ($self->user->wantpc16) {
802                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
803                 return;
804         }
805         if ($ncall eq $main::mycall) {
806                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
807                 return;
808         }
809
810         RouteDB::delete($ncall, $self->{call});
811
812         # do we believe this call? 
813 #       unless ($ncall eq $self->{call} || $self->is_believed($ncall)) {
814 #               if (my $ivp = Investigate::get($ncall, $self->{call})) {
815 #                       $ivp->store_pcxx($pcno,$line,$origin,@_);
816 #               } else {
817 #                       dbg("PCPROT: We don't believe $ncall on $self->{call}") if isdbg('chanerr');
818 #               }
819 #               return;
820 #       }
821
822         my $uref = Route::User::get($ucall);
823         unless ($uref) {
824                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
825                 return;
826         }
827         my $parent = Route::Node::get($ncall);
828         unless ($parent) {
829                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
830                 return;
831         }                       
832
833         $dxchan = $parent->dxchan;
834         if ($dxchan && $dxchan ne $self) {
835                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
836                 return;
837         }
838
839         # is he under the control of the new protocol?
840 #       if ($parent && $parent->np) {
841 #               dbg("PCPROT: $ncall aranea node, ignored") if isdbg('chanerr');
842 #               return;
843 #       }
844
845         # input filter if required and then remove user if present
846         if ($parent && !$parent->np) {
847 #               return unless $self->in_filter_route($parent);  
848                 $parent->del_user($uref) if $uref;
849         } 
850
851         if (eph_dup($line)) {
852                 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
853                 return;
854         }
855
856         $self->route_pc17($origin, $line, $parent, $uref) if (DXChannel::get($parent->call) || $parent->np);
857 }
858                 
859 # link request
860 sub handle_18
861 {
862         my $self = shift;
863         my $pcno = shift;
864         my $line = shift;
865         my $origin = shift;
866         $self->state('init');   
867
868         # record the type and version offered
869         if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
870                 $self->version(0 + $1);
871                 $self->user->version(0 + $1);
872                 $self->build(0 + $2);
873                 $self->user->build(0 + $2);
874                 unless ($self->is_spider) {
875                         $self->user->sort('S');
876                         $self->user->put;
877                         $self->sort('S');
878                 }
879         } else {
880                 $self->version(50.0);
881                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
882                 $self->user->version($self->version);
883         }
884
885         # first clear out any nodes on this dxchannel
886         my $parent = Route::Node::get($origin);
887         my @rout = $parent->del_nodes;
888         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
889         $self->send_local_config();
890         $self->send(pc20());
891 }
892                 
893 # incoming cluster list
894 sub handle_19
895 {
896         my $self = shift;
897         my $pcno = shift;
898         my $line = shift;
899         my $origin = shift;
900
901         my $i;
902         my $newline = "PC19^";
903
904         # new routing list
905         my @rout;
906
907         # first get the INTERFACE node
908         my $parent = Route::Node::get($origin);
909         unless ($parent) {
910                 dbg("DXPROT: my parent $origin has disappeared");
911                 $self->disconnect;
912                 return;
913         }
914
915         # parse the PC19
916         for ($i = 1; $i < $#_-1; $i += 4) {
917                 my $here = $_[$i];
918                 my $call = uc $_[$i+1];
919                 my $conf = $_[$i+2];
920                 my $ver = $_[$i+3];
921                 next unless defined $here && defined $conf && is_callsign($call);
922
923                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
924                                 
925                 # check for sane parameters
926                 #                               $ver = 5000 if $ver eq '0000';
927                 next unless $ver > 5000;        # only works with version 5 software that isn't a passive node
928                 next if length $call < 3; # min 3 letter callsigns
929                 next if $call eq $main::mycall;
930
931                 # check that this PC19 isn't trying to alter the wrong dxchan
932                 my $dxchan = DXChannel::get($call);
933                 if ($dxchan && $dxchan != $self) {
934                         dbg("PCPROT: PC19 from $origin trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
935                         next;
936                 }
937
938                 # add this station to the user database, if required (don't remove SSID from nodes)
939                 my $user = DXUser->get_current($call);
940                 if (!$user) {
941                         $user = DXUser->new($call);
942                         $user->priv(1);         # I have relented and defaulted nodes
943                         $user->lockout(1);
944                         $user->homenode($call);
945                         $user->node($call);
946                 }
947                 $user->sort('A') unless $user->is_node;
948
949                 RouteDB::update($call, $origin);
950
951                 my $genline = "PC19^$here^$call^$conf^$ver^$_[-1]^"; 
952                 if (eph_dup($genline)) {
953                         dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
954                         next;
955                 }
956
957                 my $r = Route::Node::get($call);
958                 my $flags = $here;
959
960                 # is he under the control of the new protocol and not my interface call?
961                 if ($call ne $origin && $r && $r->np) {
962                         dbg("PCPROT: $call aranea node, ignored") if isdbg('chanerr');
963                         next;
964                 }
965                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
966                 if ($r) {
967                         my $ar;
968                         if ($call ne $parent->call) {
969                                 if ($self->in_filter_route($r)) {
970                                         $ar = $parent->add($call, $ver, $flags);
971                                         push @rout, $ar if $ar;
972                                 } else {
973                                         next;
974                                 }
975                         } else {
976                                 if ($r->version != $ver || $r->flags != $flags) {
977                                         $r->version($ver);
978                                         $r->flags($flags);
979                                         push @rout, $r;
980                                 }
981                         }
982                 } else {
983
984                         # if he is directly connected or allowed then add him, otherwise store him up for later
985                         if ($call eq $origin || $user->wantroutepc19) {
986                                 my $new = Route->new($call); # throw away
987                                 if ($self->in_filter_route($new)) {
988                                         my $ar = $parent->add($call, $ver, $flags);
989                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
990                                         push @rout, $ar if $ar;
991                                 } else {
992                                         next;
993                                 }
994                         }
995                 }
996
997                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
998                 my $mref = DXMsg::get_busy($call);
999                 $mref->stop_msg($call) if $mref;
1000                                 
1001                 $user->lastin($main::systime) unless DXChannel::get($call);
1002                 $user->put;
1003         }
1004
1005         # we only output information that we regard as reliable
1006         @rout = grep {$_ && (DXChannel::get($_->{call}) || $_->np) } @rout;
1007         $self->route_pc19($origin, $line, @rout) if @rout;
1008 }
1009                 
1010 # send local configuration
1011 sub handle_20
1012 {
1013         my $self = shift;
1014         my $pcno = shift;
1015         my $line = shift;
1016         my $origin = shift;
1017         $self->send_local_config();
1018         $self->send(pc22());
1019         $self->state('normal');
1020         $self->{lastping} = 0;
1021         my $thing = Thingy::Rt->new(user=>$self->{call});
1022         my $nref = Route::Node::get($self->{call});
1023         $thing->copy_pc16_data($nref);
1024         $thing->broadcast($self);
1025         $self->lastcf($main::systime);
1026 }
1027                 
1028 # delete a cluster from the list
1029 sub handle_21
1030 {
1031         my $self = shift;
1032         my $pcno = shift;
1033         my $line = shift;
1034         my $origin = shift;
1035         my $call = uc $_[1];
1036
1037         eph_del_regex("^PC1[679].*$call");
1038                         
1039         # if I get a PC21 from the same callsign as self then treat it
1040         # as a PC39: I have gone away
1041         if ($call eq $self->call) {
1042                 $self->disconnect(1);
1043                 return;
1044         }
1045
1046         RouteDB::delete($call, $origin);
1047
1048         # check if we believe this
1049 #       unless ($call eq $origin || $self->is_believed($call)) {
1050 #               if (my $ivp = Investigate::get($call, $origin)) {
1051 #                       $ivp->store_pcxx($pcno,$line,$origin,@_);
1052 #               } else {
1053 #                       dbg("PCPROT: We don't believe $call on $origin") if isdbg('chanerr');
1054 #               }
1055 #               return;
1056 #       }
1057
1058         # check to see if we are in the pc19list, if we are then don't bother with any of
1059         # this routing table manipulation, just remove it from the list and dump it
1060         my @rout;
1061
1062         my $parent = Route::Node::get($origin);
1063         unless ($parent) {
1064                 dbg("DXPROT: my parent $origin has disappeared");
1065                 $self->disconnect;
1066                 return;
1067         }
1068         if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1069                 my $node = Route::Node::get($call);
1070                 if ($node) {
1071                         
1072                         my $dxchan = DXChannel::get($call);
1073                         if ($dxchan && $dxchan != $self) {
1074                                 dbg("PCPROT: PC21 from $origin trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1075                                 return;
1076                         }
1077                         
1078                         # input filter it
1079                         return unless $self->in_filter_route($node);
1080                         
1081                         # is he under the control of the new protocol?
1082                         if ($node->np) {
1083                                 dbg("PCPROT: $call aranea node, ignored") if isdbg('chanerr');
1084                                 return;
1085                         }
1086                         
1087                         # routing objects
1088                         push @rout, $node->del($parent);
1089                 }
1090         } else {
1091                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1092                 return;
1093         }
1094
1095         @rout = grep {$_ && (DXChannel::get($_->{call}) || $_->np) } @rout;
1096         $self->route_pc21($origin, $line, @rout) if @rout;
1097 }
1098                 
1099
1100 sub handle_22
1101 {
1102         my $self = shift;
1103         my $pcno = shift;
1104         my $line = shift;
1105         my $origin = shift;
1106         $self->state('normal');
1107         $self->{lastping} = 0;
1108         my $thing = Thingy::Rt->new(user=>$self->{call});
1109         my $nref = Route::Node::get($self->{call});
1110         $thing->copy_pc16_data($nref);
1111         $thing->broadcast($self);
1112         $self->lastcf($main::systime);
1113 }
1114                                 
1115 # WWV info
1116 sub handle_23
1117 {
1118         my $self = shift;
1119         my $pcno = shift;
1120         my $line = shift;
1121         my $origin = shift;
1122                         
1123         # route foreign' pc27s 
1124         if ($pcno == 27) {
1125                 if ($_[8] ne $main::mycall) {
1126                         $self->route($_[8], $line);
1127                         return;
1128                 }
1129         }
1130
1131         # only do a rspf check on PC23 (not 27)
1132         if ($pcno == 23) {
1133                 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
1134         }
1135
1136         # do some de-duping
1137         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1138         my $sfi = unpad($_[3]);
1139         my $k = unpad($_[4]);
1140         my $i = unpad($_[5]);
1141         my ($r) = $_[6] =~ /R=(\d+)/;
1142         $r = 0 unless $r;
1143         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1144                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1145                 return;
1146         }
1147         if (Geomag::dup($d,$sfi,$k,$i,$_[6])) {
1148                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1149                 return;
1150         }
1151         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
1152                 
1153         my $wwv = Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1154
1155         my $rep;
1156         eval {
1157                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1158         };
1159         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1160         return if $rep;
1161
1162         # DON'T be silly and send on PC27s!
1163         return if $pcno == 27;
1164
1165         # broadcast to the eager world
1166         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1167 }
1168                 
1169 # set here status
1170 sub handle_24
1171 {
1172         my $self = shift;
1173         my $pcno = shift;
1174         my $line = shift;
1175         my $origin = shift;
1176         my $call = uc $_[1];
1177         my ($nref, $uref);
1178         $nref = Route::Node::get($call);
1179         $uref = Route::User::get($call);
1180         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1181                         
1182         if (eph_dup($line)) {
1183                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1184                 return;
1185         }
1186         
1187         $nref->here($_[2]) if $nref;
1188         $uref->here($_[2]) if $uref;
1189         my $ref = $nref || $uref;
1190         return unless $self->in_filter_route($ref);
1191
1192         $self->route_pc24($origin, $line, $ref, $_[3]);
1193 }
1194                 
1195 # merge request
1196 sub handle_25
1197 {
1198         my $self = shift;
1199         my $pcno = shift;
1200         my $line = shift;
1201         my $origin = shift;
1202         if ($_[1] ne $main::mycall) {
1203                 $self->route($_[1], $line);
1204                 return;
1205         }
1206         if ($_[2] eq $main::mycall) {
1207                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1208                 return;
1209         }
1210
1211         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1212                         
1213         # spots
1214         if ($_[3] > 0) {
1215                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1216                 my $in;
1217                 foreach $in (@in) {
1218                         $self->send(pc26(@{$in}[0..4], $_[2]));
1219                 }
1220         }
1221
1222         # wwv
1223         if ($_[4] > 0) {
1224                 my @in = reverse Geomag::search(0, $_[4], time, 1);
1225                 my $in;
1226                 foreach $in (@in) {
1227                         $self->send(pc27(@{$in}[0..5], $_[2]));
1228                 }
1229         }
1230 }
1231
1232 sub handle_26 {goto &handle_11}
1233 sub handle_27 {goto &handle_23}
1234
1235 # mail/file handling
1236 sub handle_28
1237 {
1238         my $self = shift;
1239         my $pcno = shift;
1240         my $line = shift;
1241         my $origin = shift;
1242         if ($_[1] eq $main::mycall) {
1243                 no strict 'refs';
1244                 my $sub = "DXMsg::handle_$pcno";
1245                 &$sub($self, @_);
1246         } else {
1247                 $self->route($_[1], $line) unless $self->is_clx;
1248         }
1249 }
1250
1251 sub handle_29 {goto &handle_28}
1252 sub handle_30 {goto &handle_28}
1253 sub handle_31 {goto &handle_28}
1254 sub handle_32 {goto &handle_28}
1255 sub handle_33 {goto &handle_28}
1256                 
1257 sub handle_34
1258 {
1259         my $self = shift;
1260         my $pcno = shift;
1261         my $line = shift;
1262         my $origin = shift;
1263         if (eph_dup($line, $eph_pc34_restime)) {
1264                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1265         } else {
1266                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1267         }
1268 }
1269                 
1270 # remote command replies
1271 sub handle_35
1272 {
1273         my $self = shift;
1274         my $pcno = shift;
1275         my $line = shift;
1276         my $origin = shift;
1277         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1278         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1279 }
1280                 
1281 sub handle_36 {goto &handle_34}
1282
1283 # database stuff
1284 sub handle_37
1285 {
1286         my $self = shift;
1287         my $pcno = shift;
1288         my $line = shift;
1289         my $origin = shift;
1290         if ($_[1] eq $main::mycall) {
1291                 no strict 'refs';
1292                 my $sub = "DXDb::handle_$pcno";
1293                 &$sub($self, @_);
1294         } else {
1295                 $self->route($_[1], $line) unless $self->is_clx;
1296         }
1297 }
1298
1299 # node connected list from neighbour
1300 sub handle_38
1301 {
1302         my $self = shift;
1303         my $pcno = shift;
1304         my $line = shift;
1305         my $origin = shift;
1306 }
1307                 
1308 # incoming disconnect
1309 sub handle_39
1310 {
1311         my $self = shift;
1312         my $pcno = shift;
1313         my $line = shift;
1314         my $origin = shift;
1315         if ($_[1] eq $origin) {
1316                 $self->disconnect(1);
1317         } else {
1318                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1319         }
1320 }
1321
1322 sub handle_40 {goto &handle_28}
1323                 
1324 # user info
1325 sub handle_41
1326 {
1327         my $self = shift;
1328         my $pcno = shift;
1329         my $line = shift;
1330         my $origin = shift;
1331         my $call = $_[1];
1332
1333         my $l = $line;
1334         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1335         if (eph_dup($l, $eph_info_restime)) {
1336                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1337                 return;
1338         }
1339                         
1340         # input filter if required
1341         #                       my $ref = Route::get($call) || Route->new($call);
1342         #                       return unless $self->in_filter_route($ref);
1343
1344         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1345                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1346                 return;
1347         }
1348
1349         # add this station to the user database, if required
1350         my $user = DXUser->get_current($call);
1351         $user = DXUser->new($call) unless $user;
1352                         
1353         if ($_[2] == 1) {
1354                 $user->name($_[3]);
1355         } elsif ($_[2] == 2) {
1356                 $user->qth($_[3]);
1357         } elsif ($_[2] == 3) {
1358                 if (is_latlong($_[3])) {
1359                         my ($lat, $long) = DXBearing::stoll($_[3]);
1360                         $user->lat($lat);
1361                         $user->long($long);
1362                         $user->qra(DXBearing::lltoqra($lat, $long));
1363                 } else {
1364                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1365                         return;
1366                 }
1367         } elsif ($_[2] == 4) {
1368                 $user->homenode($_[3]);
1369         } elsif ($_[2] == 5) {
1370                 if (is_qra(uc $_[3])) {
1371                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1372                         $user->lat($lat);
1373                         $user->long($long);
1374                         $user->qra(uc $_[3]);
1375                 } else {
1376                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1377                         return;
1378                 }
1379         }
1380         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1381         $user->put;
1382
1383         unless ($self->{isolate}) {
1384                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1385         }
1386
1387         #  perhaps this IS what we want after all
1388         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1389 }
1390
1391 sub handle_42 {goto &handle_28}
1392
1393
1394 # database
1395 sub handle_44 {goto &handle_37}
1396 sub handle_45 {goto &handle_37}
1397 sub handle_46 {goto &handle_37}
1398 sub handle_47 {goto &handle_37}
1399 sub handle_48 {goto &handle_37}
1400                 
1401 # message and database
1402 sub handle_49
1403 {
1404         my $self = shift;
1405         my $pcno = shift;
1406         my $line = shift;
1407         my $origin = shift;
1408
1409         if (eph_dup($line)) {
1410                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1411                 return;
1412         }
1413         
1414         if ($_[1] eq $main::mycall) {
1415                 DXMsg::handle_49($self, @_);
1416         } else {
1417                 $self->route($_[1], $line) unless $self->is_clx;
1418         }
1419 }
1420
1421 # keep alive/user list
1422 sub handle_50
1423 {
1424         my $self = shift;
1425         my $pcno = shift;
1426         my $line = shift;
1427         my $origin = shift;
1428
1429         my $call = $_[1];
1430
1431         RouteDB::update($call, $origin);
1432
1433         my $node = Route::Node::get($call);
1434         if ($node) {
1435                 return unless $node->call eq $origin;
1436                 $node->usercount($_[2]);
1437
1438                 # input filter if required
1439                 return unless $self->in_filter_route($node);
1440
1441                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1442         }
1443 }
1444                 
1445 # incoming ping requests/answers
1446 sub handle_51
1447 {
1448         my $self = shift;
1449         my $pcno = shift;
1450         my $line = shift;
1451         my $origin = shift;
1452
1453         if (eph_dup($line, 60)) {
1454                 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1455                 return;
1456         }
1457
1458         my $thing = Thingy::Ping->new(origin=>$main::mycall);
1459         $thing->from_DXProt($self, $line, @_);
1460         $thing->handle($self);
1461 }
1462
1463 # dunno but route it
1464 sub handle_75
1465 {
1466         my $self = shift;
1467         my $pcno = shift;
1468         my $line = shift;
1469         my $origin = shift;
1470         my $call = $_[1];
1471         if ($call ne $main::mycall) {
1472                 $self->route($call, $line);
1473         }
1474 }
1475
1476 # WCY broadcasts
1477 sub handle_73
1478 {
1479         my $self = shift;
1480         my $pcno = shift;
1481         my $line = shift;
1482         my $origin = shift;
1483         my $call = $_[1];
1484                         
1485         # do some de-duping
1486         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1487         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1488                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1489                 return;
1490         }
1491         @_ = map { unpad($_) } @_;
1492         if (WCY::dup($d)) {
1493                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1494                 return;
1495         }
1496                 
1497         my $wcy = WCY::update($d, @_[2..12]);
1498
1499         my $rep;
1500         eval {
1501                 $rep = Local::wcy($self, @_[1..12]);
1502         };
1503         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1504         return if $rep;
1505
1506         # broadcast to the eager world
1507         send_wcy_spot($self, $line, $d, @_[2..12]);
1508 }
1509
1510 # remote commands (incoming)
1511 sub handle_84
1512 {
1513         my $self = shift;
1514         my $pcno = shift;
1515         my $line = shift;
1516         my $origin = shift;
1517         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1518 }
1519
1520 # remote command replies
1521 sub handle_85
1522 {
1523         my $self = shift;
1524         my $pcno = shift;
1525         my $line = shift;
1526         my $origin = shift;
1527         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1528 }
1529
1530 # if get here then rebroadcast the thing with its Hop count decremented (if
1531 # there is one). If it has a hop count and it decrements to zero then don't
1532 # rebroadcast it.
1533 #
1534 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1535 #        REBROADCAST!!!!
1536 #
1537
1538 sub handle_default
1539 {
1540         my $self = shift;
1541         my $pcno = shift;
1542         my $line = shift;
1543         my $origin = shift;
1544
1545         if (eph_dup($line)) {
1546                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1547         } else {
1548                 unless ($self->{isolate}) {
1549                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1550                 }
1551         }
1552 }
1553
1554 #
1555 # This is called from inside the main cluster processing loop and is used
1556 # for despatching commands that are doing some long processing job
1557 #
1558 sub process
1559 {
1560         my $t = time;
1561         my @dxchan = DXChannel::get_all();
1562         my $dxchan;
1563         my $pc50s;
1564         
1565         # send out a pc50 on EVERY channel all at once
1566         if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1567                 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1568                 eph_dup($pc50s);
1569                 $last_pc50 = $t;
1570         }
1571
1572         foreach $dxchan (@dxchan) {
1573                 next unless $dxchan->is_node();
1574                 next if $dxchan == $main::me;
1575
1576                 # send the pc50
1577                 $dxchan->send($pc50s) if $pc50s;
1578                 
1579                 # send a ping out on this channel
1580                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1581                         if ($dxchan->{nopings} <= 0) {
1582                                 $dxchan->disconnect;
1583                         } else {
1584                                 addping($main::mycall, $dxchan->call);
1585                                 $dxchan->{nopings} -= 1;
1586                                 $dxchan->{lastping} = $t;
1587                         }
1588                 }
1589         }
1590
1591 #       Investigate::process();
1592
1593         # every ten seconds
1594         if ($t - $last10 >= 10) {       
1595                 # clean out ephemera 
1596
1597                 eph_clean();
1598                 import_chat();
1599                 
1600
1601                 $last10 = $t;
1602         }
1603         
1604         if ($main::systime - 3600 > $last_hour) {
1605                 $last_hour = $main::systime;
1606         }
1607 }
1608
1609 #
1610 # finish up a pc context
1611 #
1612
1613 #
1614 # some active measures
1615 #
1616
1617
1618 sub send_prot_line
1619 {
1620         my ($self, $filter, $hops, $isolate, $line) = @_;
1621         my $routeit;
1622
1623
1624         if ($hops) {
1625                 $routeit = $line;
1626                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1627         } else {
1628                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
1629                 return unless $routeit;
1630         }
1631         if ($filter) {
1632                 $self->send($routeit);
1633         } else {
1634                 $self->send($routeit) unless $self->{isolate} || $isolate;
1635         }
1636 }
1637
1638
1639 sub send_wwv_spot
1640 {
1641         my $self = shift;
1642         my $line = shift;
1643         my @dxchan = DXChannel::get_all();
1644         my $dxchan;
1645         my @dxcc = ((Prefix::cty_data($_[6]))[0..2], (Prefix::cty_data($_[7]))[0..2]);
1646
1647         # send it if it isn't the except list and isn't isolated and still has a hop count
1648         # taking into account filtering and so on
1649         foreach $dxchan (@dxchan) {
1650                 next if $dxchan == $main::me;
1651                 next if $dxchan == $self && $self->is_node;
1652                 my $routeit;
1653                 my ($filter, $hops);
1654
1655                 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1656         }
1657 }
1658
1659 sub wwv
1660 {
1661         my $self = shift;
1662         my $line = shift;
1663         my $isolate = shift;
1664         my ($filter, $hops);
1665         
1666         if ($self->{wwvfilter}) {
1667                 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1668                 return unless $filter;
1669         }
1670         send_prot_line($self, $filter, $hops, $isolate, $line)
1671 }
1672
1673 sub send_wcy_spot
1674 {
1675         my $self = shift;
1676         my $line = shift;
1677         my @dxchan = DXChannel::get_all();
1678         my $dxchan;
1679         my @dxcc = ((Prefix::cty_data($_[10]))[0..2], (Prefix::cty_data($_[11]))[0..2]);
1680         
1681         # send it if it isn't the except list and isn't isolated and still has a hop count
1682         # taking into account filtering and so on
1683         foreach $dxchan (@dxchan) {
1684                 next if $dxchan == $main::me;
1685                 next if $dxchan == $self;
1686
1687                 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1688         }
1689 }
1690
1691 sub wcy
1692 {
1693         my $self = shift;
1694         my $line = shift;
1695         my $isolate = shift;
1696         my ($filter, $hops);
1697
1698         if ($self->{wcyfilter}) {
1699                 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1700                 return unless $filter;
1701         }
1702         send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1703 }
1704
1705 # send an announce
1706 sub send_announce
1707 {
1708         my $self = shift;
1709         my $line = shift;
1710         my @dxchan = DXChannel::get_all();
1711         my $dxchan;
1712         my $target;
1713         my $to = 'To ';
1714         my $text = unpad($_[2]);
1715                                 
1716         if ($_[3] eq '*') {     # sysops
1717                 $target = "SYSOP";
1718         } elsif ($_[3] gt ' ') { # speciality list handling
1719                 my ($name) = split /\./, $_[3]; 
1720                 $target = "$name"; # put the rest in later (if bothered) 
1721         } 
1722         
1723         if ($_[5] eq '1') {
1724                 $target = "WX"; 
1725                 $to = '';
1726         }
1727         $target = "ALL" if !$target;
1728
1729
1730         # obtain country codes etc 
1731         my @a = Prefix::cty_data($_[0]);
1732         my @b = Prefix::cty_data($_[4]);
1733         if ($self->{inannfilter}) {
1734                 my ($filter, $hops) = 
1735                         $self->{inannfilter}->it(@_, $self->{call}, 
1736                                                                          @a[0..2],
1737                                                                          @b[0..2], $a[3], $b[3]);
1738                 unless ($filter) {
1739                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1740                         return;
1741                 }
1742         }
1743
1744         if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1745                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1746                 return;
1747         }
1748
1749         Log('ann', $target, $_[0], $text);
1750
1751         # send it if it isn't the except list and isn't isolated and still has a hop count
1752         # taking into account filtering and so on
1753         foreach $dxchan (@dxchan) {
1754                 next if $dxchan == $main::me;
1755                 next if $dxchan == $self && $self->is_node;
1756                 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call},
1757                                                   @a[0..2], @b[0..2]);
1758         }
1759 }
1760
1761 my $msgid = 0;
1762
1763 sub nextchatmsgid
1764 {
1765         $msgid++;
1766         $msgid = 1 if $msgid > 999;
1767         return $msgid;
1768 }
1769
1770 # send a chat line
1771 sub send_chat
1772 {
1773         my $self = shift;
1774         my $line = shift;
1775         my @dxchan = DXChannel::get_all();
1776         my $dxchan;
1777         my $target = $_[3];
1778         my $text = unpad($_[2]);
1779         my $ak1a_line;
1780                                 
1781         # munge the group and recast the line if required
1782         if ($target =~ s/\.LST$//) {
1783                 $ak1a_line = $line;
1784         }
1785         
1786         # obtain country codes etc 
1787         my @a = Prefix::cty_data($_[0]);
1788         my @b = Prefix::cty_data($_[4]);
1789         if ($self->{inannfilter}) {
1790                 my ($filter, $hops) = 
1791                         $self->{inannfilter}->it(@_, $self->{call}, 
1792                                                                          @a[0..2],
1793                                                                          @b[0..2], $a[3], $b[3]);
1794                 unless ($filter) {
1795                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1796                         return;
1797                 }
1798         }
1799
1800         if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
1801                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1802                 return;
1803         }
1804
1805
1806         Log('chat', $target, $_[0], $text);
1807
1808         # send it if it isn't the except list and isn't isolated and still has a hop count
1809         # taking into account filtering and so on
1810         foreach $dxchan (@dxchan) {
1811                 my $is_ak1a = $dxchan->is_ak1a;
1812                 
1813                 if ($dxchan->is_node) {
1814                         next if $dxchan == $main::me;
1815                         next if $dxchan == $self;
1816                         next unless $dxchan->is_spider || $is_ak1a;
1817                         next if $target eq 'LOCAL';
1818                         if (!$ak1a_line && $is_ak1a) {
1819                                 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
1820                         }
1821                 }
1822                 
1823                 $dxchan->chat($is_ak1a ? $ak1a_line : $line, $self->{isolate}, $target, $_[1], 
1824                                           $text, @_, $self->{call}, @a[0..2], @b[0..2]);
1825         }
1826 }
1827
1828 sub announce
1829 {
1830         my $self = shift;
1831         my $line = shift;
1832         my $isolate = shift;
1833         my $to = shift;
1834         my $target = shift;
1835         my $text = shift;
1836         my ($filter, $hops);
1837
1838         if ($self->{annfilter}) {
1839                 ($filter, $hops) = $self->{annfilter}->it(@_);
1840                 return unless $filter;
1841         }
1842         send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
1843 }
1844
1845 sub chat
1846 {
1847         goto &announce;
1848 }
1849
1850
1851 sub send_local_config
1852 {
1853         my $self = shift;
1854         my $node;
1855         my @nodes;
1856         my @localnodes;
1857         my @remotenodes;
1858
1859         dbg('DXProt::send_local_config') if isdbg('trace');
1860         
1861         # send our nodes
1862         if ($self->{isolate}) {
1863                 @localnodes = ( $main::routeroot );
1864                 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
1865         } else {
1866                 # create a list of all the nodes that are not connected to this connection
1867                 # and are not themselves isolated, this to make sure that isolated nodes
1868         # don't appear outside of this node
1869
1870                 # send locally connected nodes
1871                 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && ($_->is_node || $_->is_aranea) } DXChannel::get_all();
1872                 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
1873                 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
1874
1875                 my $node;
1876                 my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
1877                 my @intcalls;
1878                 for $node (@rawintcalls) {
1879                         push @intcalls, $node unless grep $node eq $_, @intcalls; 
1880                 }
1881                 my $ref = Route::Node::get($self->{call});
1882                 my @rnodes = $ref->nodes;
1883                 for $node (@intcalls) {
1884                         push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
1885                 }
1886                 @remotenodes = grep {$_ && (DXChannel::get($_->{call}) || $_->np) } @remotenodes;
1887                 $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
1888         }
1889         
1890         # get all the users connected on the above nodes and send them out
1891         foreach $node ($main::routeroot, @localnodes, @remotenodes) {
1892                 if ($node) {
1893                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
1894                         $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
1895                 } else {
1896                         dbg("sent a null value") if isdbg('chanerr');
1897                 }
1898         }
1899 }
1900
1901 #
1902 # route a message down an appropriate interface for a callsign
1903 #
1904 # is called route(to, pcline);
1905 #
1906
1907 sub route
1908 {
1909         my ($self, $call, $line) = @_;
1910
1911         if (ref $self && $call eq $self->{call}) {
1912                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1913                 return;
1914         }
1915
1916         # always send it down the local interface if available
1917         my $dxchan = DXChannel::get($call);
1918         if ($dxchan) {
1919                 dbg("route: $call -> $dxchan->{call} direct" ) if isdbg('route');
1920         } else {
1921                 my $cl = Route::get($call);
1922                 $dxchan = $cl->dxchan if $cl;
1923                 if (ref $dxchan) {
1924                         if (ref $self && $dxchan eq $self) {
1925                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1926                                 return;
1927                         }
1928                         dbg("route: $call -> $dxchan->{call} using normal route" ) if isdbg('route');
1929                 }
1930         }
1931
1932         # try the backstop method
1933         unless ($dxchan) {
1934                 my $rcall = RouteDB::get($call);
1935                 if ($rcall) {
1936                         if ($self && $rcall eq $self->{call}) {
1937                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1938                                 return;
1939                         }
1940                         $dxchan = DXChannel::get($rcall);
1941                         dbg("route: $call -> $rcall using RouteDB" ) if isdbg('route') && $dxchan;
1942                 }
1943         }
1944
1945         if ($dxchan) {
1946                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
1947                 if ($routeit) {
1948                         $dxchan->send($routeit) unless $dxchan == $main::me;
1949                 }
1950         } else {
1951                 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
1952         }
1953 }
1954
1955 #
1956 # obtain the hops from the list for this callsign and pc no 
1957 #
1958
1959 sub get_hops
1960 {
1961         my $pcno = shift;
1962         my $hops = $DXProt::hopcount{$pcno};
1963         $hops = $DXProt::def_hopcount if !$hops;
1964         return "H$hops";       
1965 }
1966
1967
1968 # adjust the hop count on a per node basis using the user loadable 
1969 # hop table if available or else decrement an existing one
1970 #
1971
1972 sub adjust_hops
1973 {
1974         my $self = shift;
1975         my $s = shift;
1976         my $call = $self->{call};
1977         my $hops;
1978         
1979         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
1980                 my ($pcno) = $s =~ /^PC(\d\d)/o;
1981                 confess "$call called adjust_hops with '$s'" unless $pcno;
1982                 my $ref = $nodehops{$call} if %nodehops;
1983                 if ($ref) {
1984                         my $newhops = $ref->{$pcno};
1985                         return "" if defined $newhops && $newhops == 0;
1986                         $newhops = $ref->{default} unless $newhops;
1987                         return "" if defined $newhops && $newhops == 0;
1988                         $newhops = $hops if !$newhops;
1989                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
1990                 } else {
1991                         # simply decrement it
1992 #                       $hops--;               this is done on receipt now
1993                         return "" if !$hops;
1994                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
1995                 }
1996         }
1997         return $s;
1998 }
1999
2000
2001 # load hop tables
2002 #
2003 sub load_hops
2004 {
2005         my $self = shift;
2006         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2007         do "$main::data/hop_table.pl";
2008         return $@ if $@;
2009         return ();
2010 }
2011
2012
2013 # add a ping request to the ping queues
2014 sub addping
2015 {
2016         my ($from, $to, $via) = @_;
2017         my $thing = Thingy::Ping->new_ping($from eq $main::mycall ? () : (user=>$from), $via ? (touser=> $to, group => $via) : (group => $to));
2018         $thing->remember;
2019         $thing->broadcast;
2020 }
2021
2022 sub process_rcmd
2023 {
2024         my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2025         if ($tonode eq $main::mycall) {
2026                 my $ref = DXUser->get_current($fromnode);
2027                 my $cref = Route::Node::get($fromnode);
2028                 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2029                 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2030                         if ($ref->{priv}) {             # you have to have SOME privilege, the commands have further filtering
2031                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2032                                 my $oldpriv = $self->{priv};
2033                                 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2034                                 my @in = (DXCommandmode::run_cmd($self, $cmd));
2035                                 $self->{priv} = $oldpriv;
2036                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2037                                 delete $self->{remotecmd};
2038                         } else {
2039                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2040                         }
2041                 } else {
2042                         $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2043                 }
2044         } else {
2045                 my $ref = DXUser->get_current($tonode);
2046                 if ($ref && $ref->is_clx) {
2047                         $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2048                 } else {
2049                         $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2050                 }
2051         }
2052 }
2053
2054 sub process_rcmd_reply
2055 {
2056         my ($self, $tonode, $fromnode, $user, $line) = @_;
2057         if ($tonode eq $main::mycall) {
2058                 my $s = $rcmds{$fromnode};
2059                 if ($s) {
2060                         my $dxchan = DXChannel::get($s->{call});
2061                         my $ref = $user eq $tonode ? $dxchan : (DXChannel::get($user) || $dxchan);
2062                         $ref->send($line) if $ref;
2063                         delete $rcmds{$fromnode} if !$dxchan;
2064                 } else {
2065                         # send unsolicited ones to the sysop
2066                         my $dxchan = DXChannel::get($main::myalias);
2067                         $dxchan->send($line) if $dxchan;
2068                 }
2069         } else {
2070                 my $ref = DXUser->get_current($tonode);
2071                 if ($ref && $ref->is_clx) {
2072                         $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2073                 } else {
2074                         $self->route($tonode, pc35($fromnode, $tonode, $line));
2075                 }
2076         }
2077 }
2078
2079 sub send_rcmd_reply
2080 {
2081         my $self = shift;
2082         my $tonode = shift;
2083         my $fromnode = shift;
2084         my $user = shift;
2085         while (@_) {
2086                 my $line = shift;
2087                 $line =~ s/\s*$//;
2088                 Log('rcmd', 'out', $fromnode, $line);
2089                 if ($self->is_clx) {
2090                         $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2091                 } else {
2092                         $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2093                 }
2094         }
2095 }
2096
2097 # add a rcmd request to the rcmd queues
2098 sub addrcmd
2099 {
2100         my ($self, $to, $cmd) = @_;
2101
2102         my $r = {};
2103         $r->{call} = $self->{call};
2104         $r->{t} = $main::systime;
2105         $r->{cmd} = $cmd;
2106         $rcmds{$to} = $r;
2107         
2108         my $ref = Route::Node::get($to);
2109         my $dxchan = $ref->dxchan;
2110         if ($dxchan && $dxchan->is_clx) {
2111                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2112         } else {
2113                 route(undef, $to, pc34($main::mycall, $to, $cmd));
2114         }
2115 }
2116
2117 sub disconnect
2118 {
2119         my $self = shift;
2120         my $pc39flag = shift;
2121         my $call = $self->call;
2122
2123         return if $self->{disconnecting}++;
2124         
2125         unless ($pc39flag && $pc39flag == 1) {
2126                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2127         }
2128
2129         # get rid of any PC16/17/19
2130         eph_del_regex("^PC1[679]*$call");
2131
2132         # do routing stuff, remove me from routing table
2133         my $node = Route::Node::get($call);
2134         my @rout;
2135         if ($node) {
2136                 @rout = $node->del($main::routeroot);
2137                 
2138                 # and all my ephemera as well
2139                 for (@rout) {
2140                         my $c = $_->call;
2141                         eph_del_regex("^PC1[679].*$c");
2142                 }
2143         }
2144
2145         RouteDB::delete_interface($call);
2146         
2147         # remove them from the pc19list as well
2148         while (my ($k,$v) = each %pc19list) {
2149                 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2150                 if (@l) {
2151                         $pc19list{$k} = \@l;
2152                 } else {
2153                         delete $pc19list{$k};
2154                 }
2155                 
2156                 # and the ephemera
2157                 eph_del_regex("^PC1[679].*$k");
2158         }
2159
2160         # unbusy and stop and outgoing mail
2161         my $mref = DXMsg::get_busy($call);
2162         $mref->stop_msg($call) if $mref;
2163         
2164         # broadcast to all other nodes that all the nodes connected to via me are gone
2165         unless ($pc39flag && $pc39flag == 2) {
2166                 my $thing = Thingy::Bye->new(user=>$call);
2167                 $thing->broadcast($self);
2168
2169                 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2170         }
2171
2172         # remove outstanding pings
2173         Thingy::Ping::forget($call);
2174         
2175         # I was the last node visited
2176     $self->user->node($main::mycall);
2177
2178         # send info to all logged in thingies
2179         $self->tell_login('logoutn');
2180
2181         Log('DXProt', $call . " Disconnected");
2182
2183         $self->SUPER::disconnect;
2184 }
2185
2186
2187
2188 # send a talk message to this thingy
2189 #
2190 sub talk
2191 {
2192         my ($self, $from, $to, $via, $line, $origin) = @_;
2193         
2194         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
2195         $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2196         Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2197 }
2198
2199 # send it if it isn't the except list and isn't isolated and still has a hop count
2200 # taking into account filtering and so on
2201
2202 sub send_route
2203 {
2204         my $self = shift;
2205         my $origin = shift;
2206         my $generate = shift;
2207         my $no = shift;     # the no of things to filter on 
2208         my $routeit;
2209         my ($filter, $hops);
2210         my @rin;
2211         
2212         for (; @_ && $no; $no--) {
2213                 my $r = shift;
2214                 
2215                 if (!$self->{isolate} && $self->{routefilter}) {
2216                         $filter = undef;
2217                         if ($r) {
2218                                 ($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});
2219                                 if ($filter) {
2220                                         push @rin, $r;
2221                                 } else {
2222                                         dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2223                                 }
2224                         } else {
2225                                 dbg("was sent a null value") if isdbg('chanerr');
2226                         }
2227                 } else {
2228                         push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2229                 }
2230         }
2231         if (@rin) {
2232                 foreach my $line (&$generate(@rin, @_)) {
2233                         if ($hops) {
2234                                 $routeit = $line;
2235                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2236                         } else {
2237                                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
2238                                 next unless $routeit;
2239                         }
2240                         
2241                         $self->send($routeit);
2242                 }
2243         }
2244 }
2245
2246 sub broadcast_route
2247 {
2248         my $self = shift;
2249         my $origin = shift;
2250         my $generate = shift;
2251         my $line = shift;
2252         my @dxchan = DXChannel::get_all_nodes();
2253         my $dxchan;
2254         
2255         unless ($self->{isolate}) {
2256                 foreach $dxchan (@dxchan) {
2257                         next if $dxchan == $self;
2258                         next if $dxchan == $main::me;
2259                         next unless $dxchan->isa('DXProt');
2260                         next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2261  
2262                         $dxchan->send_route($origin, $generate, @_);
2263                 }
2264         }
2265 }
2266
2267 sub route_pc16
2268 {
2269         my $self = shift;
2270         return unless $self->user->wantpc16;
2271         my $origin = shift;
2272         my $line = shift;
2273         broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2274 }
2275
2276 sub route_pc17
2277 {
2278         my $self = shift;
2279         return unless $self->user->wantpc16;
2280         my $origin = shift;
2281         my $line = shift;
2282         broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2283 }
2284
2285 sub route_pc19
2286 {
2287         my $self = shift;
2288         my $origin = shift;
2289         my $line = shift;
2290         broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2291 }
2292
2293 sub route_pc21
2294 {
2295         my $self = shift;
2296         my $origin = shift;
2297         my $line = shift;
2298         broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2299 }
2300
2301 sub route_pc24
2302 {
2303         my $self = shift;
2304         my $origin = shift;
2305         my $line = shift;
2306         broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2307 }
2308
2309 sub route_pc41
2310 {
2311         my $self = shift;
2312         my $origin = shift;
2313         my $line = shift;
2314         broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2315 }
2316
2317 sub route_pc50
2318 {
2319         my $self = shift;
2320         my $origin = shift;
2321         my $line = shift;
2322         broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2323 }
2324
2325 sub in_filter_route
2326 {
2327         my $self = shift;
2328         my $r = shift;
2329         my ($filter, $hops) = (1, 1);
2330         
2331         if ($self->{inroutefilter}) {
2332                 ($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);
2333                 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2334         }
2335         return $filter;
2336 }
2337
2338 sub eph_dup
2339 {
2340         my $s = shift;
2341         my $t = shift || $eph_restime;
2342         my $r;
2343
2344         # chop the end off
2345         $s =~ s/\^H\d\d?\^?\~?$//;
2346         $r = 1 if exists $eph{$s};    # pump up the dup if it keeps circulating
2347         $eph{$s} = $main::systime + $t;
2348         dbg("PCPROT: emphemeral duplicate") if $r && isdbg('chanerr'); 
2349         return $r;
2350 }
2351
2352 sub eph_del_regex
2353 {
2354         my $regex = shift;
2355         my ($key, $val);
2356         while (($key, $val) = each %eph) {
2357                 if ($key =~ m{$regex}) {
2358                         delete $eph{$key};
2359                 }
2360         }
2361 }
2362
2363 sub eph_clean
2364 {
2365         my ($key, $val);
2366         
2367         while (($key, $val) = each %eph) {
2368                 if ($main::systime >= $val) {
2369                         delete $eph{$key};
2370                 }
2371         }
2372 }
2373
2374 sub eph_list
2375 {
2376         my ($key, $val);
2377         my @out;
2378
2379         while (($key, $val) = each %eph) {
2380                 push @out, $key, $val;
2381         }
2382         return @out;
2383 }
2384
2385 sub run_cmd
2386 {
2387         goto &DXCommandmode::run_cmd;
2388 }
2389
2390
2391 # import any msgs in the chat directory
2392 # the messages are sent to the chat group which forms the
2393 # the first part of the name (eg: solar.1243.txt would be
2394 # sent to chat group SOLAR)
2395
2396 # Each message found is sent: one non-blank line to one chat
2397 # message. So 4 lines = 4 chat messages.
2398
2399 # The special name LOCAL is for local users ANN
2400 # The special name ALL is for ANN/FULL
2401 # The special name SYSOP is for ANN/SYSOP
2402 #
2403 sub import_chat
2404 {
2405         # are there any to do in this directory?
2406         return unless -d $chatimportfn;
2407         unless (opendir(DIR, $chatimportfn)) {
2408                 dbg("can\'t open $chatimportfn $!") if isdbg('msg');
2409                 Log('msg', "can\'t open $chatimportfn $!");
2410                 return;
2411         } 
2412
2413         my @names = readdir(DIR);
2414         closedir(DIR);
2415         my $name;
2416         foreach $name (@names) {
2417                 next if $name =~ /^\./;
2418                 my $splitit = $name =~ /^split/;
2419                 my $fn = "$chatimportfn/$name";
2420                 next unless -f $fn;
2421                 unless (open(MSG, $fn)) {
2422                         dbg("can\'t open import file $fn $!") if isdbg('msg');
2423                         Log('msg', "can\'t open import file $fn $!");
2424                         unlink($fn);
2425                         next;
2426                 }
2427                 my @msg = map { s/\r?\n$//; $_ } <MSG>;
2428                 close(MSG);
2429                 unlink($fn);
2430
2431                 my @cat = split /\./, $name;
2432                 my $target = uc $cat[0];
2433
2434                 foreach my $text (@msg) {
2435                         next unless $text && $text !~ /^\s*#/;
2436                         if ($target eq 'ALL' || $target eq 'LOCAL' || $target eq 'SYSOP') {
2437                                 my $sysopflag = $target eq 'SYSOP' ? '*' : ' ';
2438                                 if ($target ne 'LOCAL') {
2439                                         send_announce($main::me, pc12($main::mycall, $text, '*', $sysopflag), $main::mycall, '*', $text, $sysopflag, $main::mycall, '0');
2440                                 } else {
2441                                         Log('ann', 'LOCAL', $main::mycall, $text);
2442                                         DXChannel::broadcast_list("To LOCAL de ${main::mycall}: $text\a", 'ann', undef, DXCommandmode->get_all());
2443                                 }
2444                         } else {
2445                                 my $msgid = nextchatmsgid();
2446                                 $text = "#$msgid $text";
2447                                 send_chat($main::me, pc12($main::mycall, $text, '*', $target), $main::mycall, '*', $text, $target, $main::mycall, '0');
2448                         }
2449                 }
2450         }
2451 }
2452
2453 1;
2454 __END__