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