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