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