c4344339f16131424117c3e1d36f6f6f9fbe5af4
[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-2007 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
36 use strict;
37
38 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
39                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
40                         $pingint $obscount %pc19list $chatdupeage $chatimportfn
41                         $investigation_int $pc19_version $myprot_version
42                         %nodehops $baddx $badspotter $badnode $censorpc
43                         $allowzero $decode_dk0wcy $send_opernam @checklist
44                         $eph_pc15_restime $pc9x_past_age $pc9x_dupe_age
45                         $pc10_dupe_age $pc92_slug_changes $last_pc92_slug
46                         $pc92Ain $pc92Cin $pc92Din $pc92Kin $pc9x_time_tolerance
47                         $pc92filterdef
48                    );
49
50 $pc9x_dupe_age = 60;                    # catch loops of circular (usually) D records
51 $pc10_dupe_age = 45;                    # just something to catch duplicate PC10->PC93 conversions
52 $pc92_slug_changes = 60*1;              # slug any changes going outward for this long
53 $last_pc92_slug = 0;                    # the last time we sent out any delayed add or del PC92s
54 $pc9x_time_tolerance = 15*60;   # the time on a pc9x is allowed to be out by this amount
55 $pc9x_past_age = (122*60)+              # maximum age in the past of a px9x (a config record might be the only
56 $pc9x_time_tolerance;           # thing a node might send - once an hour and we allow an extra hour for luck)
57                                 # this is actually the partition between "yesterday" and "today" but old.
58
59 $pc92filterdef = bless ([
60                           # tag, sort, field, priv, special parser
61                           ['call', 'c', 0],
62                           ['by', 'c', 0],
63                           ['dxcc', 'nc', 1],
64                           ['itu', 'ni', 2],
65                           ['zone', 'nz', 3],
66                          ], 'Filter::Cmd');
67
68 our %pc11q;
69 # this is a place to park an incoming PC11 in the sure and certain hope that
70 # a PC61 will be along soon. This has the side benefit that it will delay a
71 # a PC11 for one second - assuming that it is not removed by a PC61 version
72
73 # incoming talk commands
74 sub handle_10
75 {
76         my $self = shift;
77         my $pcno = shift;
78         my $line = shift;
79         my $origin = shift;
80         my $pc = shift;
81
82         # this is to catch loops caused by bad software ...
83         if (eph_dup($line, $pc10_dupe_age)) {
84                 return;
85         }
86
87         # will we allow it at all?
88         if ($censorpc) {
89                 my @bad;
90                 if (@bad = BadWords::check($pc->[3])) {
91                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
92                         return;
93                 }
94         }
95
96         # is it for me or one of mine?
97         my ($from, $to, $via, $call, $dxchan);
98         $from = $pc->[1];
99         if ($pc->[5] gt ' ') {
100                 $via = $pc->[2];
101                 $to = $pc->[5];
102         } else {
103                 $to = $pc->[2];
104         }
105
106         # if this is a 'nodx' node then ignore it
107         if ($badnode->in($pc->[6]) || ($via && $badnode->in($via))) {
108                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
109                 return;
110         }
111
112         # if this is a 'bad spotter' user then ignore it
113         my $nossid = $from;
114         $nossid =~ s/-\d+$//;
115         if ($badspotter->in($nossid)) {
116                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
117                 return;
118         }
119
120         # if we are converting announces to talk is it a dup?
121         if ($ann_to_talk) {
122                 if (AnnTalk::is_talk_candidate($from, $pc->[3]) && AnnTalk::dup($from, $to, $pc->[3])) {
123                         dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
124                         return;
125                 }
126         }
127
128         # convert this to a PC93, coming from mycall with origin set and process it as such
129         $main::me->normal(pc93($to, $from, $via, $pc->[3], $pc->[6]));
130 }
131
132 my $last;
133
134 # DX Spot handling
135 sub handle_11
136 {
137         my $self = shift;
138         my $pcno = shift;
139         my $line = shift;
140         my $origin = shift;
141         my $pc = shift;
142
143         # route 'foreign' pc26s
144         if ($pcno == 26) {
145                 if ($pc->[7] ne $main::mycall) {
146                         $self->route($pc->[7], $line);
147                         return;
148                 }
149         }
150
151 #       my ($hops) = $pc->[8] =~ /^H(\d+)/;
152
153         # is the spotted callsign blank? This should really be trapped earlier but it
154         # could break other protocol sentences. Also check for lower case characters.
155         if ($pc->[2] =~ /^\s*$/) {
156                 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
157                 return;
158         }
159         if ($pc->[2] =~ /[a-z]/) {
160                 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
161                 return;
162         }
163
164
165         # if this is a 'nodx' node then ignore it
166         if ($badnode->in($pc->[7])) {
167                 dbg("PCPROT: Bad Node $pc->[7], dropped") if isdbg('chanerr');
168                 return;
169         }
170
171         # if this is a 'bad spotter' or an unknown user then ignore it. BUT if it's got an IP address then allow it through
172         my $nossid = $pc->[6];
173         $nossid =~ s/-\d+$//;
174         if ($badspotter->in($nossid)) {
175                 dbg("PCPROT: Bad Spotter $pc->[6], dropped") if isdbg('chanerr');
176                 return;
177         }
178 #       unless (is_ipaddr($pc->[8]) || DXUser::get_current($pc->[6])) {
179 #               dbg("PCPROT: Unknown Spotter $pc->[6], dropped") if isdbg('chanerr');
180 #               return;
181 #       }
182
183         # convert the date to a unix date
184         my $d = cltounix($pc->[3], $pc->[4]);
185         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
186         if (!$d || (($pcno == 11 || $pcno == 61) && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
187                 dbg("PCPROT: Spot ignored, invalid date or out of range ($pc->[3] $pc->[4])\n") if isdbg('chanerr');
188                 return;
189         }
190
191         # is it 'baddx'
192         if ($baddx->in($pc->[2]) || BadWords::check($pc->[2])) {
193                 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
194                 return;
195         }
196
197         # do some de-duping
198         $pc->[5] =~ s/^\s+//;                   # take any leading blanks off
199         $pc->[2] = unpad($pc->[2]);             # take off leading and trailing blanks from spotted callsign
200         if ($pc->[2] =~ /BUST\w*$/) {
201                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
202                 return;
203         }
204         if ($censorpc) {
205                 my @bad;
206                 if (@bad = BadWords::check($pc->[5])) {
207                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
208                         return;
209                 }
210         }
211
212         my @spot = Spot::prepare($pc->[1], $pc->[2], $d, $pc->[5], $nossid, $pc->[7], $pc->[8]);
213
214         # global spot filtering on INPUT
215         if ($self->{inspotsfilter}) {
216                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
217                 unless ($filter) {
218                         dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
219                         return;
220                 }
221         }
222
223         # If is a new PC11, store it, releasing the one that is there (if any),
224         # if a PC61 comes along then dump the stored PC11
225         # If there is a different PC11 stored, release that one and store this PC11 instead,
226         my $key = join '|', @spot[0..2,4,7];
227         if (0) {
228         
229         if ($pc->[0] eq 'PC11') {
230                 my $r = [$main::systime, $key, \@spot, $line, $origin, $pc];
231                 if (!$last) {
232                         $last = [$main::systime, $key, \@spot, $line, $origin, $pc];
233                         dbg("PC11: $origin -> $key stored") if isdbg('pc11');
234                         return;
235                 } elsif ($key eq $last->[1]) { # same as last one
236                         dbg("PC11: $origin -> $key dupe dropped") if isdbg('pc11');
237                         return;
238                 } else {
239                         # it's a different PC11, kick the stored one onward and store this one instead,
240                         dbg("PC11: PC11 new $origin -> $key stored, $last->[4] -> $last->[1] passed onward") if isdbg('pc11');
241                         @spot = @{$last->[2]};
242                         $line = $last->[3];
243                         $origin = $last->[4];
244                         $pc = $last->[5];
245                         $last = $r;
246                 }
247         } elsif ($pc->[0] eq 'PC61') {
248                 if ($last) {
249                         if ($last->[1] eq $key) {
250                                 # dump $last and proceed with the PC61
251                                 dbg("PC11: $origin -> $key dropped in favour of PC61") if isdbg('pc11');
252                                 undef $last;
253                         } else {
254                                 # it's a different spot send out stored pc11
255                                 dbg("PC11: last $last->[4] -> $last->[1] different PC61 $origin -> $key, send PC11 first ") if isdbg('pc11');
256                                 $last->[1] = 'new pc61';
257                                 handle_11($self, 11, $last->[3], $last->[4], $last->[5]);
258                                 undef $last;
259                                 dbg("PC11: now process PC61 $origin -> $key") if isdbg('pc11');
260                         }
261                 }
262         } else {
263                 dbg("PC11: Unexpected line '$line' in bagging area (expecting PC61, PC11), ignored");
264                 return;
265         }
266
267 }
268         
269         # this goes after the input filtering, but before the add
270         # so that if it is input filtered, it isn't added to the dup
271         # list. This allows it to come in from a "legitimate" source
272         if (Spot::dup(@spot[0..4,5])) {
273                 dbg("PCPROT: Duplicate Spot $pc->[0] $key ignored\n") if isdbg('chanerr') || isdbg('dupespot');
274                 return;
275         }
276         
277         # add it
278         Spot::add(@spot);
279
280         my $ip = '';
281         $ip ||= $spot[14] if exists $spot[14];
282         if (isdbg('progress')) {
283                 my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
284                 $sip ||= '';
285                 my $d = ztime($spot[2]);
286                 my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
287                 $s .= $spot[3] ? " '$spot[3]'" : q{ ''};
288                 $s .=  " route: $origin";
289                 dbg($s);
290         }
291         
292         #
293         # @spot at this point contains:-
294         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
295         # then  spotted itu, spotted cq, spotters itu, spotters cq
296         # you should be able to route on any of these
297         #
298
299         # fix up qra locators of known users
300         my $user = DXUser::get_current($spot[4]);
301         if ($user) {
302                 my $qra = $user->qra;
303                 unless ($qra && is_qra($qra)) {
304                         my $lat = $user->lat;
305                         my $long = $user->long;
306                         if (defined $lat && defined $long) {
307                                 $user->qra(DXBearing::lltoqra($lat, $long));
308                                 $user->put;
309                         }
310                 }
311
312                 # send a remote command to a distant cluster if it is visible and there is no
313                 # qra locator and we havn't done it for a month.
314
315                 unless ($user->qra) {
316                         my $node;
317                         my $to = $user->homenode;
318                         my $last = $user->lastoper || 0;
319                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
320                                 my $cmd = "forward/opernam $spot[4]";
321                                 # send the rcmd but we aren't interested in the replies...
322                                 my $dxchan = $node->dxchan;
323                                 if ($dxchan && $dxchan->is_clx) {
324                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
325                                 } else {
326                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
327                                 }
328                                 if ($to ne $origin) {
329                                         $to = $origin;
330                                         $node = Route::Node::get($to);
331                                         if ($node) {
332                                                 $dxchan = $node->dxchan;
333                                                 if ($dxchan && $dxchan->is_clx) {
334                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
335                                                 } else {
336                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
337                                                 }
338                                         }
339                                 }
340                                 $user->lastoper($main::systime);
341                                 $user->put;
342                         }
343                 }
344         }
345
346         # local processing
347         if (defined &Local::spot) {
348                 my $r;
349                 eval {
350                         $r = Local::spot($self, @spot);
351                 };
352                 return if $r;
353         }
354
355         # DON'T be silly and send on PC26s!
356         return if $pcno == 26;
357
358         # send out the filtered spots
359         send_dx_spot($self, $line, @spot) if @spot;
360 }
361
362 # used to kick outstanding PC11 if required
363 sub pc11_process
364 {
365
366 }
367
368 # announces
369 sub handle_12
370 {
371         my $self = shift;
372         my $pcno = shift;
373         my $line = shift;
374         my $origin = shift;
375         my $pc = shift;
376
377         # announce duplicate checking
378         $pc->[3] =~ s/^\s+//;                   # remove leading blanks
379
380         if ($censorpc) {
381                 my @bad;
382                 if (@bad = BadWords::check($pc->[3])) {
383                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
384                         return;
385                 }
386         }
387
388         # if this is a 'nodx' node then ignore it
389         if ($badnode->in($pc->[5])) {
390                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
391                 return;
392         }
393
394         # if this is a 'bad spotter' user then ignore it
395         my $nossid = $pc->[1];
396         $nossid =~ s/-\d+$//;
397         if ($badspotter->in($nossid)) {
398                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
399                 return;
400         }
401
402         # ignore PC12s from origins that use PCxx protocol
403         my $oref = Route::get($origin);
404         if ($oref->do_pc9x) {
405                 dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
406                 return;
407         }
408
409         my $dxchan;
410
411         if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
412                 $self->send_chat(0, $line, @$pc[1..6]);
413         } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
414
415                 # ignore something that looks like a chat line coming in with sysop
416                 # flag - this is a kludge...
417                 if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
418                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
419                         return;
420                 }
421
422                 # here's a bit of fun, convert incoming ann with a callsign in the first word
423                 # or one saying 'to <call>' to a talk if we can route to the recipient
424                 if ($ann_to_talk) {
425                         my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
426                         if ($call) {
427                                 my $ref = Route::get($call);
428                                 if ($ref) {
429                                         $dxchan = $ref->dxchan;
430                                         $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
431                                         return;
432                                 }
433                         }
434                 }
435
436                 # send it
437                 $self->send_announce(0, $line, @$pc[1..6]);
438         } else {
439                 $self->route($pc->[2], $line);
440         }
441
442         # local processing
443         if (defined &Local::ann) {
444                 my $r;
445                 eval {
446                         $r = Local::ann($self, $line, @$pc[1..6]);
447                 };
448                 return if $r;
449         }
450 }
451
452 sub handle_15
453 {
454         my $self = shift;
455         my $pcno = shift;
456         my $line = shift;
457         my $origin = shift;
458         my $pc = shift;
459
460         if (eph_dup($line, $eph_pc15_restime)) {
461                 return;
462         } else {
463                 unless ($self->{isolate}) {
464                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
465                 }
466         }
467 }
468
469 # incoming user
470 sub handle_16
471 {
472         my $self = shift;
473         my $pcno = shift;
474         my $line = shift;
475         my $origin = shift;
476         my $pc = shift;
477
478         # general checks
479         my $dxchan;
480         my $ncall = $pc->[1];
481         my $newline = "PC16^";
482
483         # dos I want users from this channel?
484         unless ($self->user->wantpc16) {
485                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
486                 return;
487         }
488
489         # is it me?
490         if ($ncall eq $main::mycall) {
491                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
492                 return;
493         }
494
495         my $h;
496         $h = 1 if DXChannel::get($ncall);
497         if ($h && $self->{call} ne $ncall) {
498                 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
499                 return;
500         }
501
502         if (eph_dup($line)) {
503                 return;
504         }
505
506         # isolate now means only accept stuff from this call only
507         if ($self->{isolate} && $ncall ne $self->{call}) {
508                 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
509                 return;
510         }
511
512         my $parent = Route::Node::get($ncall);
513
514         if ($parent) {
515                 $dxchan = $parent->dxchan;
516                 if ($dxchan && $dxchan ne $self) {
517                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
518                         return;
519                 }
520
521                 # input filter if required
522                 return unless $self->in_filter_route($parent);
523         } else {
524                 $parent = Route::Node->new($ncall);
525         }
526
527         unless ($h) {
528                 if ($parent->via_pc92) {
529                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
530                         return;
531                 }
532         }
533
534         my $i;
535         my @rout;
536         for ($i = 2; $i < $#$pc; $i++) {
537                 my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
538                 next unless $call && $conf && defined $here && is_callsign($call);
539                 next if $call eq $main::mycall;
540
541                 eph_del_regex("^PC17\\^$call\\^$ncall");
542
543                 $conf = $conf eq '*';
544
545                 # reject this if we think it is a node already
546                 my $r = Route::Node::get($call);
547                 my $u = DXUser::get_current($call) unless $r;
548                 if ($r || ($u && $u->is_node)) {
549                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
550                         next;
551                 }
552
553                 $r = Route::User::get($call);
554                 my $flags = Route::here($here)|Route::conf($conf);
555
556                 if ($r) {
557                         my $au = $r->addparent($parent);
558                         if ($r->flags != $flags) {
559                                 $r->flags($flags);
560                                 $au = $r;
561                         }
562                         push @rout, $r if $h && $au;
563                 } else {
564                         my @ans = $parent->add_user($call, $flags);
565                         push @rout, @ans if $h && @ans;
566                 }
567
568                 # add this station to the user database, if required
569                 my $user = DXUser::get_current($ncall);
570                 $user = DXUser->new($call) unless $user;
571                 $user->homenode($parent->call) if !$user->homenode;
572                 $user->node($parent->call);
573                 $user->lastin($main::systime) unless DXChannel::get($call);
574                 $user->put;
575
576                 # send info to all logged in thingies
577                 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
578                 $self->tell_buddies('loginb', $call, $ncall);
579         }
580         if (@rout) {
581                 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
582 #               $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
583         }
584 }
585
586 # remove a user
587 sub handle_17
588 {
589         my $self = shift;
590         my $pcno = shift;
591         my $line = shift;
592         my $origin = shift;
593         my $pc = shift;
594
595         my $dxchan;
596         my $ncall = $pc->[2];
597         my $ucall = $pc->[1];
598
599         eph_del_regex("^PC16\\^$ncall.*$ucall");
600
601         # do I want users from this channel?
602         unless ($self->user->wantpc16) {
603                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
604                 return;
605         }
606
607         if ($ncall eq $main::mycall) {
608                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
609                 return;
610         }
611
612         # isolate now means only accept stuff from this call only
613         if ($self->{isolate} && $ncall ne $self->{call}) {
614                 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
615                 return;
616         }
617
618         my $uref = Route::User::get($ucall);
619         unless ($uref) {
620                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
621                 return;
622         }
623         my $parent = Route::Node::get($ncall);
624         unless ($parent) {
625                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
626                 return;
627         }
628
629         $dxchan = DXChannel::get($ncall);
630         if ($dxchan && $dxchan ne $self) {
631                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
632                 return;
633         }
634
635         unless ($dxchan) {
636                 if ($parent->via_pc92) {
637                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
638                         return;
639                 }
640         }
641
642         if (DXChannel::get($ucall)) {
643                 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
644                 return;
645         }
646
647         # input filter if required and then remove user if present
648 #               return unless $self->in_filter_route($parent);
649         $parent->del_user($uref);
650
651         # send info to all logged in thingies
652         my $user = DXUser::get_current($ncall);
653         $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
654         $self->tell_buddies('logoutb', $ucall, $ncall);
655
656         if (eph_dup($line)) {
657                 return;
658         }
659
660         $self->route_pc17($origin, $line, $parent, $uref);
661 #       $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
662 }
663
664 # link request
665 sub handle_18
666 {
667         my $self = shift;
668         my $pcno = shift;
669         my $line = shift;
670         my $origin = shift;
671         my $pc = shift;
672
673         $self->state('init');
674
675         my $parent = Route::Node::get($self->{call});
676
677         # record the type and version offered
678         if (my ($version) = $pc->[1] =~ /DXSpider Version: (\d+\.\d+)/) {
679                 $self->{version} = 53 + $version;
680                 $self->user->version(53 + $version);
681                 $parent->version(0 + $version);
682                 my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
683                 $self->{build} = 0 + $build;
684                 $self->user->build(0 + $build);
685                 $parent->build(0 + $build);
686                 dbg("$self->{call} = DXSpider version $version build $build");
687                 unless ($self->is_spider) {
688                         dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
689                         $self->user->sort('S');
690                         $self->user->put;
691                         $self->sort('S');
692                 }
693 #               $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
694         } else {
695                 dbg("$self->{call} = Unknown software ($pc->[1] $pc->[2])");
696                 $self->version(50.0);
697                 $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
698                 $self->user->version($self->version);
699         }
700
701         if ($pc->[1] =~ /\bpc9x/) {
702                 if ($self->{isolate}) {
703                         dbg("$self->{call} pc9x recognised, but node is isolated, using old protocol");
704                 } elsif (!$self->user->wantpc9x) {
705                         dbg("$self->{call} pc9x explicitly switched off, using old protocol");
706                 } else {
707                         $self->{do_pc9x} = 1;
708                         dbg("$self->{call} Set do PC9x");
709                 }
710         }
711
712         # first clear out any nodes on this dxchannel
713         my @rout = $parent->del_nodes;
714         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
715         $self->send_local_config();
716         $self->send(pc20());
717 }
718
719 sub check_add_node
720 {
721         my $call = shift;
722
723         # add this station to the user database, if required (don't remove SSID from nodes)
724         my $user = DXUser::get_current($call);
725         unless ($user) {
726                 $user = DXUser->new($call);
727                 $user->priv(1);         # I have relented and defaulted nodes
728                 $user->lockout(1);
729                 $user->homenode($call);
730                 $user->node($call);
731                 $user->sort('A');
732                 $user->lastin($main::systime); # this make it last longer than just this invocation
733                 $user->put;                             # just to make sure it gets written away!!!
734         }
735         return $user;
736 }
737
738 # incoming cluster list
739 sub handle_19
740 {
741         my $self = shift;
742         my $pcno = shift;
743         my $line = shift;
744         my $origin = shift;
745         my $pc = shift;
746
747         my $i;
748         my $newline = "PC19^";
749
750         # new routing list
751         my (@rout, @pc92out);
752
753         # first get the INTERFACE node
754         my $parent = Route::Node::get($self->{call});
755         unless ($parent) {
756                 dbg("PCPROT: my parent $self->{call} has disappeared");
757                 $self->disconnect;
758                 return;
759         }
760
761         my $h;
762
763         # parse the PC19
764         #
765         # We are making a major change from now on. We are only going to accept
766         # PC19s from directly connected nodes.  This means that we are probably
767         # going to throw away most of the data that we are being sent.
768         #
769         # The justification for this is that most of it is wrong or out of date
770         # anyway.
771         #
772         # From now on we are only going to believe PC92 data and locally connected
773         # non-pc92 nodes.
774         #
775         for ($i = 1; $i < $#$pc-1; $i += 4) {
776                 my $here = $pc->[$i];
777                 my $call = uc $pc->[$i+1];
778                 my $conf = $pc->[$i+2];
779                 my $ver = $pc->[$i+3];
780                 next unless defined $here && defined $conf && is_callsign($call);
781
782                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
783
784                 # check for sane parameters
785                 #                               $ver = 5000 if $ver eq '0000';
786                 next unless $ver && $ver =~ /^\d+$/;
787                 next if $ver < 5000;    # only works with version 5 software
788                 next if length $call < 3; # min 3 letter callsigns
789                 next if $call eq $main::mycall || $call eq $main::myalias;
790
791                 # check that this PC19 isn't trying to alter the wrong dxchan
792                 $h = 0;
793                 my $dxchan = DXChannel::get($call);
794                 if ($dxchan) {
795                         if ($dxchan == $self) {
796                                 $h = 1;
797                         } else {
798                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
799                                 next;
800                         }
801                 }
802
803                 # isolate now means only accept stuff from this call only
804                 if ($self->{isolate} && $call ne $self->{call}) {
805                         dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
806                         next;
807                 }
808
809                 my $user = check_add_node($call);
810
811 #               if (eph_dup($genline)) {
812 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
813 #                       next;
814 #               }
815
816
817                 unless ($h) {
818                         if ($parent->via_pc92) {
819                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
820                                 next;
821                         }
822                 }
823
824                 my $r = Route::Node::get($call);
825                 my $flags = Route::here($here)|Route::conf($conf);
826
827                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
828                 if ($r) {
829                         my $ar;
830                         if ($call ne $parent->call) {
831                                 if ($self->in_filter_route($r)) {
832                                         $ar = $parent->add($call, $ver, $flags);
833 #                                       push @rout, $ar if $ar;
834                                 } else {
835                                         next;
836                                 }
837                         }
838                         if ($r->version ne $ver || $r->flags != $flags) {
839                                 $r->version($ver);
840                                 $r->flags($flags);
841                         }
842                         push @rout, $r;
843                 } else {
844                         if ($call eq $self->{call} || $user->wantroutepc19) {
845                                 my $new = Route->new($call); # throw away
846                                 if ($self->in_filter_route($new)) {
847                                         my $ar = $parent->add($call, $ver, $flags);
848                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
849                                         push @rout, $ar if $ar;
850                                         push @pc92out, $r if $h;
851                                 } else {
852                                         next;
853                                 }
854                         }
855                 }
856
857                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
858                 my $mref = DXMsg::get_busy($call);
859                 $mref->stop_msg($call) if $mref;
860
861                 $user->lastin($main::systime) unless DXChannel::get($call);
862                 $user->put;
863         }
864
865         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
866         # but remember there will only be one (pair) these because any extras will be
867         # thrown away.
868         if (@rout) {
869 #               $self->route_pc21($self->{call}, $line, @rout);
870                 $self->route_pc19($self->{call}, $line, @rout);
871         }
872         if (@pc92out && !$pc92_slug_changes) {
873                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
874         }
875 }
876
877 # send local configuration
878 sub handle_20
879 {
880         my $self = shift;
881         my $pcno = shift;
882         my $line = shift;
883         my $origin = shift;
884         my $pc = shift;
885
886         if ($self->{do_pc9x} && $self->{state} ne 'init92') {
887                 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
888                 $self->{do_pc9x} = 0;
889         }
890         $self->send_local_config;
891         $self->send(pc22());
892         $self->state('normal');
893         $self->{lastping} = 0;
894         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
895 }
896
897 # delete a cluster from the list
898 #
899 # This should never occur for directly connected nodes.
900 #
901 sub handle_21
902 {
903         my $self = shift;
904         my $pcno = shift;
905         my $line = shift;
906         my $origin = shift;
907         my $pc = shift;
908
909         my $call = uc $pc->[1];
910
911         eph_del_regex("^PC1[679].*$call");
912
913         # if I get a PC21 from the same callsign as self then ignore it
914         if ($call eq $self->{call}) {
915                 dbg("PCPROT: self referencing PC21 from $self->{call}");
916                 return;
917         }
918
919         # for the above reason and also because of the check for PC21s coming
920         # in for self->call from outside being ignored further down
921         # we don't need any isolation code here, because we will never
922         # act on a PC21 with self->call in it.
923
924         my $parent = Route::Node::get($self->{call});
925         unless ($parent) {
926                 dbg("PCPROT: my parent $self->{call} has disappeared");
927                 $self->disconnect;
928                 return;
929         }
930
931         my @rout;
932
933         if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
934                 my $node = Route::Node::get($call);
935                 if ($node) {
936
937                         if ($node->via_pc92) {
938                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
939                                 return;
940                         }
941
942                         my $dxchan = DXChannel::get($call);
943                         if ($dxchan && $dxchan != $self) {
944                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
945                                 return;
946                         }
947
948                         # input filter it
949                         return unless $self->in_filter_route($node);
950
951                         # routing objects, force a PC21 if it is local
952                         push @rout, $node->del($parent);
953                         push @rout, $call if $dxchan && @rout == 0;
954                 }
955         } else {
956                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
957                 return;
958         }
959
960         if (eph_dup($line)) {
961                 return;
962         }
963
964         if (@rout) {
965                 $self->route_pc21($origin, $line, @rout);
966 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
967         }
968 }
969
970
971 sub handle_22
972 {
973         my $self = shift;
974         my $pcno = shift;
975         my $line = shift;
976         my $origin = shift;
977         my $pc = shift;
978
979         if ($self->{do_pc9x}) {
980                 if ($self->{state} ne 'init92') {
981                         $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
982                         $self->{do_pc9x} = 0;
983                 }
984         }
985         $self->{lastping} = 0;
986         $self->state('normal');
987         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
988 }
989
990 # WWV info
991 sub handle_23
992 {
993         my $self = shift;
994         my $pcno = shift;
995         my $line = shift;
996         my $origin = shift;
997         my $pc = shift;
998
999         # route foreign' pc27s
1000         if ($pcno == 27) {
1001                 if ($pc->[8] ne $main::mycall) {
1002                         $self->route($pc->[8], $line);
1003                         return;
1004                 }
1005         }
1006
1007
1008         # do some de-duping
1009         my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
1010         my $sfi = unpad($pc->[3]);
1011         my $k = unpad($pc->[4]);
1012         my $i = unpad($pc->[5]);
1013         my ($r) = $pc->[6] =~ /R=(\d+)/;
1014         $r = 0 unless $r;
1015         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1016                 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
1017                 return;
1018         }
1019
1020         # global wwv filtering on INPUT
1021         my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
1022         if ($self->{inwwvfilter}) {
1023                 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
1024                 unless ($filter) {
1025                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1026                         return;
1027                 }
1028         }
1029         $pc->[7] =~ s/-\d+$//o;         # remove spotter's ssid
1030         if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
1031                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1032                 return;
1033         }
1034
1035         # note this only takes the first one it gets
1036         Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1037         dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
1038
1039         if (defined &Local::wwv) {
1040                 my $rep;
1041                 eval {
1042                         $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1043                 };
1044                 return if $rep;
1045         }
1046
1047         # DON'T be silly and send on PC27s!
1048         return if $pcno == 27;
1049
1050         # broadcast to the eager world
1051         send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1052 }
1053
1054 # set here status
1055 sub handle_24
1056 {
1057         my $self = shift;
1058         my $pcno = shift;
1059         my $line = shift;
1060         my $origin = shift;
1061         my $pc = shift;
1062
1063         my $call = uc $pc->[1];
1064         my ($nref, $uref);
1065         $nref = Route::Node::get($call);
1066         $uref = Route::User::get($call);
1067         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1068
1069         if (eph_dup($line)) {
1070                 return;
1071         }
1072
1073         $nref->here($pc->[2]) if $nref;
1074         $uref->here($pc->[2]) if $uref;
1075         my $ref = $nref || $uref;
1076         return unless $self->in_filter_route($ref);
1077
1078         $self->route_pc24($origin, $line, $ref, $pc->[3]);
1079 }
1080
1081 # merge request
1082 sub handle_25
1083 {
1084         my $self = shift;
1085         my $pcno = shift;
1086         my $line = shift;
1087         my $origin = shift;
1088         my $pc = shift;
1089
1090         if ($pc->[1] ne $main::mycall) {
1091                 $self->route($pc->[1], $line);
1092                 return;
1093         }
1094         if ($pc->[2] eq $main::mycall) {
1095                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1096                 return;
1097         }
1098
1099         Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1100
1101         # spots
1102         if ($pc->[3] > 0) {
1103                 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1104                 my $in;
1105                 foreach $in (@in) {
1106                         $self->send(pc26(@{$in}[0..4], $pc->[2]));
1107                 }
1108         }
1109
1110         # wwv
1111         if ($pc->[4] > 0) {
1112                 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1113                 my $in;
1114                 foreach $in (@in) {
1115                         $self->send(pc27(@{$in}[0..5], $pc->[2]));
1116                 }
1117         }
1118 }
1119
1120 sub handle_26 {goto &handle_11}
1121 sub handle_27 {goto &handle_23}
1122
1123 # mail/file handling
1124 sub handle_28
1125 {
1126         my $self = shift;
1127         my $pcno = shift;
1128         my $line = shift;
1129         my $origin = shift;
1130         my $pc = shift;
1131
1132         if ($pc->[1] eq $main::mycall) {
1133                 no strict 'refs';
1134                 my $sub = "DXMsg::handle_$pcno";
1135                 &$sub($self, @$pc);
1136         } else {
1137                 $self->route($pc->[1], $line) unless $self->is_clx;
1138         }
1139 }
1140
1141 sub handle_29 {goto &handle_28}
1142 sub handle_30 {goto &handle_28}
1143 sub handle_31 {goto &handle_28}
1144 sub handle_32 {goto &handle_28}
1145 sub handle_33 {goto &handle_28}
1146
1147 sub handle_34
1148 {
1149         my $self = shift;
1150         my $pcno = shift;
1151         my $line = shift;
1152         my $origin = shift;
1153         my $pc = shift;
1154
1155         if (eph_dup($line, $eph_pc34_restime)) {
1156                 return;
1157         } else {
1158                 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1159         }
1160 }
1161
1162 # remote command replies
1163 sub handle_35
1164 {
1165         my $self = shift;
1166         my $pcno = shift;
1167         my $line = shift;
1168         my $origin = shift;
1169         my $pc = shift;
1170
1171         eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1172         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1173 }
1174
1175 sub handle_36 {goto &handle_34}
1176
1177 # database stuff
1178 sub handle_37
1179 {
1180         my $self = shift;
1181         my $pcno = shift;
1182         my $line = shift;
1183         my $origin = shift;
1184         my $pc = shift;
1185
1186         if ($pc->[1] eq $main::mycall) {
1187                 no strict 'refs';
1188                 my $sub = "DXDb::handle_$pcno";
1189                 &$sub($self, @$pc);
1190         } else {
1191                 $self->route($pc->[1], $line) unless $self->is_clx;
1192         }
1193 }
1194
1195 # node connected list from neighbour
1196 sub handle_38
1197 {
1198         my $self = shift;
1199         my $pcno = shift;
1200         my $line = shift;
1201         my $origin = shift;
1202         my $pc = shift;
1203 }
1204
1205 # incoming disconnect
1206 sub handle_39
1207 {
1208         my $self = shift;
1209         my $pcno = shift;
1210         my $line = shift;
1211         my $origin = shift;
1212         my $pc = shift;
1213
1214         if ($pc->[1] eq $self->{call}) {
1215                 $self->disconnect(1);
1216         } else {
1217                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1218         }
1219 }
1220
1221 sub handle_40 {goto &handle_28}
1222
1223 # user info
1224 sub handle_41
1225 {
1226         my $self = shift;
1227         my $pcno = shift;
1228         my $line = shift;
1229         my $origin = shift;
1230         my $pc = shift;
1231
1232         my $call = $pc->[1];
1233         my $sort = $pc->[2];
1234         my $val = $pc->[3];
1235
1236         my $l = "PC41^$call^$sort";
1237         if (eph_dup($l, $eph_info_restime)) {
1238                 return;
1239         }
1240
1241         # input filter if required
1242         #                       my $ref = Route::get($call) || Route->new($call);
1243         #                       return unless $self->in_filter_route($ref);
1244
1245         if ($val eq $sort || $val =~ /^\s*$/) {
1246                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1247                 return;
1248         }
1249
1250         if ($call eq $main::mycall || $call eq $main::myalias) {
1251                 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1252                 return;
1253         }
1254         my $chan = DXChannel::get($call);
1255         if ($chan) {
1256                 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1257                 return;
1258         }
1259
1260         # add this station to the user database, if required
1261         my $user = DXUser::get_current($call);
1262         $user = DXUser->new($call) unless $user;
1263
1264         if ($sort == 1) {
1265                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1266                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1267                         return;
1268                 }
1269                 $user->name($val);
1270         } elsif ($sort == 2) {
1271                 $user->qth($val);
1272         } elsif ($sort == 3) {
1273                 if (is_latlong($val)) {
1274                         my ($lat, $long) = DXBearing::stoll($val);
1275                         $user->lat($lat) if $lat;
1276                         $user->long($long) if $long;
1277                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1278                 } else {
1279                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1280                         return;
1281                 }
1282         } elsif ($sort == 4) {
1283                 $user->homenode($val);
1284         } elsif ($sort == 5) {
1285                 if (is_qra(uc $val)) {
1286                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1287                         $user->lat($lat) if $lat && !$user->lat;
1288                         $user->long($long) if $long && !$user->long;
1289                         $user->qra(uc $val);
1290                 } else {
1291                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1292                         return;
1293                 }
1294         }
1295         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1296         $user->put;
1297
1298         unless ($self->{isolate}) {
1299                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1300         }
1301
1302         #  perhaps this IS what we want after all
1303         #                       $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1304 }
1305
1306 sub handle_42 {goto &handle_28}
1307
1308
1309 # database
1310 sub handle_44 {goto &handle_37}
1311 sub handle_45 {goto &handle_37}
1312 sub handle_46 {goto &handle_37}
1313 sub handle_47 {goto &handle_37}
1314 sub handle_48 {goto &handle_37}
1315
1316 # message and database
1317 sub handle_49
1318 {
1319         my $self = shift;
1320         my $pcno = shift;
1321         my $line = shift;
1322         my $origin = shift;
1323         my $pc = shift;
1324
1325         if (eph_dup($line)) {
1326                 return;
1327         }
1328
1329         if ($pc->[1] eq $main::mycall) {
1330                 DXMsg::handle_49($self, @$pc);
1331         } else {
1332                 $self->route($pc->[1], $line) unless $self->is_clx;
1333         }
1334 }
1335
1336 # keep alive/user list
1337 sub handle_50
1338 {
1339         my $self = shift;
1340         my $pcno = shift;
1341         my $line = shift;
1342         my $origin = shift;
1343         my $pc = shift;
1344
1345         return if (eph_dup($line));
1346
1347         my $call = $pc->[1];
1348
1349         my $node = Route::Node::get($call);
1350         if ($node) {
1351                 return unless $node->call eq $self->{call};
1352                 $node->usercount($pc->[2]) unless $node->users;
1353                 $node->reset_obs;
1354                 $node->PC92C_dxchan($self->call, $pc->[-1]);
1355
1356                 # input filter if required
1357 #               return unless $self->in_filter_route($node);
1358
1359                 unless ($self->{isolate}) {
1360                         DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1361                 }
1362 #               $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1363         }
1364 }
1365
1366 # incoming ping requests/answers
1367 sub handle_51
1368 {
1369         my $self = shift;
1370         my $pcno = shift;
1371         my $line = shift;
1372         my $origin = shift;
1373         my $pc = shift;
1374
1375         my $to = $pc->[1];
1376         my $from = $pc->[2];
1377         my $flag = $pc->[3];
1378
1379         if ($to eq $main::myalias) {
1380                 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1381                 return;
1382         }
1383
1384         # is it for us?
1385         if ($to eq $main::mycall) {
1386                 if ($flag == 1) {
1387                         $self->send(pc51($from, $to, '0'));
1388                 } else {
1389                         DXXml::Ping::handle_ping_reply($self, $from);
1390                 }
1391         } else {
1392                 if (eph_dup($line)) {
1393                         return;
1394                 }
1395                 # route down an appropriate thingy
1396                 $self->route($to, $line);
1397         }
1398 }
1399
1400 sub handle_61 { goto &handle_11; }
1401
1402 # dunno but route it
1403 sub handle_75
1404 {
1405         my $self = shift;
1406         my $pcno = shift;
1407         my $line = shift;
1408         my $origin = shift;
1409         my $pc = shift;
1410
1411         my $call = $pc->[1];
1412         if ($call ne $main::mycall) {
1413                 $self->route($call, $line);
1414         }
1415 }
1416
1417 # WCY broadcasts
1418 sub handle_73
1419 {
1420         my $self = shift;
1421         my $pcno = shift;
1422         my $line = shift;
1423         my $origin = shift;
1424         my $pc = shift;
1425
1426         my $call = $pc->[1];
1427
1428         # do some de-duping
1429         my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1430         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1431                 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1432                 return;
1433         }
1434         $pc = [ map { unpad($_) } @$pc ];
1435         if (WCY::dup($d)) {
1436                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1437                 return;
1438         }
1439
1440         my $wcy = WCY::update($d, @$pc[2..12]);
1441         dbg("WCY: <$pc->[2]> K=$pc->[5] expK=$pc->[6] A=$pc->[4] R=$pc->[7] SFI=$pc->[3] SA=$pc->[8] GMF=$pc->[9] Au=$pc->[10] $pc->[11]\@$pc->[12] route: $origin") if isdbg('progress');
1442
1443         if (defined &Local::wcy) {
1444                 my $rep;
1445                 eval {
1446                         $rep = Local::wcy($self, @$pc[1..12]);
1447                 };
1448                 return if $rep;
1449         }
1450
1451         # broadcast to the eager world
1452         send_wcy_spot($self, $line, $d, @$pc[2..12]);
1453 }
1454
1455 # remote commands (incoming)
1456 sub handle_84
1457 {
1458         my $self = shift;
1459         my $pcno = shift;
1460         my $line = shift;
1461         my $origin = shift;
1462         my $pc = shift;
1463
1464         $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1465 }
1466
1467 # remote command replies
1468 sub handle_85
1469 {
1470         my $self = shift;
1471         my $pcno = shift;
1472         my $line = shift;
1473         my $origin = shift;
1474         my $pc = shift;
1475
1476         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1477 }
1478
1479 # decode a pc92 call: flag call : version : build
1480 sub _decode_pc92_call
1481 {
1482         my $icall = shift;
1483         my @part = split /:/, $icall;
1484         my ($flag, $call) = unpack "A A*", $part[0];
1485         unless (defined $flag && $flag ge '0' && $flag le '7') {
1486                 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1487                 return ();
1488         }
1489         unless ($call && is_callsign($call)) {
1490                 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1491                 return ();
1492         }
1493         my $is_node = $flag & 4;
1494         my $is_extnode = $flag & 2;
1495         my $here = $flag & 1;
1496         my $ip  = $part[3];
1497         $ip ||= $part[1] if $part[1] && $part[1] !~ /^\d+$/ && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
1498         $ip =~ s/,/:/g if $ip;
1499         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1500 }
1501
1502 # decode a pc92 call: flag call : version : build
1503 sub _encode_pc92_call
1504 {
1505         my $ref = shift;
1506
1507         # plain call or value
1508         return $ref unless ref $ref;
1509
1510         my $ext = shift || 0;
1511         my $flag = 0;
1512         my $call = $ref->call;
1513         my $extra = '';
1514         $flag |= $ref->here ? 1 : 0;
1515         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1516                 $flag |= 4;
1517                 my $dxchan = DXChannel::get($call);
1518                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1519                 if (($ext & 1) && $ref->version) {
1520                         my $version = $ref->version || 1.0;
1521                         $version =  $version * 100 + 5300 if $version < 50;
1522                         $extra .= ":" . $version;
1523                 }
1524         }
1525         if (($ext & 2) && $ref->ip) {
1526                 my $ip = $ref->ip;
1527                 $ip =~ s/:/,/g;
1528                 $extra .= ':' . $ip;
1529         }
1530         return "$flag$call$extra";
1531 }
1532
1533 my %things_add;
1534 my %things_del;
1535
1536 sub _add_thingy
1537 {
1538         my $parent = shift;
1539         my $s = shift;
1540         my $dxchan = shift;
1541         my $hops = shift;
1542
1543         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1544         my @rout;
1545
1546         # remove spurious IPV6 prefix on IPV4 addresses
1547         $ip =~ s/^::ffff:// if $ip;
1548         
1549         if ($call) {
1550                 my $ncall = $parent->call;
1551                 if ($ncall ne $call) {
1552                         if ($is_node) {
1553                                 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1554                                 @rout = $parent->add($call, $version, Route::here($here), $ip);
1555                                 my $r = Route::Node::get($call);
1556                                 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1557                                 if ($ip) {
1558                                         $r->ip($ip);
1559                                         Log('DXProt', "PC92A $call -> $ip on $ncall");
1560                                 }
1561                         } else {
1562                                 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1563                                 @rout = $parent->add_user($call, Route::here($here), $ip);
1564                                 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1565                                 my $r = Route::User::get($call);
1566                                 if ($ip) {
1567                                         $r->ip($ip);
1568                                         Log('DXProt', "PC92A $call -> $ip on $ncall");
1569                                 }
1570                         }
1571                         if ($pc92_slug_changes && $parent == $main::routeroot) {
1572                                 $things_add{$call} = Route::get($call);
1573                                 delete $things_del{$call};
1574                         }
1575                 } else {
1576                         dbgprintring(10) if isdbg('nologchan');
1577                         dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1578                 }
1579         }
1580         
1581         return @rout;
1582 }
1583
1584 sub _del_thingy
1585 {
1586         my $parent = shift;
1587         my $s = shift;
1588         my $dxchan = shift;
1589         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1590         my @rout;
1591         if ($call) {
1592                 my $ref;
1593                 if ($is_node) {
1594                         $ref = Route::Node::get($call);
1595                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1596                         @rout = $ref->del($parent) if $ref;
1597                 } else {
1598                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1599                         $ref = Route::User::get($call);
1600                         if ($ref) {
1601                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1602                                 @rout = $parent->del_user($ref);
1603                         }
1604                 }
1605                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1606                         $things_del{$call} = $ref unless exists $things_add{$call};
1607                         delete $things_add{$call};
1608                 }
1609         }
1610         return @rout;
1611 }
1612
1613 # this will only happen if we are slugging changes and
1614 # there are some changes to be sent, it will create an add or a delete
1615 # or both
1616 sub gen_pc92_changes
1617 {
1618         my @add = values %things_add;
1619         my @del = values %things_del;
1620         return (\@add, \@del);
1621 }
1622
1623 sub clear_pc92_changes
1624 {
1625         %things_add = %things_del = ();
1626         $last_pc92_slug = $main::systime;
1627 }
1628
1629 my $_last_time;
1630 my $_last_occurs;
1631 my $_last_pc9x_id;
1632
1633 sub last_pc9x_id
1634 {
1635         return $_last_pc9x_id;
1636 }
1637
1638 sub gen_pc9x_t
1639 {
1640         if (!$_last_time || $_last_time != $main::systime) {
1641                 $_last_time = $main::systime;
1642                 $_last_occurs = 0;
1643                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1644         } else {
1645                 $_last_occurs++;
1646                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1647         }
1648 }
1649
1650 sub check_pc9x_t
1651 {
1652         my $call = shift;
1653         my $t = shift;
1654         my $pc = shift;
1655         my $create = shift;
1656
1657         # check that the time is between 0 >= $t < 86400
1658         unless ($t >= 0 && $t < 86400) {
1659                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1660                 return undef;
1661         }
1662
1663         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1664         my $now = $main::systime - $main::systime_daystart ;
1665         my $diff = abs($now - $t);
1666         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1667                 my $c = ref $call ? $call->call : $call;
1668                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1669                 return undef;
1670         }
1671
1672         my $parent = ref $call ? $call : Route::Node::get($call);
1673         if ($parent) {
1674                 # we only do this for external calls whose routing table
1675                 # record come and go. The reference for mycall is permanent
1676                 # and not that frequently used, it also never times out, so
1677                 # the id on it is completely unreliable. Besides, only commands
1678                 # originating on this box will go through this code...
1679                 if ($parent->call ne $main::mycall) {
1680                         my $lastid = $parent->lastid;
1681                         if (defined $lastid) {
1682                                 if ($t < $lastid) {
1683                                         # note that this is where we determine whether this pc9x has come in yesterday
1684                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1685                                         # duplicate sentence. To determine this we need to do some module 86400
1686                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1687                                         # low numbers that it is a new sentence.
1688                                         #
1689                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1690                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1691                                         # 86378 respectively in the calculation below).
1692                                         #
1693                                         if ($t+86400-$lastid > $pc9x_past_age) {
1694                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1695                                                 return undef;
1696                                         }
1697                                 } elsif ($t == $lastid) {
1698                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1699                                         return undef;
1700                                 } else {
1701                                         # check that if we have a low number in lastid that yesterday's numbers
1702                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1703                                         if ($lastid+86400-$t < $pc9x_past_age) {
1704                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1705                                                 return undef;
1706                                         }
1707                                 }
1708                         }
1709                 }
1710         } elsif ($create) {
1711                 $parent = Route::Node->new($call);
1712         } else {
1713                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1714                 return undef;
1715         }
1716         if (isdbg('pc92dedupe')) {
1717                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1718                 my $val = $parent->{lastid};
1719                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1720                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1721         }
1722         $parent->lastid($t);
1723
1724         return $parent;
1725 }
1726
1727 sub pc92_handle_first_slot
1728 {
1729         my $self = shift;
1730         my $slot = shift;
1731         my $parent = shift;
1732         my $t = shift;
1733         my $hops = shift;
1734         my $oparent = $parent;
1735
1736         my @radd;
1737
1738         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1739         if ($call && $is_node) {
1740                 if ($call eq $main::mycall) {
1741                         dbg("PCPROT: $call looped back onto \$main::mycall ($main::mycall), ignored") if isdbg('chan');
1742                         return;
1743                 }
1744                 if ($call eq $main::myalias) {
1745                         dbg("PCPROT: $call looped back onto \$main::myalias ($main::myalias), ignored") if isdbg('chan');
1746                         return;
1747                 }
1748                 # this is only accepted from my "self".
1749                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1750                 # locally connected. Local nodes always take precedence. But we remember the lastid
1751                 # to try to reduce the number of dupe PC92s for this external node.
1752                 if (DXChannel::get($call) && $call ne $self->{call}) {
1753                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1754                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1755                         return;
1756                 }
1757                 if ($is_extnode) {
1758                         # reparent to external node (note that we must have received a 'C' or 'A' record
1759                         # from the true parent node for this external before we get one for the this node
1760                         unless ($parent = Route::Node::get($call)) {
1761                                 if ($is_extnode && $oparent) {
1762                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
1763                                         $parent = $radd[0];
1764                                 } else {
1765                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1766                                         return;
1767                                 }
1768                         }
1769                         $parent = check_pc9x_t($call, $t, 92) || return;
1770                         $parent->via_pc92(1);
1771                         $parent->PC92C_dxchan($self->{call}, $hops);
1772                 }
1773         } else {
1774                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1775                 return;
1776         }
1777         $parent->here(Route::here($here));
1778         $parent->version($version || $pc19_version) if $version;
1779         $parent->build($build) if $build;
1780         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1781         return ($parent, @radd);
1782 }
1783
1784 # DXSpider routing entries
1785 sub handle_92
1786 {
1787         my $self = shift;
1788         my $pcno = shift;
1789         my $line = shift;
1790         my $origin = shift;
1791         my $pc = shift;
1792
1793         my (@radd, @rdel);
1794
1795         my $pcall = $pc->[1];
1796         my $t = $pc->[2];
1797         my $sort = $pc->[3];
1798         my $hops = $pc->[-1];
1799
1800         # this catches loops of A/Ds
1801 #       if (eph_dup($line, $pc9x_dupe_age)) {
1802 #               return;
1803 #       }
1804
1805         if ($pcall eq $main::mycall) {
1806                 dbg("PCPROT: looped back, ignored") if isdbg('chan');
1807                 return;
1808         }
1809
1810         if ($pcall eq $main::myalias) {
1811                 dbg("PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored") if isdbg('chan');
1812                 return;
1813         }
1814
1815         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1816                 if ($self->{isolate}) {
1817                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1818                         return;
1819                 } elsif (!$self->user->wantpc9x) {
1820                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1821                         return;
1822                 } else {
1823                         $self->state('init92');
1824                         $self->{do_pc9x} = 1;
1825                         dbg("DXPROT: Do pc9x set on $pcall");
1826                 }
1827         }
1828         unless ($self->{do_pc9x}) {
1829                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1830                 return;
1831         }
1832
1833         # don't create routing entries for D records that don't already exist
1834         # this is what causes all those PC92 loops!
1835         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1836         my $oparent = $parent;
1837
1838         $parent->do_pc9x(1);
1839         $parent->via_pc92(1);
1840
1841         if ($sort eq 'F' || $sort eq 'R') {
1842
1843                 # this is the route finding section
1844                 # here is where the consequences of the 'find' command
1845                 # are dealt with
1846
1847                 my $from = $pc->[4];
1848                 my $target = $pc->[5];
1849
1850                 if ($sort eq 'F') {
1851                         my $flag;
1852                         my $ref;
1853                         my $dxchan;
1854                         if ($ref = DXChannel::get($target)) {
1855                                 $flag = 1;              # we are directly connected
1856                         } else {
1857                                 $ref = Route::get($target);
1858                                 $dxchan = $ref->dxchan;
1859                                 $flag = 2;
1860                         }
1861                         if ($ref && $flag && $dxchan) {
1862                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1863                                 return;
1864                         }
1865                 } elsif ($sort eq 'R') {
1866                         if (my $dxchan = DXChannel::get($from)) {
1867                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1868                         } else {
1869                                 my $ref = Route::get($from);
1870                                 if ($ref) {
1871                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1872                                         if (@dxchan) {
1873                                                 $_->send($line) for @dxchan;
1874                                         } else {
1875                                                 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1876                                         }
1877                                 } else {
1878                                         dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1879                                 }
1880                         }
1881                         return;
1882                 }
1883
1884         } elsif ($sort eq 'K') {
1885                 $pc92Kin += length $line;
1886
1887                 # remember the last channel we arrived on
1888                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1889
1890                 my @ent = _decode_pc92_call($pc->[4]);
1891
1892                 if (@ent) {
1893                         my $add;
1894
1895                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1896                         return unless $parent; # dupe
1897
1898                         push @radd, $add if $add;
1899                         $parent->reset_obs;
1900                         $parent->version($ent[4]) if $ent[4];
1901                         $parent->build($ent[5]) if $ent[5];
1902
1903                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1904                 }
1905         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1906
1907                 $pc92Ain += length $line if $sort eq 'A';
1908                 $pc92Cin += length $line if $sort eq 'C';
1909                 $pc92Din += length $line if $sort eq 'D';
1910
1911                 # remember the last channel we arrived on
1912                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1913
1914                 # this is the main route section
1915                 # here is where all the routes are created and destroyed
1916
1917                 # cope with missing duplicate node calls in the first slot
1918                 my $me = $pc->[4] || '';
1919                 $me ||= _encode_pc92_call($parent) unless $me ;
1920
1921                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
1922
1923                 if (@ent) {
1924
1925                         # look at the first one which will always be a node of some sort
1926                         # except in the case of 'A' or 'D' in which the $pcall is used
1927                         # otherwise use the node call and update any information
1928                         # that needs to be done.
1929                         my $add;
1930
1931                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
1932                         return unless $parent; # dupe
1933
1934                         shift @ent;
1935                         push @radd, $add if $add;
1936                 }
1937
1938                 # do a pass through removing any references to either mycall
1939                 my @nent;
1940                 for (@ent) {
1941                         my $dxc;
1942                         next unless $_ && @$_;
1943                         if ($_->[0] eq $main::mycall) {
1944                                 dbg("PCPROT: $_->[0] refers to me, ignored") if isdbg('chanerr');
1945                                 next;
1946                         }
1947                         push @nent, $_;
1948                 }
1949
1950                 if ($sort eq 'A') {
1951                         for (@nent) {
1952                                 push @radd, _add_thingy($parent, $_, $self, $hops);
1953                         }
1954                 } elsif ($sort eq 'D') {
1955                         for (@nent) {
1956                                 push @rdel, _del_thingy($parent, $_, $self);
1957                         }
1958                 } elsif ($sort eq 'C') {
1959                         my (@nodes, @users);
1960
1961                         # we reset obscounts on config records as well as K records
1962                         $parent->reset_obs;
1963                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1964
1965                         #
1966                         foreach my $r (@nent) {
1967                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1968                                 if ($r->[0]) {
1969                                         if ($r->[1]) {
1970                                                 push @nodes, $r->[0];
1971                                         } else {
1972                                                 push @users, $r->[0];
1973                                         }
1974                                 } else {
1975                                         dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1976                                 }
1977                         }
1978
1979                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1980
1981                         # add users here
1982                         foreach my $r (@nent) {
1983                                 my $call = $r->[0];
1984                                 if ($call) {
1985                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
1986                                 }
1987                         }
1988                         # del users here
1989                         foreach my $r (@$dnodes) {
1990                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
1991                         }
1992                         foreach my $r (@$dusers) {
1993                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
1994                         }
1995
1996                         # remember this last PC92C for rebroadcast on demand
1997                         $parent->last_PC92C($line);
1998                 } else {
1999                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2000                         return;
2001                 }
2002
2003                 foreach my $r (@rdel) {
2004                         next unless $r;
2005
2006                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2007                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2008                 }
2009                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2010                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2011                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2012                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2013                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2014         }
2015
2016         # broadcast it if we get here
2017         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2018 }
2019
2020 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2021 # might be on two or more nodes at the same time or that there may be more than
2022 # one equal distance neighbour to a node.
2023 #
2024 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2025 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2026 # each and then combined to give a set of dxchans to send the PC9x record down
2027 #
2028 sub find_pc9x_routes
2029 {
2030         my $to = shift;
2031         my $ref = Route::get($to);
2032         my @parent;
2033         my %cand;
2034
2035         if ($ref->isa('Route::User')) {
2036                 my $dxchan = DXChannel::get($to);
2037                 push @parent, $to if $dxchan;
2038                 push @parent, $ref->parents;
2039         } else {
2040                 @parent = $to;
2041         }
2042         foreach my $p (@parent) {
2043                 my $lasthops;
2044                 my @routes = Route::findroutes($p);
2045                 foreach my $r (@routes) {
2046                         $lasthops = $r->[0] unless defined $lasthops;
2047                         if ($r->[0] == $lasthops) {
2048                                 $cand{$r->[1]->call} = $r->[1];
2049                         } else {
2050                                 last;
2051                         }
2052                 }
2053         }
2054         return values %cand;
2055 }
2056
2057 sub handle_93
2058 {
2059         my $self = shift;
2060         my $pcno = shift;
2061         my $line = shift;
2062         my $origin = shift;
2063         my $pc = shift;
2064
2065 #       $self->{do_pc9x} ||= 1;
2066
2067         my $pcall = $pc->[1];                   # this is now checked earlier
2068
2069         # remember that we are converting PC10->PC93 and self will be $main::me if it
2070         # comes from us
2071         unless ($self->{do_pc9x}) {
2072                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2073                 return;
2074         }
2075
2076         my $t = $pc->[2];
2077         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2078
2079         my $to = uc $pc->[3];
2080         my $from = uc $pc->[4];
2081         my $via = uc $pc->[5];
2082         my $text = $pc->[6];
2083         my $onode = uc $pc->[7];
2084         $onode = $pcall if @$pc <= 8;
2085
2086         # this is catch loops caused by bad software ...
2087         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2088                 return;
2089         }
2090
2091         if (isdbg('progress')) {
2092                 my $vs = $via ne '*' ? " via $via" : ''; 
2093                 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2094                 dbg($s);
2095         }
2096         
2097         # will we allow it at all?
2098         if ($censorpc) {
2099                 my @bad;
2100                 if (@bad = BadWords::check($text)) {
2101                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2102                         return;
2103                 }
2104         }
2105
2106         # if this is a 'bad spotter' user then ignore it
2107         my $nossid = $from;
2108         $nossid =~ s/-\d+$//;
2109         if ($badspotter->in($nossid)) {
2110                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2111                 return;
2112         }
2113
2114         # ignore PC93 coming in from outside this node with a target of local
2115         if ($to eq 'LOCAL' && $self != $main::me) {
2116                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2117                 return;
2118         }
2119
2120         # if it is routeable then then treat it like a talk
2121         my $ref = Route::get($to);
2122         if ($ref) {
2123                 my $dxchan;
2124
2125                 # convert to PC10 or local talks where appropriate
2126                 # PC93 capable nodes of the same hop count all get a copy
2127                 # if there is a PC10 node then it will get a copy and that
2128                 # will be it. Hopefully such a node will not figure highly
2129                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2130                 # note that both local and PC93s at the same time are possible if the
2131                 # user on more than one node.
2132                 my @routes = find_pc9x_routes($to);
2133                 my $lasthops;
2134                 foreach $dxchan (@routes) {
2135                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2136                                 if ($dxchan->{do_pc9x}) {
2137                                         $dxchan->send($line);
2138                                 } else {
2139                                         $dxchan->talk($from, $to, $via, $text, $onode);
2140                                 }
2141                         } else {
2142                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2143                         }
2144                 }
2145                 return;
2146
2147         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2148                 # announces
2149                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2150                 my $wx = $to eq 'WX' ? '1' : '0';
2151                 my $local = $via eq 'LOCAL' ? '*' : $via;
2152
2153                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2154                 return if $via eq 'LOCAL';
2155         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2156                 # chat messages really only locally connected users
2157                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2158         }
2159
2160         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2161         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2162 }
2163
2164 # if get here then rebroadcast the thing with its Hop count decremented (if
2165 # there is one). If it has a hop count and it decrements to zero then don't
2166 # rebroadcast it.
2167 #
2168 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2169 #        REBROADCAST!!!!
2170 #
2171
2172 sub handle_default
2173 {
2174         my $self = shift;
2175         my $pcno = shift;
2176         my $line = shift;
2177         my $origin = shift;
2178         my $pc = shift;
2179
2180         unless (eph_dup($line)) {
2181                 if ($pcno >= 90) {
2182                         my $pcall = $pc->[1];
2183                         unless (is_callsign($pcall)) {
2184                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2185                                 return;
2186                         }
2187                         my $t = $pc->[2];
2188                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2189                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2190                 } else {
2191                         unless ($self->{isolate}) {
2192                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2193                         }
2194                 }
2195         }
2196 }
2197
2198 1;