Git and Version string changes
[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         my $type = shift;
723         
724
725         # add this station to the user database, if required (don't remove SSID from nodes)
726         my $user = DXUser::get_current($call);
727         unless ($user) {
728                 $user = DXUser->new($call);
729                 $user->priv(1);         # I have relented and defaulted nodes
730                 $user->lockout(1);
731                 $user->homenode($call);
732                 $user->node($call);
733                 $user->sort($type || 'A');
734                 $user->lastin($main::systime); # this make it last longer than just this invocation
735                 $user->put;                             # just to make sure it gets written away!!!
736         }
737         return $user;
738 }
739
740 # incoming cluster list
741 sub handle_19
742 {
743         my $self = shift;
744         my $pcno = shift;
745         my $line = shift;
746         my $origin = shift;
747         my $pc = shift;
748
749         my $i;
750         my $newline = "PC19^";
751
752         # new routing list
753         my (@rout, @pc92out);
754
755         # first get the INTERFACE node
756         my $parent = Route::Node::get($self->{call});
757         unless ($parent) {
758                 dbg("PCPROT: my parent $self->{call} has disappeared");
759                 $self->disconnect;
760                 return;
761         }
762
763         my $h;
764
765         # parse the PC19
766         #
767         # We are making a major change from now on. We are only going to accept
768         # PC19s from directly connected nodes.  This means that we are probably
769         # going to throw away most of the data that we are being sent.
770         #
771         # The justification for this is that most of it is wrong or out of date
772         # anyway.
773         #
774         # From now on we are only going to believe PC92 data and locally connected
775         # non-pc92 nodes.
776         #
777         for ($i = 1; $i < $#$pc-1; $i += 4) {
778                 my $here = $pc->[$i];
779                 my $call = uc $pc->[$i+1];
780                 my $conf = $pc->[$i+2];
781                 my $ver = $pc->[$i+3];
782                 next unless defined $here && defined $conf && is_callsign($call);
783
784                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
785
786                 # check for sane parameters
787                 #                               $ver = 5000 if $ver eq '0000';
788                 next unless $ver && $ver =~ /^\d+$/;
789                 next if $ver < 5000;    # only works with version 5 software
790                 next if length $call < 3; # min 3 letter callsigns
791                 next if $call eq $main::mycall || $call eq $main::myalias;
792
793                 # check that this PC19 isn't trying to alter the wrong dxchan
794                 $h = 0;
795                 my $dxchan = DXChannel::get($call);
796                 if ($dxchan) {
797                         if ($dxchan == $self) {
798                                 $h = 1;
799                         } else {
800                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
801                                 next;
802                         }
803                 }
804
805                 # isolate now means only accept stuff from this call only
806                 if ($self->{isolate} && $call ne $self->{call}) {
807                         dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
808                         next;
809                 }
810
811                 my $user = check_add_node($call);
812
813 #               if (eph_dup($genline)) {
814 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
815 #                       next;
816 #               }
817
818
819                 unless ($h) {
820                         if ($parent->via_pc92) {
821                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
822                                 next;
823                         }
824                 }
825
826                 my $r = Route::Node::get($call);
827                 my $flags = Route::here($here)|Route::conf($conf);
828
829                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
830                 if ($r) {
831                         my $ar;
832                         if ($call ne $parent->call) {
833                                 if ($self->in_filter_route($r)) {
834                                         $ar = $parent->add($call, $ver, $flags);
835 #                                       push @rout, $ar if $ar;
836                                 } else {
837                                         next;
838                                 }
839                         }
840                         if ($r->version ne $ver || $r->flags != $flags) {
841                                 $r->version($ver);
842                                 $r->flags($flags);
843                         }
844                         push @rout, $r;
845                 } else {
846                         if ($call eq $self->{call} || $user->wantroutepc19) {
847                                 my $new = Route->new($call); # throw away
848                                 if ($self->in_filter_route($new)) {
849                                         my $ar = $parent->add($call, $ver, $flags);
850                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
851                                         push @rout, $ar if $ar;
852                                         push @pc92out, $r if $h;
853                                 } else {
854                                         next;
855                                 }
856                         }
857                 }
858
859                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
860                 my $mref = DXMsg::get_busy($call);
861                 $mref->stop_msg($call) if $mref;
862
863                 $user->lastin($main::systime) unless DXChannel::get($call);
864                 $user->put;
865         }
866
867         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
868         # but remember there will only be one (pair) these because any extras will be
869         # thrown away.
870         if (@rout) {
871 #               $self->route_pc21($self->{call}, $line, @rout);
872                 $self->route_pc19($self->{call}, $line, @rout);
873         }
874         if (@pc92out && !$pc92_slug_changes) {
875                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
876         }
877 }
878
879 # send local configuration
880 sub handle_20
881 {
882         my $self = shift;
883         my $pcno = shift;
884         my $line = shift;
885         my $origin = shift;
886         my $pc = shift;
887
888         if ($self->{do_pc9x} && $self->{state} ne 'init92') {
889                 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
890                 $self->{do_pc9x} = 0;
891         }
892         $self->send_local_config;
893         $self->send(pc22());
894         $self->state('normal');
895         $self->{lastping} = 0;
896         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
897 }
898
899 # delete a cluster from the list
900 #
901 # This should never occur for directly connected nodes.
902 #
903 sub handle_21
904 {
905         my $self = shift;
906         my $pcno = shift;
907         my $line = shift;
908         my $origin = shift;
909         my $pc = shift;
910
911         my $call = uc $pc->[1];
912
913         eph_del_regex("^PC1[679].*$call");
914
915         # if I get a PC21 from the same callsign as self then ignore it
916         if ($call eq $self->{call}) {
917                 dbg("PCPROT: self referencing PC21 from $self->{call}");
918                 return;
919         }
920
921         # for the above reason and also because of the check for PC21s coming
922         # in for self->call from outside being ignored further down
923         # we don't need any isolation code here, because we will never
924         # act on a PC21 with self->call in it.
925
926         my $parent = Route::Node::get($self->{call});
927         unless ($parent) {
928                 dbg("PCPROT: my parent $self->{call} has disappeared");
929                 $self->disconnect;
930                 return;
931         }
932
933         my @rout;
934
935         if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
936                 my $node = Route::Node::get($call);
937                 if ($node) {
938
939                         if ($node->via_pc92) {
940                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
941                                 return;
942                         }
943
944                         my $dxchan = DXChannel::get($call);
945                         if ($dxchan && $dxchan != $self) {
946                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
947                                 return;
948                         }
949
950                         # input filter it
951                         return unless $self->in_filter_route($node);
952
953                         # routing objects, force a PC21 if it is local
954                         push @rout, $node->del($parent);
955                         push @rout, $call if $dxchan && @rout == 0;
956                 }
957         } else {
958                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
959                 return;
960         }
961
962         if (eph_dup($line)) {
963                 return;
964         }
965
966         if (@rout) {
967                 $self->route_pc21($origin, $line, @rout);
968 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
969         }
970 }
971
972
973 sub handle_22
974 {
975         my $self = shift;
976         my $pcno = shift;
977         my $line = shift;
978         my $origin = shift;
979         my $pc = shift;
980
981         if ($self->{do_pc9x}) {
982                 if ($self->{state} ne 'init92') {
983                         $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
984                         $self->{do_pc9x} = 0;
985                 }
986         }
987         $self->{lastping} = 0;
988         $self->state('normal');
989         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
990 }
991
992 # WWV info
993 sub handle_23
994 {
995         my $self = shift;
996         my $pcno = shift;
997         my $line = shift;
998         my $origin = shift;
999         my $pc = shift;
1000
1001         # route foreign' pc27s
1002         if ($pcno == 27) {
1003                 if ($pc->[8] ne $main::mycall) {
1004                         $self->route($pc->[8], $line);
1005                         return;
1006                 }
1007         }
1008
1009
1010         # do some de-duping
1011         my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
1012         my $sfi = unpad($pc->[3]);
1013         my $k = unpad($pc->[4]);
1014         my $i = unpad($pc->[5]);
1015         my ($r) = $pc->[6] =~ /R=(\d+)/;
1016         $r = 0 unless $r;
1017         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1018                 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
1019                 return;
1020         }
1021
1022         # global wwv filtering on INPUT
1023         my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
1024         if ($self->{inwwvfilter}) {
1025                 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
1026                 unless ($filter) {
1027                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1028                         return;
1029                 }
1030         }
1031         $pc->[7] =~ s/-\d+$//o;         # remove spotter's ssid
1032         if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
1033                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1034                 return;
1035         }
1036
1037         # note this only takes the first one it gets
1038         Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1039         dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
1040
1041         if (defined &Local::wwv) {
1042                 my $rep;
1043                 eval {
1044                         $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1045                 };
1046                 return if $rep;
1047         }
1048
1049         # DON'T be silly and send on PC27s!
1050         return if $pcno == 27;
1051
1052         # broadcast to the eager world
1053         send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1054 }
1055
1056 # set here status
1057 sub handle_24
1058 {
1059         my $self = shift;
1060         my $pcno = shift;
1061         my $line = shift;
1062         my $origin = shift;
1063         my $pc = shift;
1064
1065         my $call = uc $pc->[1];
1066         my ($nref, $uref);
1067         $nref = Route::Node::get($call);
1068         $uref = Route::User::get($call);
1069         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1070
1071         if (eph_dup($line)) {
1072                 return;
1073         }
1074
1075         $nref->here($pc->[2]) if $nref;
1076         $uref->here($pc->[2]) if $uref;
1077         my $ref = $nref || $uref;
1078         return unless $self->in_filter_route($ref);
1079
1080         $self->route_pc24($origin, $line, $ref, $pc->[3]);
1081 }
1082
1083 # merge request
1084 sub handle_25
1085 {
1086         my $self = shift;
1087         my $pcno = shift;
1088         my $line = shift;
1089         my $origin = shift;
1090         my $pc = shift;
1091
1092         if ($pc->[1] ne $main::mycall) {
1093                 $self->route($pc->[1], $line);
1094                 return;
1095         }
1096         if ($pc->[2] eq $main::mycall) {
1097                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1098                 return;
1099         }
1100
1101         Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1102
1103         # spots
1104         if ($pc->[3] > 0) {
1105                 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1106                 my $in;
1107                 foreach $in (@in) {
1108                         $self->send(pc26(@{$in}[0..4], $pc->[2]));
1109                 }
1110         }
1111
1112         # wwv
1113         if ($pc->[4] > 0) {
1114                 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1115                 my $in;
1116                 foreach $in (@in) {
1117                         $self->send(pc27(@{$in}[0..5], $pc->[2]));
1118                 }
1119         }
1120 }
1121
1122 sub handle_26 {goto &handle_11}
1123 sub handle_27 {goto &handle_23}
1124
1125 # mail/file handling
1126 sub handle_28
1127 {
1128         my $self = shift;
1129         my $pcno = shift;
1130         my $line = shift;
1131         my $origin = shift;
1132         my $pc = shift;
1133
1134         if ($pc->[1] eq $main::mycall) {
1135                 no strict 'refs';
1136                 my $sub = "DXMsg::handle_$pcno";
1137                 &$sub($self, @$pc);
1138         } else {
1139                 $self->route($pc->[1], $line) unless $self->is_clx;
1140         }
1141 }
1142
1143 sub handle_29 {goto &handle_28}
1144 sub handle_30 {goto &handle_28}
1145 sub handle_31 {goto &handle_28}
1146 sub handle_32 {goto &handle_28}
1147 sub handle_33 {goto &handle_28}
1148
1149 sub handle_34
1150 {
1151         my $self = shift;
1152         my $pcno = shift;
1153         my $line = shift;
1154         my $origin = shift;
1155         my $pc = shift;
1156
1157         if (eph_dup($line, $eph_pc34_restime)) {
1158                 return;
1159         } else {
1160                 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1161         }
1162 }
1163
1164 # remote command replies
1165 sub handle_35
1166 {
1167         my $self = shift;
1168         my $pcno = shift;
1169         my $line = shift;
1170         my $origin = shift;
1171         my $pc = shift;
1172
1173         eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1174         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1175 }
1176
1177 sub handle_36 {goto &handle_34}
1178
1179 # database stuff
1180 sub handle_37
1181 {
1182         my $self = shift;
1183         my $pcno = shift;
1184         my $line = shift;
1185         my $origin = shift;
1186         my $pc = shift;
1187
1188         if ($pc->[1] eq $main::mycall) {
1189                 no strict 'refs';
1190                 my $sub = "DXDb::handle_$pcno";
1191                 &$sub($self, @$pc);
1192         } else {
1193                 $self->route($pc->[1], $line) unless $self->is_clx;
1194         }
1195 }
1196
1197 # node connected list from neighbour
1198 sub handle_38
1199 {
1200         my $self = shift;
1201         my $pcno = shift;
1202         my $line = shift;
1203         my $origin = shift;
1204         my $pc = shift;
1205 }
1206
1207 # incoming disconnect
1208 sub handle_39
1209 {
1210         my $self = shift;
1211         my $pcno = shift;
1212         my $line = shift;
1213         my $origin = shift;
1214         my $pc = shift;
1215
1216         if ($pc->[1] eq $self->{call}) {
1217                 $self->disconnect(1);
1218         } else {
1219                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1220         }
1221 }
1222
1223 sub handle_40 {goto &handle_28}
1224
1225 # user info
1226 sub handle_41
1227 {
1228         my $self = shift;
1229         my $pcno = shift;
1230         my $line = shift;
1231         my $origin = shift;
1232         my $pc = shift;
1233
1234         my $call = $pc->[1];
1235         my $sort = $pc->[2];
1236         my $val = $pc->[3];
1237
1238         my $l = "PC41^$call^$sort";
1239         if (eph_dup($l, $eph_info_restime)) {
1240                 return;
1241         }
1242
1243         # input filter if required
1244         #                       my $ref = Route::get($call) || Route->new($call);
1245         #                       return unless $self->in_filter_route($ref);
1246
1247         if ($val eq $sort || $val =~ /^\s*$/) {
1248                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1249                 return;
1250         }
1251
1252         if ($call eq $main::mycall || $call eq $main::myalias) {
1253                 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1254                 return;
1255         }
1256         my $chan = DXChannel::get($call);
1257         if ($chan) {
1258                 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1259                 return;
1260         }
1261
1262         # add this station to the user database, if required
1263         my $user = DXUser::get_current($call);
1264         $user = DXUser->new($call) unless $user;
1265
1266         if ($sort == 1) {
1267                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1268                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1269                         return;
1270                 }
1271                 $user->name($val);
1272         } elsif ($sort == 2) {
1273                 $user->qth($val);
1274         } elsif ($sort == 3) {
1275                 if (is_latlong($val)) {
1276                         my ($lat, $long) = DXBearing::stoll($val);
1277                         $user->lat($lat) if $lat;
1278                         $user->long($long) if $long;
1279                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1280                 } else {
1281                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1282                         return;
1283                 }
1284         } elsif ($sort == 4) {
1285                 $user->homenode($val);
1286         } elsif ($sort == 5) {
1287                 if (is_qra(uc $val)) {
1288                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1289                         $user->lat($lat) if $lat && !$user->lat;
1290                         $user->long($long) if $long && !$user->long;
1291                         $user->qra(uc $val);
1292                 } else {
1293                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1294                         return;
1295                 }
1296         }
1297         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1298         $user->put;
1299
1300         unless ($self->{isolate}) {
1301                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1302         }
1303
1304         #  perhaps this IS what we want after all
1305         #                       $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1306 }
1307
1308 sub handle_42 {goto &handle_28}
1309
1310
1311 # database
1312 sub handle_44 {goto &handle_37}
1313 sub handle_45 {goto &handle_37}
1314 sub handle_46 {goto &handle_37}
1315 sub handle_47 {goto &handle_37}
1316 sub handle_48 {goto &handle_37}
1317
1318 # message and database
1319 sub handle_49
1320 {
1321         my $self = shift;
1322         my $pcno = shift;
1323         my $line = shift;
1324         my $origin = shift;
1325         my $pc = shift;
1326
1327         if (eph_dup($line)) {
1328                 return;
1329         }
1330
1331         if ($pc->[1] eq $main::mycall) {
1332                 DXMsg::handle_49($self, @$pc);
1333         } else {
1334                 $self->route($pc->[1], $line) unless $self->is_clx;
1335         }
1336 }
1337
1338 # keep alive/user list
1339 sub handle_50
1340 {
1341         my $self = shift;
1342         my $pcno = shift;
1343         my $line = shift;
1344         my $origin = shift;
1345         my $pc = shift;
1346
1347         return if (eph_dup($line));
1348
1349         my $call = $pc->[1];
1350
1351         my $node = Route::Node::get($call);
1352         if ($node) {
1353                 return unless $node->call eq $self->{call};
1354                 $node->usercount($pc->[2]) unless $node->users;
1355                 $node->reset_obs;
1356                 $node->PC92C_dxchan($self->call, $pc->[-1]);
1357
1358                 # input filter if required
1359 #               return unless $self->in_filter_route($node);
1360
1361                 unless ($self->{isolate}) {
1362                         DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1363                 }
1364 #               $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1365         }
1366 }
1367
1368 # incoming ping requests/answers
1369 sub handle_51
1370 {
1371         my $self = shift;
1372         my $pcno = shift;
1373         my $line = shift;
1374         my $origin = shift;
1375         my $pc = shift;
1376
1377         my $to = $pc->[1];
1378         my $from = $pc->[2];
1379         my $flag = $pc->[3];
1380
1381         if ($to eq $main::myalias) {
1382                 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1383                 return;
1384         }
1385
1386         # is it for us?
1387         if ($to eq $main::mycall) {
1388                 if ($flag == 1) {
1389                         $self->send(pc51($from, $to, '0'));
1390                 } else {
1391                         DXXml::Ping::handle_ping_reply($self, $from);
1392                 }
1393         } else {
1394                 if (eph_dup($line)) {
1395                         return;
1396                 }
1397                 # route down an appropriate thingy
1398                 $self->route($to, $line);
1399         }
1400 }
1401
1402 sub handle_61 { goto &handle_11; }
1403
1404 # dunno but route it
1405 sub handle_75
1406 {
1407         my $self = shift;
1408         my $pcno = shift;
1409         my $line = shift;
1410         my $origin = shift;
1411         my $pc = shift;
1412
1413         my $call = $pc->[1];
1414         if ($call ne $main::mycall) {
1415                 $self->route($call, $line);
1416         }
1417 }
1418
1419 # WCY broadcasts
1420 sub handle_73
1421 {
1422         my $self = shift;
1423         my $pcno = shift;
1424         my $line = shift;
1425         my $origin = shift;
1426         my $pc = shift;
1427
1428         my $call = $pc->[1];
1429
1430         # do some de-duping
1431         my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1432         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1433                 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1434                 return;
1435         }
1436         $pc = [ map { unpad($_) } @$pc ];
1437         if (WCY::dup($d)) {
1438                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1439                 return;
1440         }
1441
1442         my $wcy = WCY::update($d, @$pc[2..12]);
1443         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');
1444
1445         if (defined &Local::wcy) {
1446                 my $rep;
1447                 eval {
1448                         $rep = Local::wcy($self, @$pc[1..12]);
1449                 };
1450                 return if $rep;
1451         }
1452
1453         # broadcast to the eager world
1454         send_wcy_spot($self, $line, $d, @$pc[2..12]);
1455 }
1456
1457 # remote commands (incoming)
1458 sub handle_84
1459 {
1460         my $self = shift;
1461         my $pcno = shift;
1462         my $line = shift;
1463         my $origin = shift;
1464         my $pc = shift;
1465
1466         $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1467 }
1468
1469 # remote command replies
1470 sub handle_85
1471 {
1472         my $self = shift;
1473         my $pcno = shift;
1474         my $line = shift;
1475         my $origin = shift;
1476         my $pc = shift;
1477
1478         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1479 }
1480
1481 # decode a pc92 call: flag call : version : build
1482 sub _decode_pc92_call
1483 {
1484         my $icall = shift;
1485         my @part = split /:/, $icall;
1486         my ($flag, $call) = unpack "A A*", $part[0];
1487         unless (defined $flag && $flag ge '0' && $flag le '7') {
1488                 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1489                 return ();
1490         }
1491         unless ($call && is_callsign($call)) {
1492                 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1493                 return ();
1494         }
1495         my $is_node = $flag & 4;
1496         my $is_extnode = $flag & 2;
1497         my $here = $flag & 1;
1498         my $ip  = $part[3];
1499         $ip ||= $part[1] if $part[1] && $part[1] !~ /^\d+$/ && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
1500         $ip =~ s/,/:/g if $ip;
1501         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1502 }
1503
1504 # decode a pc92 call: flag call : version : build
1505 sub _encode_pc92_call
1506 {
1507         my $ref = shift;
1508
1509         # plain call or value
1510         return $ref unless ref $ref;
1511
1512         my $ext = shift || 0;
1513         my $flag = 0;
1514         my $call = $ref->call;
1515         my $extra = '';
1516         $flag |= $ref->here ? 1 : 0;
1517         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1518                 $flag |= 4;
1519                 my $dxchan = DXChannel::get($call);
1520                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1521                 if (($ext & 1) && $ref->version) {
1522                         my $version = $ref->version || 1.0;
1523                         $version =  $version * 100 + 5300 if $version < 50;
1524                         $extra .= ":" . $version;
1525                 }
1526         }
1527         if (($ext & 2) && $ref->ip) {
1528                 my $ip = $ref->ip;
1529                 $ip =~ s/:/,/g;
1530                 $extra .= ':' . $ip;
1531         }
1532         return "$flag$call$extra";
1533 }
1534
1535 my %things_add;
1536 my %things_del;
1537
1538 sub _add_thingy
1539 {
1540         my $parent = shift;
1541         my $s = shift;
1542         my $dxchan = shift;
1543         my $hops = shift;
1544
1545         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1546         my @rout;
1547
1548         # remove spurious IPV6 prefix on IPV4 addresses
1549         $ip =~ s/^::ffff:// if $ip;
1550         
1551         if ($call) {
1552                 my $ncall = $parent->call;
1553                 if ($ncall ne $call) {
1554                         if ($is_node) {
1555                                 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1556                                 @rout = $parent->add($call, $version, Route::here($here), $ip);
1557                                 my $r = Route::Node::get($call);
1558                                 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1559                                 if ($ip) {
1560                                         $r->ip($ip);
1561                                         Log('DXProt', "PC92A $call -> $ip on $ncall");
1562                                 }
1563                         } else {
1564                                 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1565                                 my $user = check_add_node($call, 'U');
1566                                 @rout = $parent->add_user($call, Route::here($here), $ip);
1567                                 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1568                                 my $r = Route::User::get($call);
1569                                 if ($ip) {
1570                                         $r->ip($ip);
1571                                         Log('DXProt', "PC92A $call -> $ip on $ncall");
1572                                 }
1573                         }
1574                         if ($pc92_slug_changes && $parent == $main::routeroot) {
1575                                 $things_add{$call} = Route::get($call);
1576                                 delete $things_del{$call};
1577                         }
1578                 } else {
1579                         dbgprintring(10) if isdbg('nologchan');
1580                         dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1581                 }
1582         }
1583         
1584         return @rout;
1585 }
1586
1587 sub _del_thingy
1588 {
1589         my $parent = shift;
1590         my $s = shift;
1591         my $dxchan = shift;
1592         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1593         my @rout;
1594         if ($call) {
1595                 my $ref;
1596                 if ($is_node) {
1597                         $ref = Route::Node::get($call);
1598                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1599                         @rout = $ref->del($parent) if $ref;
1600                 } else {
1601                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1602                         $ref = Route::User::get($call);
1603                         if ($ref) {
1604                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1605                                 @rout = $parent->del_user($ref);
1606                         }
1607                 }
1608                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1609                         $things_del{$call} = $ref unless exists $things_add{$call};
1610                         delete $things_add{$call};
1611                 }
1612         }
1613         return @rout;
1614 }
1615
1616 # this will only happen if we are slugging changes and
1617 # there are some changes to be sent, it will create an add or a delete
1618 # or both
1619 sub gen_pc92_changes
1620 {
1621         my @add = values %things_add;
1622         my @del = values %things_del;
1623         return (\@add, \@del);
1624 }
1625
1626 sub clear_pc92_changes
1627 {
1628         %things_add = %things_del = ();
1629         $last_pc92_slug = $main::systime;
1630 }
1631
1632 my $_last_time;
1633 my $_last_occurs;
1634 my $_last_pc9x_id;
1635
1636 sub last_pc9x_id
1637 {
1638         return $_last_pc9x_id;
1639 }
1640
1641 sub gen_pc9x_t
1642 {
1643         if (!$_last_time || $_last_time != $main::systime) {
1644                 $_last_time = $main::systime;
1645                 $_last_occurs = 0;
1646                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1647         } else {
1648                 $_last_occurs++;
1649                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1650         }
1651 }
1652
1653 sub check_pc9x_t
1654 {
1655         my $call = shift;
1656         my $t = shift;
1657         my $pc = shift;
1658         my $create = shift;
1659
1660         # check that the time is between 0 >= $t < 86400
1661         unless ($t >= 0 && $t < 86400) {
1662                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1663                 return undef;
1664         }
1665
1666         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1667         my $now = $main::systime - $main::systime_daystart ;
1668         my $diff = abs($now - $t);
1669         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1670                 my $c = ref $call ? $call->call : $call;
1671                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1672                 return undef;
1673         }
1674
1675         my $parent = ref $call ? $call : Route::Node::get($call);
1676         if ($parent) {
1677                 # we only do this for external calls whose routing table
1678                 # record come and go. The reference for mycall is permanent
1679                 # and not that frequently used, it also never times out, so
1680                 # the id on it is completely unreliable. Besides, only commands
1681                 # originating on this box will go through this code...
1682                 if ($parent->call ne $main::mycall) {
1683                         my $lastid = $parent->lastid;
1684                         if (defined $lastid) {
1685                                 if ($t < $lastid) {
1686                                         # note that this is where we determine whether this pc9x has come in yesterday
1687                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1688                                         # duplicate sentence. To determine this we need to do some module 86400
1689                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1690                                         # low numbers that it is a new sentence.
1691                                         #
1692                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1693                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1694                                         # 86378 respectively in the calculation below).
1695                                         #
1696                                         if ($t+86400-$lastid > $pc9x_past_age) {
1697                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1698                                                 return undef;
1699                                         }
1700                                 } elsif ($t == $lastid) {
1701                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1702                                         return undef;
1703                                 } else {
1704                                         # check that if we have a low number in lastid that yesterday's numbers
1705                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1706                                         if ($lastid+86400-$t < $pc9x_past_age) {
1707                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1708                                                 return undef;
1709                                         }
1710                                 }
1711                         }
1712                 }
1713         } elsif ($create) {
1714                 $parent = Route::Node->new($call);
1715         } else {
1716                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1717                 return undef;
1718         }
1719         if (isdbg('pc92dedupe')) {
1720                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1721                 my $val = $parent->{lastid};
1722                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1723                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1724         }
1725         $parent->lastid($t);
1726
1727         return $parent;
1728 }
1729
1730 sub pc92_handle_first_slot
1731 {
1732         my $self = shift;
1733         my $slot = shift;
1734         my $parent = shift;
1735         my $t = shift;
1736         my $hops = shift;
1737         my $oparent = $parent;
1738
1739         my @radd;
1740
1741         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1742         if ($call && $is_node) {
1743                 if ($call eq $main::mycall) {
1744                         dbg("PCPROT: $call looped back onto \$main::mycall ($main::mycall), ignored") if isdbg('chan');
1745                         return;
1746                 }
1747                 if ($call eq $main::myalias) {
1748                         dbg("PCPROT: $call looped back onto \$main::myalias ($main::myalias), ignored") if isdbg('chan');
1749                         return;
1750                 }
1751                 # this is only accepted from my "self".
1752                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1753                 # locally connected. Local nodes always take precedence. But we remember the lastid
1754                 # to try to reduce the number of dupe PC92s for this external node.
1755                 if (DXChannel::get($call) && $call ne $self->{call}) {
1756                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1757                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1758                         return;
1759                 }
1760                 if ($is_extnode) {
1761                         # reparent to external node (note that we must have received a 'C' or 'A' record
1762                         # from the true parent node for this external before we get one for the this node
1763                         unless ($parent = Route::Node::get($call)) {
1764                                 if ($is_extnode && $oparent) {
1765                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
1766                                         $parent = $radd[0];
1767                                 } else {
1768                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1769                                         return;
1770                                 }
1771                         }
1772                         $parent = check_pc9x_t($call, $t, 92) || return;
1773                         $parent->via_pc92(1);
1774                         $parent->PC92C_dxchan($self->{call}, $hops);
1775                 }
1776         } else {
1777                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1778                 return;
1779         }
1780         $parent->here(Route::here($here));
1781         $parent->version($version || $pc19_version) if $version;
1782         $parent->build($build) if $build;
1783         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1784         return ($parent, @radd);
1785 }
1786
1787 # DXSpider routing entries
1788 sub handle_92
1789 {
1790         my $self = shift;
1791         my $pcno = shift;
1792         my $line = shift;
1793         my $origin = shift;
1794         my $pc = shift;
1795
1796         my (@radd, @rdel);
1797
1798         my $pcall = $pc->[1];
1799         my $t = $pc->[2];
1800         my $sort = $pc->[3];
1801         my $hops = $pc->[-1];
1802
1803         # this catches loops of A/Ds
1804 #       if (eph_dup($line, $pc9x_dupe_age)) {
1805 #               return;
1806 #       }
1807
1808         if ($pcall eq $main::mycall) {
1809                 dbg("PCPROT: looped back, ignored") if isdbg('chan');
1810                 return;
1811         }
1812
1813         if ($pcall eq $main::myalias) {
1814                 dbg("PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored") if isdbg('chan');
1815                 return;
1816         }
1817
1818         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1819                 if ($self->{isolate}) {
1820                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1821                         return;
1822                 } elsif (!$self->user->wantpc9x) {
1823                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1824                         return;
1825                 } else {
1826                         $self->state('init92');
1827                         $self->{do_pc9x} = 1;
1828                         dbg("DXPROT: Do pc9x set on $pcall");
1829                 }
1830         }
1831         unless ($self->{do_pc9x}) {
1832                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1833                 return;
1834         }
1835
1836         # don't create routing entries for D records that don't already exist
1837         # this is what causes all those PC92 loops!
1838         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1839         my $oparent = $parent;
1840
1841         $parent->do_pc9x(1);
1842         $parent->via_pc92(1);
1843
1844         if ($sort eq 'F' || $sort eq 'R') {
1845
1846                 # this is the route finding section
1847                 # here is where the consequences of the 'find' command
1848                 # are dealt with
1849
1850                 my $from = $pc->[4];
1851                 my $target = $pc->[5];
1852
1853                 if ($sort eq 'F') {
1854                         my $flag;
1855                         my $ref;
1856                         my $dxchan;
1857                         if ($ref = DXChannel::get($target)) {
1858                                 $flag = 1;              # we are directly connected
1859                         } else {
1860                                 $ref = Route::get($target);
1861                                 $dxchan = $ref->dxchan;
1862                                 $flag = 2;
1863                         }
1864                         if ($ref && $flag && $dxchan) {
1865                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1866                                 return;
1867                         }
1868                 } elsif ($sort eq 'R') {
1869                         if (my $dxchan = DXChannel::get($from)) {
1870                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1871                         } else {
1872                                 my $ref = Route::get($from);
1873                                 if ($ref) {
1874                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1875                                         if (@dxchan) {
1876                                                 $_->send($line) for @dxchan;
1877                                         } else {
1878                                                 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1879                                         }
1880                                 } else {
1881                                         dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1882                                 }
1883                         }
1884                         return;
1885                 }
1886
1887         } elsif ($sort eq 'K') {
1888                 $pc92Kin += length $line;
1889
1890                 # remember the last channel we arrived on
1891                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1892
1893                 my @ent = _decode_pc92_call($pc->[4]);
1894
1895                 if (@ent) {
1896                         my $add;
1897
1898                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1899                         return unless $parent; # dupe
1900
1901                         push @radd, $add if $add;
1902                         $parent->reset_obs;
1903                         $parent->version($ent[4]) if $ent[4];
1904                         $parent->build($ent[5]) if $ent[5];
1905
1906                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1907                 }
1908         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1909
1910                 $pc92Ain += length $line if $sort eq 'A';
1911                 $pc92Cin += length $line if $sort eq 'C';
1912                 $pc92Din += length $line if $sort eq 'D';
1913
1914                 # remember the last channel we arrived on
1915                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1916
1917                 # this is the main route section
1918                 # here is where all the routes are created and destroyed
1919
1920                 # cope with missing duplicate node calls in the first slot
1921                 my $me = $pc->[4] || '';
1922                 $me ||= _encode_pc92_call($parent) unless $me ;
1923
1924                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
1925
1926                 if (@ent) {
1927
1928                         # look at the first one which will always be a node of some sort
1929                         # except in the case of 'A' or 'D' in which the $pcall is used
1930                         # otherwise use the node call and update any information
1931                         # that needs to be done.
1932                         my $add;
1933
1934                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
1935                         return unless $parent; # dupe
1936
1937                         shift @ent;
1938                         push @radd, $add if $add;
1939                 }
1940
1941                 # do a pass through removing any references to either mycall
1942                 my @nent;
1943                 for (@ent) {
1944                         my $dxc;
1945                         next unless $_ && @$_;
1946                         if ($_->[0] eq $main::mycall) {
1947                                 dbg("PCPROT: $_->[0] refers to me, ignored") if isdbg('chanerr');
1948                                 next;
1949                         }
1950                         push @nent, $_;
1951                 }
1952
1953                 if ($sort eq 'A') {
1954                         for (@nent) {
1955                                 push @radd, _add_thingy($parent, $_, $self, $hops);
1956                         }
1957                 } elsif ($sort eq 'D') {
1958                         for (@nent) {
1959                                 push @rdel, _del_thingy($parent, $_, $self);
1960                         }
1961                 } elsif ($sort eq 'C') {
1962                         my (@nodes, @users);
1963
1964                         # we reset obscounts on config records as well as K records
1965                         $parent->reset_obs;
1966                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1967
1968                         #
1969                         foreach my $r (@nent) {
1970                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1971                                 if ($r->[0]) {
1972                                         if ($r->[1]) {
1973                                                 push @nodes, $r->[0];
1974                                         } else {
1975                                                 push @users, $r->[0];
1976                                         }
1977                                 } else {
1978                                         dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1979                                 }
1980                         }
1981
1982                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1983
1984                         # add users here
1985                         foreach my $r (@nent) {
1986                                 my $call = $r->[0];
1987                                 if ($call) {
1988                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
1989                                 }
1990                         }
1991                         # del users here
1992                         foreach my $r (@$dnodes) {
1993                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
1994                         }
1995                         foreach my $r (@$dusers) {
1996                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
1997                         }
1998
1999                         # remember this last PC92C for rebroadcast on demand
2000                         $parent->last_PC92C($line);
2001                 } else {
2002                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2003                         return;
2004                 }
2005
2006                 foreach my $r (@rdel) {
2007                         next unless $r;
2008
2009                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2010                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2011                 }
2012                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2013                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2014                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2015                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2016                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2017         }
2018
2019         # broadcast it if we get here
2020         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2021 }
2022
2023 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2024 # might be on two or more nodes at the same time or that there may be more than
2025 # one equal distance neighbour to a node.
2026 #
2027 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2028 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2029 # each and then combined to give a set of dxchans to send the PC9x record down
2030 #
2031 sub find_pc9x_routes
2032 {
2033         my $to = shift;
2034         my $ref = Route::get($to);
2035         my @parent;
2036         my %cand;
2037
2038         if ($ref->isa('Route::User')) {
2039                 my $dxchan = DXChannel::get($to);
2040                 push @parent, $to if $dxchan;
2041                 push @parent, $ref->parents;
2042         } else {
2043                 @parent = $to;
2044         }
2045         foreach my $p (@parent) {
2046                 my $lasthops;
2047                 my @routes = Route::findroutes($p);
2048                 foreach my $r (@routes) {
2049                         $lasthops = $r->[0] unless defined $lasthops;
2050                         if ($r->[0] == $lasthops) {
2051                                 $cand{$r->[1]->call} = $r->[1];
2052                         } else {
2053                                 last;
2054                         }
2055                 }
2056         }
2057         return values %cand;
2058 }
2059
2060 sub handle_93
2061 {
2062         my $self = shift;
2063         my $pcno = shift;
2064         my $line = shift;
2065         my $origin = shift;
2066         my $pc = shift;
2067
2068 #       $self->{do_pc9x} ||= 1;
2069
2070         my $pcall = $pc->[1];                   # this is now checked earlier
2071
2072         # remember that we are converting PC10->PC93 and self will be $main::me if it
2073         # comes from us
2074         unless ($self->{do_pc9x}) {
2075                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2076                 return;
2077         }
2078
2079         my $t = $pc->[2];
2080         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2081
2082         my $to = uc $pc->[3];
2083         my $from = uc $pc->[4];
2084         my $via = uc $pc->[5];
2085         my $text = $pc->[6];
2086         my $onode = uc $pc->[7];
2087         $onode = $pcall if @$pc <= 8;
2088
2089         # this is catch loops caused by bad software ...
2090         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2091                 return;
2092         }
2093
2094         if (isdbg('progress')) {
2095                 my $vs = $via ne '*' ? " via $via" : ''; 
2096                 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2097                 dbg($s);
2098         }
2099         
2100         # will we allow it at all?
2101         if ($censorpc) {
2102                 my @bad;
2103                 if (@bad = BadWords::check($text)) {
2104                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2105                         return;
2106                 }
2107         }
2108
2109         # if this is a 'bad spotter' user then ignore it
2110         my $nossid = $from;
2111         $nossid =~ s/-\d+$//;
2112         if ($badspotter->in($nossid)) {
2113                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2114                 return;
2115         }
2116
2117         # ignore PC93 coming in from outside this node with a target of local
2118         if ($to eq 'LOCAL' && $self != $main::me) {
2119                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2120                 return;
2121         }
2122
2123         # if it is routeable then then treat it like a talk
2124         my $ref = Route::get($to);
2125         if ($ref) {
2126                 my $dxchan;
2127
2128                 # convert to PC10 or local talks where appropriate
2129                 # PC93 capable nodes of the same hop count all get a copy
2130                 # if there is a PC10 node then it will get a copy and that
2131                 # will be it. Hopefully such a node will not figure highly
2132                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2133                 # note that both local and PC93s at the same time are possible if the
2134                 # user on more than one node.
2135                 my @routes = find_pc9x_routes($to);
2136                 my $lasthops;
2137                 foreach $dxchan (@routes) {
2138                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2139                                 if ($dxchan->{do_pc9x}) {
2140                                         $dxchan->send($line);
2141                                 } else {
2142                                         $dxchan->talk($from, $to, $via, $text, $onode);
2143                                 }
2144                         } else {
2145                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2146                         }
2147                 }
2148                 return;
2149
2150         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2151                 # announces
2152                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2153                 my $wx = $to eq 'WX' ? '1' : '0';
2154                 my $local = $via eq 'LOCAL' ? '*' : $via;
2155
2156                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2157                 return if $via eq 'LOCAL';
2158         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2159                 # chat messages really only locally connected users
2160                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2161         }
2162
2163         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2164         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2165 }
2166
2167 # if get here then rebroadcast the thing with its Hop count decremented (if
2168 # there is one). If it has a hop count and it decrements to zero then don't
2169 # rebroadcast it.
2170 #
2171 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2172 #        REBROADCAST!!!!
2173 #
2174
2175 sub handle_default
2176 {
2177         my $self = shift;
2178         my $pcno = shift;
2179         my $line = shift;
2180         my $origin = shift;
2181         my $pc = shift;
2182
2183         unless (eph_dup($line)) {
2184                 if ($pcno >= 90) {
2185                         my $pcall = $pc->[1];
2186                         unless (is_callsign($pcall)) {
2187                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2188                                 return;
2189                         }
2190                         my $t = $pc->[2];
2191                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2192                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2193                 } else {
2194                         unless ($self->{isolate}) {
2195                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2196                         }
2197                 }
2198         }
2199 }
2200
2201 1;