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