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