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