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