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