change node disconnection code to improve node clearouts
[spider.git] / perl / DXProtHandle.pm
1 #
2 #
3 # This module impliments the handlers for the protocal mode for a dx cluster
4 #
5 # Copyright (c) 1998-2006 Dirk Koopman G1TLH
6 #
7 #
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 BadWords;
31 use DXHash;
32 use Route;
33 use Route::Node;
34 use Script;
35 use RouteDB;
36
37
38 use strict;
39
40 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
41                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
42                         $pingint $obscount %pc19list $chatdupeage $chatimportfn
43                         $investigation_int $pc19_version $myprot_version
44                         %nodehops $baddx $badspotter $badnode $censorpc
45                         $allowzero $decode_dk0wcy $send_opernam @checklist
46                         $eph_pc15_restime $pc9x_past_age $pc9x_future_age
47                         $pc10_dupe_age
48                    );
49
50 $pc9x_past_age = 62*60;                 # maximum age in the past of a px9x (a config record might be the only
51                                                                 # thing a node might send - once an hour)
52 $pc9x_future_age = 5*60;                # maximum age in the future ditto
53 $pc10_dupe_age = 45;                    # just something to catch duplicate PC10->PC93 conversions
54
55
56 # incoming talk commands
57 sub handle_10
58 {
59         my $self = shift;
60         my $pcno = shift;
61         my $line = shift;
62         my $origin = shift;
63
64         # this is to catch loops caused by bad software ...
65         if (eph_dup($line, $pc10_dupe_age)) {
66                 return;
67         }
68
69         # will we allow it at all?
70         if ($censorpc) {
71                 my @bad;
72                 if (@bad = BadWords::check($_[3])) {
73                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
74                         return;
75                 }
76         }
77
78         # is it for me or one of mine?
79         my ($from, $to, $via, $call, $dxchan);
80         $from = $_[1];
81         if ($_[5] gt ' ') {
82                 $via = $_[2];
83                 $to = $_[5];
84         } else {
85                 $to = $_[2];
86         }
87
88         # if this is a 'nodx' node then ignore it
89         if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
90                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
91                 return;
92         }
93
94         # if this is a 'bad spotter' user then ignore it
95         my $nossid = $from;
96         $nossid =~ s/-\d+$//;
97         if ($badspotter->in($nossid)) {
98                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
99                 return;
100         }
101
102         # if we are converting announces to talk is it a dup?
103         if ($ann_to_talk) {
104                 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
105                         dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
106                         return;
107                 }
108         }
109
110         # remember a route to this node and also the node on which this user is
111         RouteDB::update($_[6], $self->{call});
112 #       RouteDB::update($to, $_[6]);
113
114         # convert this to a PC93, coming from mycall with origin set and process it as such
115         $main::me->normal(pc93($to, $from, $via, $_[3], $_[6]));
116 }
117
118 # DX Spot handling
119 sub handle_11
120 {
121         my $self = shift;
122         my $pcno = shift;
123         my $line = shift;
124         my $origin = shift;
125
126         # route 'foreign' pc26s
127         if ($pcno == 26) {
128                 if ($_[7] ne $main::mycall) {
129                         $self->route($_[7], $line);
130                         return;
131                 }
132         }
133
134         # is the spotted callsign blank? This should really be trapped earlier but it
135         # could break other protocol sentences. Also check for lower case characters.
136         if ($_[2] =~ /^\s*$/) {
137                 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
138                 return;
139         }
140         if ($_[2] =~ /[a-z]/) {
141                 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
142                 return;
143         }
144
145
146         # if this is a 'nodx' node then ignore it
147         if ($badnode->in($_[7])) {
148                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
149                 return;
150         }
151
152         # if this is a 'bad spotter' user then ignore it
153         my $nossid = $_[6];
154         $nossid =~ s/-\d+$//;
155         if ($badspotter->in($nossid)) {
156                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
157                 return;
158         }
159
160         # convert the date to a unix date
161         my $d = cltounix($_[3], $_[4]);
162         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
163         if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
164                 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
165                 return;
166         }
167
168         # is it 'baddx'
169         if ($baddx->in($_[2]) || BadWords::check($_[2]) || $_[2] =~ /COCK/) {
170                 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
171                 return;
172         }
173
174         # do some de-duping
175         $_[5] =~ s/^\s+//;                      # take any leading blanks off
176         $_[2] = unpad($_[2]);           # take off leading and trailing blanks from spotted callsign
177         if ($_[2] =~ /BUST\w*$/) {
178                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
179                 return;
180         }
181         if ($censorpc) {
182                 my @bad;
183                 if (@bad = BadWords::check($_[5])) {
184                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
185                         return;
186                 }
187         }
188
189         # remember a route
190 #       RouteDB::update($_[7], $self->{call});
191 #       RouteDB::update($_[6], $_[7]);
192
193         my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $nossid, $_[7]);
194         # global spot filtering on INPUT
195         if ($self->{inspotsfilter}) {
196                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
197                 unless ($filter) {
198                         dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
199                         return;
200                 }
201         }
202
203         # this goes after the input filtering, but before the add
204         # so that if it is input filtered, it isn't added to the dup
205         # list. This allows it to come in from a "legitimate" source
206         if (Spot::dup(@spot[0..4,5])) {
207                 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
208                 return;
209         }
210
211         # add it
212         Spot::add(@spot);
213
214         #
215         # @spot at this point contains:-
216         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
217         # then  spotted itu, spotted cq, spotters itu, spotters cq
218         # you should be able to route on any of these
219         #
220
221         # fix up qra locators of known users
222         my $user = DXUser->get_current($spot[4]);
223         if ($user) {
224                 my $qra = $user->qra;
225                 unless ($qra && is_qra($qra)) {
226                         my $lat = $user->lat;
227                         my $long = $user->long;
228                         if (defined $lat && defined $long) {
229                                 $user->qra(DXBearing::lltoqra($lat, $long));
230                                 $user->put;
231                         }
232                 }
233
234                 # send a remote command to a distant cluster if it is visible and there is no
235                 # qra locator and we havn't done it for a month.
236
237                 unless ($user->qra) {
238                         my $node;
239                         my $to = $user->homenode;
240                         my $last = $user->lastoper || 0;
241                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
242                                 my $cmd = "forward/opernam $spot[4]";
243                                 # send the rcmd but we aren't interested in the replies...
244                                 my $dxchan = $node->dxchan;
245                                 if ($dxchan && $dxchan->is_clx) {
246                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
247                                 } else {
248                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
249                                 }
250                                 if ($to ne $_[7]) {
251                                         $to = $_[7];
252                                         $node = Route::Node::get($to);
253                                         if ($node) {
254                                                 $dxchan = $node->dxchan;
255                                                 if ($dxchan && $dxchan->is_clx) {
256                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
257                                                 } else {
258                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
259                                                 }
260                                         }
261                                 }
262                                 $user->lastoper($main::systime);
263                                 $user->put;
264                         }
265                 }
266         }
267
268         # local processing
269         my $r;
270         eval {
271                 $r = Local::spot($self, @spot);
272         };
273         #                       dbg("Local::spot1 error $@") if isdbg('local') if $@;
274         return if $r;
275
276         # DON'T be silly and send on PC26s!
277         return if $pcno == 26;
278
279         # send out the filtered spots
280         send_dx_spot($self, $line, @spot) if @spot;
281 }
282
283 # announces
284 sub handle_12
285 {
286         my $self = shift;
287         my $pcno = shift;
288         my $line = shift;
289         my $origin = shift;
290
291         # announce duplicate checking
292         $_[3] =~ s/^\s+//;                      # remove leading blanks
293
294         if ($censorpc) {
295                 my @bad;
296                 if (@bad = BadWords::check($_[3])) {
297                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
298                         return;
299                 }
300         }
301
302         # if this is a 'nodx' node then ignore it
303         if ($badnode->in($_[5])) {
304                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
305                 return;
306         }
307
308         # if this is a 'bad spotter' user then ignore it
309         my $nossid = $_[1];
310         $nossid =~ s/-\d+$//;
311         if ($badspotter->in($nossid)) {
312                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
313                 return;
314         }
315
316
317         my $dxchan;
318
319         if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
320                 $self->send_chat(0, $line, @_[1..6]);
321         } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
322
323                 # remember a route
324 #               RouteDB::update($_[5], $self->{call});
325 #               RouteDB::update($_[1], $_[5]);
326
327                 # ignore something that looks like a chat line coming in with sysop
328                 # flag - this is a kludge...
329                 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
330                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
331                         return;
332                 }
333
334                 # here's a bit of fun, convert incoming ann with a callsign in the first word
335                 # or one saying 'to <call>' to a talk if we can route to the recipient
336                 if ($ann_to_talk) {
337                         my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
338                         if ($call) {
339                                 my $ref = Route::get($call);
340                                 if ($ref) {
341                                         $dxchan = $ref->dxchan;
342                                         $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
343                                         return;
344                                 }
345                         }
346                 }
347
348                 # send it
349                 $self->send_announce(0, $line, @_[1..6]);
350         } else {
351                 $self->route($_[2], $line);
352         }
353 }
354
355 sub handle_15
356 {
357         my $self = shift;
358         my $pcno = shift;
359         my $line = shift;
360         my $origin = shift;
361
362         if (eph_dup($line, $eph_pc15_restime)) {
363                 return;
364         } else {
365                 unless ($self->{isolate}) {
366                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
367                 }
368         }
369 }
370
371 # incoming user
372 sub handle_16
373 {
374         my $self = shift;
375         my $pcno = shift;
376         my $line = shift;
377         my $origin = shift;
378
379         # general checks
380         my $dxchan;
381         my $ncall = $_[1];
382         my $newline = "PC16^";
383
384         # dos I want users from this channel?
385         unless ($self->user->wantpc16) {
386                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
387                 return;
388         }
389
390         # is it me?
391         if ($ncall eq $main::mycall) {
392                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
393                 return;
394         }
395
396         my $h;
397         $h = 1 if DXChannel::get($ncall);
398         RouteDB::update($ncall, $self->{call}, $h);
399         if ($h && $self->{call} ne $ncall) {
400                 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
401                 return;
402         }
403
404         if (eph_dup($line)) {
405                 return;
406         }
407
408         my $parent = Route::Node::get($ncall);
409
410         if ($parent) {
411                 $dxchan = $parent->dxchan;
412                 if ($dxchan && $dxchan ne $self) {
413                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
414                         return;
415                 }
416
417                 # input filter if required
418                 return unless $self->in_filter_route($parent);
419         } else {
420                 $parent = Route::Node->new($ncall);
421         }
422
423         unless ($h) {
424                 if ($parent->via_pc92) {
425                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
426                         return;
427                 }
428         }
429
430         my $i;
431         my @rout;
432         for ($i = 2; $i < $#_; $i++) {
433                 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
434                 next unless $call && $conf && defined $here && is_callsign($call);
435                 next if $call eq $main::mycall;
436
437                 eph_del_regex("^PC17\\^$call\\^$ncall");
438
439                 $conf = $conf eq '*';
440
441                 # reject this if we think it is a node already
442                 my $r = Route::Node::get($call);
443                 my $u = DXUser->get_current($call) unless $r;
444                 if ($r || ($u && $u->is_node)) {
445                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
446                         next;
447                 }
448
449                 $r = Route::User::get($call);
450                 my $flags = Route::here($here)|Route::conf($conf);
451
452                 if ($r) {
453                         my $au = $r->addparent($parent);
454                         if ($r->flags != $flags) {
455                                 $r->flags($flags);
456                                 $au = $r;
457                         }
458                         push @rout, $r if $h && $au;
459                 } else {
460                         my @ans = $parent->add_user($call, $flags);
461                         push @rout, @ans if $h && @ans;
462                 }
463
464                 # add this station to the user database, if required
465                 my $user = DXUser->get_current($ncall);
466                 $user = DXUser->new($call) unless $user;
467                 $user->homenode($parent->call) if !$user->homenode;
468                 $user->node($parent->call);
469                 $user->lastin($main::systime) unless DXChannel::get($call);
470                 $user->put;
471
472                 # send info to all logged in thingies
473                 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
474                 $self->tell_buddies('loginb', $call, $ncall);
475         }
476         if (@rout) {
477                 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
478 #               $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
479         }
480 }
481
482 # remove a user
483 sub handle_17
484 {
485         my $self = shift;
486         my $pcno = shift;
487         my $line = shift;
488         my $origin = shift;
489         my $dxchan;
490         my $ncall = $_[2];
491         my $ucall = $_[1];
492
493         eph_del_regex("^PC16\\^$ncall.*$ucall");
494
495         # do I want users from this channel?
496         unless ($self->user->wantpc16) {
497                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
498                 return;
499         }
500
501         if ($ncall eq $main::mycall) {
502                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
503                 return;
504         }
505
506         RouteDB::delete($ncall, $self->{call});
507
508         my $uref = Route::User::get($ucall);
509         unless ($uref) {
510                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
511                 return;
512         }
513         my $parent = Route::Node::get($ncall);
514         unless ($parent) {
515                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
516                 return;
517         }
518
519         $dxchan = DXChannel::get($ncall);
520         if ($dxchan && $dxchan ne $self) {
521                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
522                 return;
523         }
524
525         unless ($dxchan) {
526                 if ($parent->via_pc92) {
527                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
528                         return;
529                 }
530         }
531
532         if (DXChannel::get($ucall)) {
533                 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
534                 return;
535         }
536
537         # input filter if required and then remove user if present
538 #               return unless $self->in_filter_route($parent);
539         $parent->del_user($uref);
540
541         # send info to all logged in thingies
542         my $user = DXUser->get_current($ncall);
543         $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
544         $self->tell_buddies('logoutb', $ucall, $ncall);
545
546         if (eph_dup($line)) {
547                 return;
548         }
549
550         $self->route_pc17($origin, $line, $parent, $uref);
551 #       $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
552 }
553
554 # link request
555 sub handle_18
556 {
557         my $self = shift;
558         my $pcno = shift;
559         my $line = shift;
560         my $origin = shift;
561         $self->state('init');
562
563         my $parent = Route::Node::get($self->{call});
564
565         # record the type and version offered
566         if (my ($version) = $_[1] =~ /DXSpider Version: (\d+\.\d+)/) {
567                 $self->{version} = 53 + $version;
568                 $self->user->version(53 + $version);
569                 $parent->version(0 + $version);
570                 my ($build) = $_[1] =~ /Build: (\d+(?:\.\d+)?)/;
571                 $self->{build} = 0 + $build;
572                 $self->user->build(0 + $build);
573                 $parent->build(0 + $build);
574                 dbg("DXSpider version $version build $build");
575                 unless ($self->is_spider) {
576                         dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
577                         $self->user->sort('S');
578                         $self->user->put;
579                         $self->sort('S');
580                 }
581 #               $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
582                 if ($_[1] =~ /\bpc9x/) {
583                         if ($self->{isolate}) {
584                                 dbg("pc9x recognised, but $self->{call} is isolated, using old protocol");
585                         } elsif (!$self->user->wantpc9x) {
586                                 dbg("pc9x explicitly switched off on $self->{call}, using old protocol");
587                         } else {
588                                 $self->{do_pc9x} = 1;
589                                 dbg("Do px9x set on $self->{call}");
590                         }
591                 }
592         } else {
593                 dbg("Unknown software");
594                 $self->version(50.0);
595                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
596                 $self->user->version($self->version);
597         }
598
599         # first clear out any nodes on this dxchannel
600         my @rout = $parent->del_nodes;
601         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
602         $self->send_local_config();
603         $self->send(pc20());
604 }
605
606 sub check_add_node
607 {
608         my $call = shift;
609
610         # add this station to the user database, if required (don't remove SSID from nodes)
611         my $user = DXUser->get_current($call);
612         if (!$user) {
613                 $user = DXUser->new($call);
614                 $user->priv(1);         # I have relented and defaulted nodes
615                 $user->lockout(1);
616                 $user->homenode($call);
617                 $user->node($call);
618         }
619         $user->sort('A') unless $user->is_node;
620         return $user;
621 }
622
623 # incoming cluster list
624 sub handle_19
625 {
626         my $self = shift;
627         my $pcno = shift;
628         my $line = shift;
629         my $origin = shift;
630
631         my $i;
632         my $newline = "PC19^";
633
634         # new routing list
635         my (@rout, @pc92out);
636
637         # first get the INTERFACE node
638         my $parent = Route::Node::get($self->{call});
639         unless ($parent) {
640                 dbg("PCPROT: my parent $self->{call} has disappeared");
641                 $self->disconnect;
642                 return;
643         }
644
645         my $h;
646
647         # parse the PC19
648         #
649         # We are making a major change from now on. We are only going to accept
650         # PC19s from directly connected nodes.  This means that we are probably
651         # going to throw away most of the data that we are being sent.
652         #
653         # The justification for this is that most of it is wrong or out of date
654         # anyway.
655         #
656         # From now on we are only going to believe PC92 data and locally connected
657         # non-pc92 nodes.
658         #
659         for ($i = 1; $i < $#_-1; $i += 4) {
660                 my $here = $_[$i];
661                 my $call = uc $_[$i+1];
662                 my $conf = $_[$i+2];
663                 my $ver = $_[$i+3];
664                 next unless defined $here && defined $conf && is_callsign($call);
665
666                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
667
668                 # check for sane parameters
669                 #                               $ver = 5000 if $ver eq '0000';
670                 next unless $ver && $ver =~ /^\d+$/;
671                 next if $ver < 5000;    # only works with version 5 software
672                 next if length $call < 3; # min 3 letter callsigns
673                 next if $call eq $main::mycall;
674
675                 # check that this PC19 isn't trying to alter the wrong dxchan
676                 $h = 0;
677                 my $dxchan = DXChannel::get($call);
678                 if ($dxchan) {
679                         if ($dxchan == $self) {
680                                 $h = 1;
681                         } else {
682                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
683                                 next;
684                         }
685                 }
686
687                 my $user = check_add_node($call);
688
689 #               if (eph_dup($genline)) {
690 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
691 #                       next;
692 #               }
693
694                 RouteDB::update($call, $self->{call}, $dxchan ? 1 : undef);
695
696                 unless ($h) {
697                         if ($parent->via_pc92) {
698                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
699                                 next;
700                         }
701                 }
702
703                 my $r = Route::Node::get($call);
704                 my $flags = Route::here($here)|Route::conf($conf);
705
706                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
707                 if ($r) {
708                         my $ar;
709                         if ($call ne $parent->call) {
710                                 if ($self->in_filter_route($r)) {
711                                         $ar = $parent->add($call, $ver, $flags);
712 #                                       push @rout, $ar if $ar;
713                                 } else {
714                                         next;
715                                 }
716                         }
717                         if ($r->version ne $ver || $r->flags != $flags) {
718                                 $r->version($ver);
719                                 $r->flags($flags);
720                         }
721                         push @rout, $r;
722                 } else {
723                         if ($call eq $self->{call} || $user->wantroutepc19) {
724                                 my $new = Route->new($call); # throw away
725                                 if ($self->in_filter_route($new)) {
726                                         my $ar = $parent->add($call, $ver, $flags);
727                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
728                                         push @rout, $ar if $ar;
729                                         push @pc92out, $r if $h;
730                                 } else {
731                                         next;
732                                 }
733                         }
734                 }
735
736                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
737                 my $mref = DXMsg::get_busy($call);
738                 $mref->stop_msg($call) if $mref;
739
740                 $user->lastin($main::systime) unless DXChannel::get($call);
741                 $user->put;
742         }
743
744         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
745         # but remember there will only be one (pair) these because any extras will be
746         # thrown away.
747         if (@rout) {
748 #               $self->route_pc21($self->{call}, $line, @rout);
749                 $self->route_pc19($self->{call}, $line, @rout);
750         }
751         if (@pc92out) {
752                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
753         }
754 }
755
756 # send local configuration
757 sub handle_20
758 {
759         my $self = shift;
760         my $pcno = shift;
761         my $line = shift;
762         my $origin = shift;
763
764         if ($self->{do_pc9x} && $self->{state} ne 'init92') {
765                 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
766                 $self->{do_pc9x} = 0;
767         }
768         $self->send_local_config;
769         $self->send(pc22());
770         $self->state('normal');
771         $self->{lastping} = 0;
772         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
773 }
774
775 # delete a cluster from the list
776 #
777 # This should never occur for directly connected nodes.
778 #
779 sub handle_21
780 {
781         my $self = shift;
782         my $pcno = shift;
783         my $line = shift;
784         my $origin = shift;
785         my $call = uc $_[1];
786
787         eph_del_regex("^PC1[679].*$call");
788
789         # if I get a PC21 from the same callsign as self then ignore it
790         if ($call eq $self->call) {
791                 dbg("PCPROT: self referencing PC21 from $self->{call}");
792                 return;
793         }
794
795         RouteDB::delete($call, $self->{call});
796
797         my $parent = Route::Node::get($self->{call});
798         unless ($parent) {
799                 dbg("PCPROT: my parent $self->{call} has disappeared");
800                 $self->disconnect;
801                 return;
802         }
803
804         my @rout;
805
806         if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
807                 my $node = Route::Node::get($call);
808                 if ($node) {
809
810                         if ($node->via_pc92) {
811                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
812                                 return;
813                         }
814
815                         my $dxchan = DXChannel::get($call);
816                         if ($dxchan && $dxchan != $self) {
817                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
818                                 return;
819                         }
820
821                         # input filter it
822                         return unless $self->in_filter_route($node);
823
824                         # routing objects, force a PC21 if it is local
825                         push @rout, $node->del($parent);
826                         push @rout, $call if $dxchan && @rout == 0;
827                 }
828         } else {
829                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
830                 return;
831         }
832
833         if (eph_dup($line)) {
834                 return;
835         }
836
837         if (@rout) {
838                 $self->route_pc21($origin, $line, @rout);
839 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
840         }
841 }
842
843
844 sub handle_22
845 {
846         my $self = shift;
847         my $pcno = shift;
848         my $line = shift;
849         my $origin = shift;
850
851         if ($self->{do_pc9x}) {
852                 if ($self->{state} ne 'init92') {
853                         $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
854                         $self->{do_pc9x} = 0;
855                 }
856         }
857         $self->{lastping} = 0;
858         $self->state('normal');
859         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
860 }
861
862 # WWV info
863 sub handle_23
864 {
865         my $self = shift;
866         my $pcno = shift;
867         my $line = shift;
868         my $origin = shift;
869
870         # route foreign' pc27s
871         if ($pcno == 27) {
872                 if ($_[8] ne $main::mycall) {
873                         $self->route($_[8], $line);
874                         return;
875                 }
876         }
877
878
879         # do some de-duping
880         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
881         my $sfi = unpad($_[3]);
882         my $k = unpad($_[4]);
883         my $i = unpad($_[5]);
884         my ($r) = $_[6] =~ /R=(\d+)/;
885         $r = 0 unless $r;
886         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
887                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
888                 return;
889         }
890
891         # global wwv filtering on INPUT
892         my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
893         if ($self->{inwwvfilter}) {
894                 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
895                 unless ($filter) {
896                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
897                         return;
898                 }
899         }
900         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
901         if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
902                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
903                 return;
904         }
905
906         # note this only takes the first one it gets
907         Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
908
909         my $rep;
910         eval {
911                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
912         };
913         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
914         return if $rep;
915
916         # DON'T be silly and send on PC27s!
917         return if $pcno == 27;
918
919         # broadcast to the eager world
920         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
921 }
922
923 # set here status
924 sub handle_24
925 {
926         my $self = shift;
927         my $pcno = shift;
928         my $line = shift;
929         my $origin = shift;
930         my $call = uc $_[1];
931         my ($nref, $uref);
932         $nref = Route::Node::get($call);
933         $uref = Route::User::get($call);
934         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
935
936         if (eph_dup($line)) {
937                 return;
938         }
939
940         $nref->here($_[2]) if $nref;
941         $uref->here($_[2]) if $uref;
942         my $ref = $nref || $uref;
943         return unless $self->in_filter_route($ref);
944
945         $self->route_pc24($origin, $line, $ref, $_[3]);
946 }
947
948 # merge request
949 sub handle_25
950 {
951         my $self = shift;
952         my $pcno = shift;
953         my $line = shift;
954         my $origin = shift;
955         if ($_[1] ne $main::mycall) {
956                 $self->route($_[1], $line);
957                 return;
958         }
959         if ($_[2] eq $main::mycall) {
960                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
961                 return;
962         }
963
964         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
965
966         # spots
967         if ($_[3] > 0) {
968                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
969                 my $in;
970                 foreach $in (@in) {
971                         $self->send(pc26(@{$in}[0..4], $_[2]));
972                 }
973         }
974
975         # wwv
976         if ($_[4] > 0) {
977                 my @in = reverse Geomag::search(0, $_[4], time, 1);
978                 my $in;
979                 foreach $in (@in) {
980                         $self->send(pc27(@{$in}[0..5], $_[2]));
981                 }
982         }
983 }
984
985 sub handle_26 {goto &handle_11}
986 sub handle_27 {goto &handle_23}
987
988 # mail/file handling
989 sub handle_28
990 {
991         my $self = shift;
992         my $pcno = shift;
993         my $line = shift;
994         my $origin = shift;
995         if ($_[1] eq $main::mycall) {
996                 no strict 'refs';
997                 my $sub = "DXMsg::handle_$pcno";
998                 &$sub($self, @_);
999         } else {
1000                 $self->route($_[1], $line) unless $self->is_clx;
1001         }
1002 }
1003
1004 sub handle_29 {goto &handle_28}
1005 sub handle_30 {goto &handle_28}
1006 sub handle_31 {goto &handle_28}
1007 sub handle_32 {goto &handle_28}
1008 sub handle_33 {goto &handle_28}
1009
1010 sub handle_34
1011 {
1012         my $self = shift;
1013         my $pcno = shift;
1014         my $line = shift;
1015         my $origin = shift;
1016         if (eph_dup($line, $eph_pc34_restime)) {
1017                 return;
1018         } else {
1019                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1020         }
1021 }
1022
1023 # remote command replies
1024 sub handle_35
1025 {
1026         my $self = shift;
1027         my $pcno = shift;
1028         my $line = shift;
1029         my $origin = shift;
1030         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1031         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1032 }
1033
1034 sub handle_36 {goto &handle_34}
1035
1036 # database stuff
1037 sub handle_37
1038 {
1039         my $self = shift;
1040         my $pcno = shift;
1041         my $line = shift;
1042         my $origin = shift;
1043         if ($_[1] eq $main::mycall) {
1044                 no strict 'refs';
1045                 my $sub = "DXDb::handle_$pcno";
1046                 &$sub($self, @_);
1047         } else {
1048                 $self->route($_[1], $line) unless $self->is_clx;
1049         }
1050 }
1051
1052 # node connected list from neighbour
1053 sub handle_38
1054 {
1055         my $self = shift;
1056         my $pcno = shift;
1057         my $line = shift;
1058         my $origin = shift;
1059 }
1060
1061 # incoming disconnect
1062 sub handle_39
1063 {
1064         my $self = shift;
1065         my $pcno = shift;
1066         my $line = shift;
1067         my $origin = shift;
1068         if ($_[1] eq $self->{call}) {
1069                 $self->disconnect(1);
1070         } else {
1071                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1072         }
1073 }
1074
1075 sub handle_40 {goto &handle_28}
1076
1077 # user info
1078 sub handle_41
1079 {
1080         my $self = shift;
1081         my $pcno = shift;
1082         my $line = shift;
1083         my $origin = shift;
1084         my $call = $_[1];
1085         my $sort = $_[2];
1086         my $val = $_[3];
1087
1088         my $l = "PC41^$call^$sort";
1089         if (eph_dup($l, $eph_info_restime)) {
1090                 return;
1091         }
1092
1093         # input filter if required
1094         #                       my $ref = Route::get($call) || Route->new($call);
1095         #                       return unless $self->in_filter_route($ref);
1096
1097         if ($val eq $sort || $val =~ /^\s*$/) {
1098                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1099                 return;
1100         }
1101
1102         # add this station to the user database, if required
1103         my $user = DXUser->get_current($call);
1104         $user = DXUser->new($call) unless $user;
1105
1106         if ($sort == 1) {
1107                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1108                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1109                         if ($main::mycall eq 'GB7DJK' || $main::mycall eq 'GB7BAA' || $main::mycall eq 'WR3D') {
1110                                 DXChannel::broadcast_nodes(pc41($_[1], 1, $user->name)); # send it to everyone including me
1111                         }
1112                         return;
1113                 }
1114                 $user->name($val);
1115         } elsif ($sort == 2) {
1116                 $user->qth($val);
1117         } elsif ($sort == 3) {
1118                 if (is_latlong($val)) {
1119                         my ($lat, $long) = DXBearing::stoll($val);
1120                         $user->lat($lat) if $lat;
1121                         $user->long($long) if $long;
1122                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1123                 } else {
1124                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1125                         return;
1126                 }
1127         } elsif ($sort == 4) {
1128                 $user->homenode($val);
1129         } elsif ($sort == 5) {
1130                 if (is_qra(uc $val)) {
1131                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1132                         $user->lat($lat) if $lat && !$user->lat;
1133                         $user->long($long) if $long && !$user->long;
1134                         $user->qra(uc $val);
1135                 } else {
1136                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1137                         return;
1138                 }
1139         }
1140         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1141         $user->put;
1142
1143         unless ($self->{isolate}) {
1144                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1145         }
1146
1147         #  perhaps this IS what we want after all
1148         #                       $self->route_pc41($ref, $call, $sort, $val, $_[4]);
1149 }
1150
1151 sub handle_42 {goto &handle_28}
1152
1153
1154 # database
1155 sub handle_44 {goto &handle_37}
1156 sub handle_45 {goto &handle_37}
1157 sub handle_46 {goto &handle_37}
1158 sub handle_47 {goto &handle_37}
1159 sub handle_48 {goto &handle_37}
1160
1161 # message and database
1162 sub handle_49
1163 {
1164         my $self = shift;
1165         my $pcno = shift;
1166         my $line = shift;
1167         my $origin = shift;
1168
1169         if (eph_dup($line)) {
1170                 return;
1171         }
1172
1173         if ($_[1] eq $main::mycall) {
1174                 DXMsg::handle_49($self, @_);
1175         } else {
1176                 $self->route($_[1], $line) unless $self->is_clx;
1177         }
1178 }
1179
1180 # keep alive/user list
1181 sub handle_50
1182 {
1183         my $self = shift;
1184         my $pcno = shift;
1185         my $line = shift;
1186         my $origin = shift;
1187
1188         my $call = $_[1];
1189
1190         RouteDB::update($call, $self->{call});
1191
1192         my $node = Route::Node::get($call);
1193         if ($node) {
1194                 return unless $node->call eq $self->{call};
1195                 $node->usercount($_[2]);
1196
1197                 # input filter if required
1198                 return unless $self->in_filter_route($node);
1199
1200                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1201         }
1202 }
1203
1204 # incoming ping requests/answers
1205 sub handle_51
1206 {
1207         my $self = shift;
1208         my $pcno = shift;
1209         my $line = shift;
1210         my $origin = shift;
1211         my $to = $_[1];
1212         my $from = $_[2];
1213         my $flag = $_[3];
1214
1215
1216         # is it for us?
1217         if ($to eq $main::mycall) {
1218                 if ($flag == 1) {
1219                         $self->send(pc51($from, $to, '0'));
1220                 } else {
1221                         DXXml::Ping::handle_ping_reply($self, $from);
1222                 }
1223         } else {
1224
1225                 RouteDB::update($from, $self->{call});
1226
1227                 if (eph_dup($line)) {
1228                         return;
1229                 }
1230                 # route down an appropriate thingy
1231                 $self->route($to, $line);
1232         }
1233 }
1234
1235 # dunno but route it
1236 sub handle_75
1237 {
1238         my $self = shift;
1239         my $pcno = shift;
1240         my $line = shift;
1241         my $origin = shift;
1242         my $call = $_[1];
1243         if ($call ne $main::mycall) {
1244                 $self->route($call, $line);
1245         }
1246 }
1247
1248 # WCY broadcasts
1249 sub handle_73
1250 {
1251         my $self = shift;
1252         my $pcno = shift;
1253         my $line = shift;
1254         my $origin = shift;
1255         my $call = $_[1];
1256
1257         # do some de-duping
1258         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1259         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1260                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1261                 return;
1262         }
1263         @_ = map { unpad($_) } @_;
1264         if (WCY::dup($d)) {
1265                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1266                 return;
1267         }
1268
1269         my $wcy = WCY::update($d, @_[2..12]);
1270
1271         my $rep;
1272         eval {
1273                 $rep = Local::wcy($self, @_[1..12]);
1274         };
1275         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1276         return if $rep;
1277
1278         # broadcast to the eager world
1279         send_wcy_spot($self, $line, $d, @_[2..12]);
1280 }
1281
1282 # remote commands (incoming)
1283 sub handle_84
1284 {
1285         my $self = shift;
1286         my $pcno = shift;
1287         my $line = shift;
1288         my $origin = shift;
1289         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1290 }
1291
1292 # remote command replies
1293 sub handle_85
1294 {
1295         my $self = shift;
1296         my $pcno = shift;
1297         my $line = shift;
1298         my $origin = shift;
1299         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1300 }
1301
1302 # decode a pc92 call: flag call : version : build
1303 sub _decode_pc92_call
1304 {
1305         my $icall = shift;
1306         my @part = split /:/, $icall;
1307         my ($flag, $call) = unpack "A A*", $part[0];
1308         return () unless defined $flag && $flag ge '0' && $flag le '7';
1309         return () unless $call && is_callsign($call);
1310         my $is_node = $flag & 4;
1311         my $is_extnode = $flag & 2;
1312         my $here = $flag & 1;
1313         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2]);
1314 }
1315
1316 # decode a pc92 call: flag call : version : build
1317 sub _encode_pc92_call
1318 {
1319         my $ref = shift;
1320
1321         # plain call or value
1322         return $ref unless ref $ref;
1323
1324         my $ext = shift;
1325         my $flag = 0;
1326         my $call = $ref->call;
1327         my $extra = '';
1328         $flag |= $ref->here ? 1 : 0;
1329         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1330                 $flag |= 4;
1331                 my $dxchan = DXChannel::get($call);
1332                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1333                 if ($ext) {
1334                         if ($ref->version) {
1335                                 my $version = $ref->version || 1.0;
1336                                 $version =  $version * 100 + 5300 if $version < 50;
1337                                 $extra .= ":" . $version;
1338                         }
1339                 }
1340         }
1341         return "$flag$call$extra";
1342 }
1343
1344 sub _add_thingy
1345 {
1346         my $parent = shift;
1347         my $s = shift;
1348         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1349         my @rout;
1350
1351         if ($call) {
1352                 if ($is_node) {
1353                         dbg("ROUTE: added node $call to " . $parent->call) if isdbg('routelow');
1354                         @rout = $parent->add($call, $version, Route::here($here));
1355                 } else {
1356                         dbg("ROUTE: added user $call to " . $parent->call) if isdbg('routelow');
1357                         @rout = $parent->add_user($call, Route::here($here));
1358                 }
1359         }
1360         return @rout;
1361 }
1362
1363 sub _del_thingy
1364 {
1365         my $parent = shift;
1366         my $s = shift;
1367         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1368         my @rout;
1369         if ($call) {
1370                 if ($is_node) {
1371                         my $nref = Route::Node::get($call);
1372                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1373                         @rout = $nref->del($parent) if $nref;
1374                 } else {
1375                         my $uref = Route::User::get($call);
1376                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1377                         @rout = $parent->del_user($uref) if $uref;
1378                 }
1379         }
1380         return @rout;
1381 }
1382
1383 my $_last_time;
1384 my $_last_occurs;
1385
1386 sub gen_pc9x_t
1387 {
1388         if (!$_last_time || $_last_time != $main::systime) {
1389                 $_last_time = $main::systime;
1390                 $_last_occurs = 0;
1391                 return $_last_time - $main::systime_daystart;
1392         } else {
1393                 $_last_occurs++;
1394                 return sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1395         }
1396 }
1397
1398 sub check_pc9x_t
1399 {
1400         my $call = shift;
1401         my $t = shift;
1402         my $pc = shift;
1403         my $create = shift;
1404
1405         my $parent = ref $call ? $call : Route::Node::get($call);
1406         if ($parent) {
1407                 # we only do this for external calls whose routing table
1408                 # record come and go. The reference for mycall is permanent
1409                 # and not that frequently used, it also never times out, so
1410                 # the id on it is completely unreliable. Besides, only commands
1411                 # originating on this box will go through this code...
1412                 if ($parent->call ne $main::mycall) {
1413                         my $lastid = $parent->lastid->{$pc} || 0;
1414                         if ($t < $lastid) {
1415                                 if ($t+86400-$lastid > $pc9x_past_age) {
1416                                         dbg("PCPROT: dup id on $t <= $lastid, ignored") if isdbg('chanerr');
1417                                         return;
1418                                 }
1419                         } elsif ($t == $lastid) {
1420                                 dbg("PCPROT: dup id on $t == $lastid, ignored") if isdbg('chanerr');
1421                                 return;
1422                         } else {
1423                                 # $t > $lastid, check that the timestamp offered isn't too far away from 'now'
1424                                 if ($t+$main::systime_daystart-$main::systime > $pc9x_future_age ) {
1425                                         dbg("PCPROT: id $t too far in the future, ignored") if isdbg('chanerr');
1426                                         return;
1427                                 }
1428                         }
1429                 }
1430         } elsif ($create) {
1431                 $parent = Route::Node->new($call);
1432         }
1433         $parent->lastid->{$pc} = $t if $parent;
1434
1435         return $parent;
1436 }
1437
1438 # DXSpider routing entries
1439 sub handle_92
1440 {
1441         my $self = shift;
1442         my $pcno = shift;
1443         my $line = shift;
1444         my $origin = shift;
1445
1446         my (@radd, @rdel);
1447
1448         my $pcall = $_[1];
1449         unless ($pcall) {
1450                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1451                 return;
1452         }
1453         my $t = $_[2];
1454         my $sort = $_[3];
1455
1456         if ($pcall eq $main::mycall) {
1457                 dbg("PCPROT: looped back, ignored") if isdbg('chanerr');
1458                 return;
1459         }
1460
1461         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1462                 if ($self->{isolate}) {
1463                         dbg("PC9x received, but $pcall is isolated, ignored");
1464                         return;
1465                 } elsif (!$self->user->wantpc9x) {
1466                         dbg("PC9x explicitly switched off on $pcall, ignored");
1467                         return;
1468                 } else {
1469                         $self->state('init92');
1470                         $self->{do_pc9x} = 1;
1471                         dbg("Do pc9x set on $pcall");
1472                 }
1473         }
1474         unless ($self->{do_pc9x}) {
1475                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1476                 return;
1477         }
1478
1479         my $parent = check_pc9x_t($pcall, $t, 92, 1) || return;
1480         my $oparent = $parent;
1481
1482         $parent->do_pc9x(1);
1483         $parent->via_pc92(1);
1484
1485         if ($sort eq 'F' || $sort eq 'R') {
1486
1487                 # this is the route finding section
1488                 # here is where the consequences of the 'find' command
1489                 # are dealt with
1490
1491                 my $from = $_[4];
1492                 my $target = $_[5];
1493
1494                 if ($sort eq 'F') {
1495                         my $flag;
1496                         my $ref;
1497                         my $dxchan;
1498                         if ($ref = DXChannel::get($target)) {
1499                                 $flag = 1;              # we are directly connected
1500                         } else {
1501                                 $ref = Route::get($target);
1502                                 $dxchan = $ref->dxchan;
1503                                 $flag = 2;
1504                         }
1505                         if ($ref && $flag && $dxchan) {
1506                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1507                                 return;
1508                         }
1509                 } elsif ($sort eq 'R') {
1510                         if (my $dxchan = DXChannel::get($from)) {
1511                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @_[6,7]);
1512                         } else {
1513                                 my $ref = Route::get($from);
1514                                 if ($ref) {
1515                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1516                                         if (@dxchan) {
1517                                                 $_->send($line) for @dxchan;
1518                                         } else {
1519                                                 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1520                                         }
1521                                 } else {
1522                                         dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1523                                 }
1524                         }
1525                         return;
1526                 }
1527         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1528
1529                 # remember the last channel we arrived on
1530                 $parent->PC92C_dxchan($self->{call}) unless $self->{call} eq $parent->call;
1531
1532                 # this is the main route section
1533                 # here is where all the routes are created and destroyed
1534
1535                 my @ent = map {[ _decode_pc92_call($_) ]} grep {$_ && /^[0-7]/} @_[4 .. $#_];
1536
1537                 if (@ent) {
1538
1539                         # look at the first one which will always be a node of some sort
1540                         # except in the case of 'A' or 'D' in which the $pcall is used
1541                         # otherwise use the node call and update any information
1542                         # that needs to be done.
1543                         my ($call, $is_node, $is_extnode, $here, $version, $build) = @{$ent[0]};
1544                         if (($sort eq 'A' || $sort eq 'D') && !$is_node) {
1545                                 # parent is already set correctly
1546                                 # this is to allow shortcuts for A and D records
1547                                 # not repeating the origin call to no real purpose
1548                                 ;
1549                         } else {
1550                                 if ($call && $is_node) {
1551                                         if ($call eq $main::mycall) {
1552                                                 dbg("PCPROT: $call looped back onto $main::mycall, ignored") if isdbg('chanerr');
1553                                                 return;
1554                                         }
1555                                         # this is only accepted from my "self".
1556                                         # this also kills configs from PC92 nodes with external PC19 nodes that are also
1557                                         # locally connected. Local nodes always take precedence.
1558                                         if (DXChannel::get($call) && $call ne $self->{call}) {
1559                                                 dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1560                                                 return;
1561                                         }
1562                                         if ($is_extnode) {
1563                                                 # reparent to external node (note that we must have received a 'C' or 'A' record
1564                                                 # from the true parent node for this external before we get one for the this node
1565                                                 unless ($parent = Route::Node::get($call)) {
1566                                                         if ($is_extnode && $oparent) {
1567                                                                 @radd =  _add_thingy($oparent, $ent[0]);
1568                                                                 $parent = $radd[0];
1569                                                         } else {
1570                                                                 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1571                                                                 return;
1572                                                         }
1573                                                 }
1574                                                 $parent = check_pc9x_t($call, $t, 92) || return;
1575                                                 $parent->via_pc92(1);
1576                                                 $parent->PC92C_dxchan($self->{call});
1577                                         }
1578                                 } else {
1579                                         dbg("PCPROT: must be mycall or external node as first entry, ignored") if isdbg('chanerr');
1580                                         return;
1581                                 }
1582                                 $parent->here(Route::here($here));
1583                                 $parent->version($version) if $version && $version > $parent->version;
1584                                 $parent->build($build) if $build && $build > $parent->build;
1585                                 $parent->PC92C_dxchan($self->{call}) unless $self->{call} eq $parent->call;
1586                                 shift @ent;
1587                         }
1588                 }
1589
1590                 # do a pass through removing any references to either locally connected nodes or mycall
1591                 my @nent;
1592                 for (@ent) {
1593                         next unless $_;
1594                         if ($_->[0] eq $main::mycall || DXChannel::get($_->[0])) {
1595                                 dbg("PCPROT: $_->[0] refers to locally connected node, ignored") if isdbg('chanerr');
1596                                 next;
1597                         }
1598                         push @nent, $_;
1599                 }
1600
1601                 if ($sort eq 'A') {
1602                         for (@nent) {
1603                                 push @radd, _add_thingy($parent, $_);
1604                         }
1605                 } elsif ($sort eq 'D') {
1606                         for (@nent) {
1607                                 push @rdel, _del_thingy($parent, $_);
1608                         }
1609                 } elsif ($sort eq 'C') {
1610                         my (@nodes, @users);
1611
1612                         # we only reset obscounts on config records
1613                         $oparent->reset_obs;
1614                         dbg("ROUTE: reset obscount on $pcall now " . $oparent->obscount) if isdbg('obscount');
1615                         if ($oparent != $parent) {
1616                                 $parent->reset_obs;
1617                                 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1618                         }
1619
1620                         #
1621                         foreach my $r (@nent) {
1622                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1623                                 if ($r->[0]) {
1624                                         if ($r->[1]) {
1625                                                 push @nodes, $r->[0];
1626                                         } else {
1627                                                 push @users, $r->[0];
1628                                         }
1629                                 } else {
1630                                         dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1631                                 }
1632                         }
1633
1634                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1635
1636                         # add users here
1637                         foreach my $r (@nent) {
1638                                 my $call = $r->[0];
1639                                 if ($call) {
1640                                         push @radd,_add_thingy($parent, $r) if grep $call eq $_, (@$nnodes, @$nusers);
1641                                 }
1642                         }
1643                         # del users here
1644                         foreach my $r (@$dnodes) {
1645                                 push @rdel,_del_thingy($parent, [$r, 1]);
1646                         }
1647                         foreach my $r (@$dusers) {
1648                                 push @rdel,_del_thingy($parent, [$r, 0]);
1649                         }
1650
1651                         # remember this last PC92C for rebroadcast on demand
1652                         $parent->last_PC92C($line);
1653                 } else {
1654                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1655                         return;
1656                 }
1657
1658                 foreach my $r (@rdel) {
1659                         next unless $r;
1660
1661                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1662                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1663                 }
1664                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1665                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1666                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
1667                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
1668                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1669         }
1670
1671         # broadcast it if we get here
1672         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1673 }
1674
1675
1676 sub handle_93
1677 {
1678         my $self = shift;
1679         my $pcno = shift;
1680         my $line = shift;
1681         my $origin = shift;
1682
1683 #       $self->{do_pc9x} ||= 1;
1684
1685         my $pcall = $_[1];
1686         unless (is_callsign($pcall)) {
1687                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1688                 return;
1689         }
1690
1691         # remember that we are converting PC10->PC93
1692         unless ($self->{do_pc9x}) {
1693                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1694                 return;
1695         }
1696
1697         my $t = $_[2];
1698         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
1699
1700         my $to = $_[3];
1701         my $from = $_[4];
1702         my $via = $_[5];
1703         my $text = $_[6];
1704         my $onode = $_[7];
1705         $onode = $pcall if @_ <= 8;
1706
1707         # this is catch loops caused by bad software ...
1708         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
1709                 return;
1710         }
1711
1712         # will we allow it at all?
1713         if ($censorpc) {
1714                 my @bad;
1715                 if (@bad = BadWords::check($text)) {
1716                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
1717                         return;
1718                 }
1719         }
1720
1721         # if this is a 'bad spotter' user then ignore it
1722         my $nossid = $from;
1723         $nossid =~ s/-\d+$//;
1724         if ($badspotter->in($nossid)) {
1725                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
1726                 return;
1727         }
1728
1729         if (is_callsign($to)) {
1730                 # local talks
1731                 my $dxchan;
1732                 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
1733                 $dxchan = DXChannel::get($to) unless $dxchan;
1734                 # check it...
1735                 if ($dxchan) {
1736                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
1737                                 if ($dxchan->is_user) {
1738                                         $dxchan->talk($from, $to, $via, $text, $onode);
1739                                         return;
1740                                 }
1741                         } else {
1742                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (local talk)");
1743                         }
1744                 }
1745
1746                 # convert to PC10 talks where appropriate
1747                 my $ref = Route::get($to);
1748                 if ($ref) {
1749                         # just go for the "best" one for now (rather than broadcast)
1750                         $dxchan = $ref->dxchan;
1751
1752                         # check it...
1753                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
1754                                 if ($dxchan->{do_pc9x}) {
1755                                         $dxchan->send($line);
1756                                 } else {
1757                                         $dxchan->talk($from, $to, $via, $text, $onode);
1758                                 }
1759                         } else {
1760                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
1761                         }
1762                         return;
1763                 }
1764
1765                 # otherwise, drop through and allow it to be broadcast
1766         } elsif ($to eq '*' || uc $to eq 'SYSOP' || uc $to eq 'WX') {
1767                 # announces
1768                 my $sysop = uc $to eq 'SYSOP' ? '*' : ' ';
1769                 my $wx = uc $to eq 'WX' ? '1' : '0';
1770                 my $local = $via eq 'LOCAL' ? '*' : $via;
1771
1772                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
1773                 return if $via eq 'LOCAL';
1774         } else {
1775                 # chat messages to non-pc9x nodes
1776                 $self->send_chat(1, pc12($from, $text, undef, $to, undef, $pcall), $from, '*', $text, $to, $pcall, '0');
1777         }
1778         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1779 }
1780
1781 # if get here then rebroadcast the thing with its Hop count decremented (if
1782 # there is one). If it has a hop count and it decrements to zero then don't
1783 # rebroadcast it.
1784 #
1785 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1786 #        REBROADCAST!!!!
1787 #
1788
1789 sub handle_default
1790 {
1791         my $self = shift;
1792         my $pcno = shift;
1793         my $line = shift;
1794         my $origin = shift;
1795
1796         unless (eph_dup($line)) {
1797                 if ($pcno >= 90) {
1798                         my $pcall = $_[1];
1799                         unless (is_callsign($pcall)) {
1800                                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1801                                 return;
1802                         }
1803                         my $t = $_[2];
1804                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
1805                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1806                 } else {
1807                         unless ($self->{isolate}) {
1808                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1809                         }
1810                 }
1811         }
1812 }
1813
1814 1;