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