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