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