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