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