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