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