4e3480d66cd08bc3fc99d250b7c4a96ee7aad82b
[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
973         if (defined &Local::wwv) {
974                 my $rep;
975                 eval {
976                         $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
977                 };
978                 return if $rep;
979         }
980
981         # DON'T be silly and send on PC27s!
982         return if $pcno == 27;
983
984         # broadcast to the eager world
985         send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
986 }
987
988 # set here status
989 sub handle_24
990 {
991         my $self = shift;
992         my $pcno = shift;
993         my $line = shift;
994         my $origin = shift;
995         my $pc = shift;
996
997         my $call = uc $pc->[1];
998         my ($nref, $uref);
999         $nref = Route::Node::get($call);
1000         $uref = Route::User::get($call);
1001         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1002
1003         if (eph_dup($line)) {
1004                 return;
1005         }
1006
1007         $nref->here($pc->[2]) if $nref;
1008         $uref->here($pc->[2]) if $uref;
1009         my $ref = $nref || $uref;
1010         return unless $self->in_filter_route($ref);
1011
1012         $self->route_pc24($origin, $line, $ref, $pc->[3]);
1013 }
1014
1015 # merge request
1016 sub handle_25
1017 {
1018         my $self = shift;
1019         my $pcno = shift;
1020         my $line = shift;
1021         my $origin = shift;
1022         my $pc = shift;
1023
1024         if ($pc->[1] ne $main::mycall) {
1025                 $self->route($pc->[1], $line);
1026                 return;
1027         }
1028         if ($pc->[2] eq $main::mycall) {
1029                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1030                 return;
1031         }
1032
1033         Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1034
1035         # spots
1036         if ($pc->[3] > 0) {
1037                 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1038                 my $in;
1039                 foreach $in (@in) {
1040                         $self->send(pc26(@{$in}[0..4], $pc->[2]));
1041                 }
1042         }
1043
1044         # wwv
1045         if ($pc->[4] > 0) {
1046                 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1047                 my $in;
1048                 foreach $in (@in) {
1049                         $self->send(pc27(@{$in}[0..5], $pc->[2]));
1050                 }
1051         }
1052 }
1053
1054 sub handle_26 {goto &handle_11}
1055 sub handle_27 {goto &handle_23}
1056
1057 # mail/file handling
1058 sub handle_28
1059 {
1060         my $self = shift;
1061         my $pcno = shift;
1062         my $line = shift;
1063         my $origin = shift;
1064         my $pc = shift;
1065
1066         if ($pc->[1] eq $main::mycall) {
1067                 no strict 'refs';
1068                 my $sub = "DXMsg::handle_$pcno";
1069                 &$sub($self, @$pc);
1070         } else {
1071                 $self->route($pc->[1], $line) unless $self->is_clx;
1072         }
1073 }
1074
1075 sub handle_29 {goto &handle_28}
1076 sub handle_30 {goto &handle_28}
1077 sub handle_31 {goto &handle_28}
1078 sub handle_32 {goto &handle_28}
1079 sub handle_33 {goto &handle_28}
1080
1081 sub handle_34
1082 {
1083         my $self = shift;
1084         my $pcno = shift;
1085         my $line = shift;
1086         my $origin = shift;
1087         my $pc = shift;
1088
1089         if (eph_dup($line, $eph_pc34_restime)) {
1090                 return;
1091         } else {
1092                 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1093         }
1094 }
1095
1096 # remote command replies
1097 sub handle_35
1098 {
1099         my $self = shift;
1100         my $pcno = shift;
1101         my $line = shift;
1102         my $origin = shift;
1103         my $pc = shift;
1104
1105         eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1106         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1107 }
1108
1109 sub handle_36 {goto &handle_34}
1110
1111 # database stuff
1112 sub handle_37
1113 {
1114         my $self = shift;
1115         my $pcno = shift;
1116         my $line = shift;
1117         my $origin = shift;
1118         my $pc = shift;
1119
1120         if ($pc->[1] eq $main::mycall) {
1121                 no strict 'refs';
1122                 my $sub = "DXDb::handle_$pcno";
1123                 &$sub($self, @$pc);
1124         } else {
1125                 $self->route($pc->[1], $line) unless $self->is_clx;
1126         }
1127 }
1128
1129 # node connected list from neighbour
1130 sub handle_38
1131 {
1132         my $self = shift;
1133         my $pcno = shift;
1134         my $line = shift;
1135         my $origin = shift;
1136         my $pc = shift;
1137 }
1138
1139 # incoming disconnect
1140 sub handle_39
1141 {
1142         my $self = shift;
1143         my $pcno = shift;
1144         my $line = shift;
1145         my $origin = shift;
1146         my $pc = shift;
1147
1148         if ($pc->[1] eq $self->{call}) {
1149                 $self->disconnect(1);
1150         } else {
1151                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1152         }
1153 }
1154
1155 sub handle_40 {goto &handle_28}
1156
1157 # user info
1158 sub handle_41
1159 {
1160         my $self = shift;
1161         my $pcno = shift;
1162         my $line = shift;
1163         my $origin = shift;
1164         my $pc = shift;
1165
1166         my $call = $pc->[1];
1167         my $sort = $pc->[2];
1168         my $val = $pc->[3];
1169
1170         my $l = "PC41^$call^$sort";
1171         if (eph_dup($l, $eph_info_restime)) {
1172                 return;
1173         }
1174
1175         # input filter if required
1176         #                       my $ref = Route::get($call) || Route->new($call);
1177         #                       return unless $self->in_filter_route($ref);
1178
1179         if ($val eq $sort || $val =~ /^\s*$/) {
1180                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1181                 return;
1182         }
1183
1184         if ($call eq $main::mycall || $call eq $main::myalias) {
1185                 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1186                 return;
1187         }
1188         my $chan = DXChannel::get($call);
1189         if ($chan) {
1190                 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1191                 return;
1192         }
1193
1194         # add this station to the user database, if required
1195         my $user = DXUser::get_current($call);
1196         $user = DXUser->new($call) unless $user;
1197
1198         if ($sort == 1) {
1199                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1200                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1201                         return;
1202                 }
1203                 $user->name($val);
1204         } elsif ($sort == 2) {
1205                 $user->qth($val);
1206         } elsif ($sort == 3) {
1207                 if (is_latlong($val)) {
1208                         my ($lat, $long) = DXBearing::stoll($val);
1209                         $user->lat($lat) if $lat;
1210                         $user->long($long) if $long;
1211                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1212                 } else {
1213                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1214                         return;
1215                 }
1216         } elsif ($sort == 4) {
1217                 $user->homenode($val);
1218         } elsif ($sort == 5) {
1219                 if (is_qra(uc $val)) {
1220                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1221                         $user->lat($lat) if $lat && !$user->lat;
1222                         $user->long($long) if $long && !$user->long;
1223                         $user->qra(uc $val);
1224                 } else {
1225                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1226                         return;
1227                 }
1228         }
1229         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1230         $user->put;
1231
1232         unless ($self->{isolate}) {
1233                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1234         }
1235
1236         #  perhaps this IS what we want after all
1237         #                       $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1238 }
1239
1240 sub handle_42 {goto &handle_28}
1241
1242
1243 # database
1244 sub handle_44 {goto &handle_37}
1245 sub handle_45 {goto &handle_37}
1246 sub handle_46 {goto &handle_37}
1247 sub handle_47 {goto &handle_37}
1248 sub handle_48 {goto &handle_37}
1249
1250 # message and database
1251 sub handle_49
1252 {
1253         my $self = shift;
1254         my $pcno = shift;
1255         my $line = shift;
1256         my $origin = shift;
1257         my $pc = shift;
1258
1259         if (eph_dup($line)) {
1260                 return;
1261         }
1262
1263         if ($pc->[1] eq $main::mycall) {
1264                 DXMsg::handle_49($self, @$pc);
1265         } else {
1266                 $self->route($pc->[1], $line) unless $self->is_clx;
1267         }
1268 }
1269
1270 # keep alive/user list
1271 sub handle_50
1272 {
1273         my $self = shift;
1274         my $pcno = shift;
1275         my $line = shift;
1276         my $origin = shift;
1277         my $pc = shift;
1278
1279         return if (eph_dup($line));
1280
1281         my $call = $pc->[1];
1282
1283         my $node = Route::Node::get($call);
1284         if ($node) {
1285                 return unless $node->call eq $self->{call};
1286                 $node->usercount($pc->[2]) unless $node->users;
1287                 $node->reset_obs;
1288                 $node->PC92C_dxchan($self->call, $pc->[-1]);
1289
1290                 # input filter if required
1291 #               return unless $self->in_filter_route($node);
1292
1293                 unless ($self->{isolate}) {
1294                         DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1295                 }
1296 #               $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1297         }
1298 }
1299
1300 # incoming ping requests/answers
1301 sub handle_51
1302 {
1303         my $self = shift;
1304         my $pcno = shift;
1305         my $line = shift;
1306         my $origin = shift;
1307         my $pc = shift;
1308
1309         my $to = $pc->[1];
1310         my $from = $pc->[2];
1311         my $flag = $pc->[3];
1312
1313         if ($to eq $main::myalias) {
1314                 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1315                 return;
1316         }
1317
1318         # is it for us?
1319         if ($to eq $main::mycall) {
1320                 if ($flag == 1) {
1321                         $self->send(pc51($from, $to, '0'));
1322                 } else {
1323                         DXXml::Ping::handle_ping_reply($self, $from);
1324                 }
1325         } else {
1326                 if (eph_dup($line)) {
1327                         return;
1328                 }
1329                 # route down an appropriate thingy
1330                 $self->route($to, $line);
1331         }
1332 }
1333
1334 sub handle_61 { goto &handle_11; }
1335
1336 # dunno but route it
1337 sub handle_75
1338 {
1339         my $self = shift;
1340         my $pcno = shift;
1341         my $line = shift;
1342         my $origin = shift;
1343         my $pc = shift;
1344
1345         my $call = $pc->[1];
1346         if ($call ne $main::mycall) {
1347                 $self->route($call, $line);
1348         }
1349 }
1350
1351 # WCY broadcasts
1352 sub handle_73
1353 {
1354         my $self = shift;
1355         my $pcno = shift;
1356         my $line = shift;
1357         my $origin = shift;
1358         my $pc = shift;
1359
1360         my $call = $pc->[1];
1361
1362         # do some de-duping
1363         my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1364         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1365                 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1366                 return;
1367         }
1368         $pc = [ map { unpad($_) } @$pc ];
1369         if (WCY::dup($d)) {
1370                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1371                 return;
1372         }
1373
1374         my $wcy = WCY::update($d, @$pc[2..12]);
1375
1376         if (defined &Local::wcy) {
1377                 my $rep;
1378                 eval {
1379                         $rep = Local::wcy($self, @$pc[1..12]);
1380                 };
1381                 return if $rep;
1382         }
1383
1384         # broadcast to the eager world
1385         send_wcy_spot($self, $line, $d, @$pc[2..12]);
1386 }
1387
1388 # remote commands (incoming)
1389 sub handle_84
1390 {
1391         my $self = shift;
1392         my $pcno = shift;
1393         my $line = shift;
1394         my $origin = shift;
1395         my $pc = shift;
1396
1397         $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1398 }
1399
1400 # remote command replies
1401 sub handle_85
1402 {
1403         my $self = shift;
1404         my $pcno = shift;
1405         my $line = shift;
1406         my $origin = shift;
1407         my $pc = shift;
1408
1409         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1410 }
1411
1412 # decode a pc92 call: flag call : version : build
1413 sub _decode_pc92_call
1414 {
1415         my $icall = shift;
1416         my @part = split /:/, $icall;
1417         my ($flag, $call) = unpack "A A*", $part[0];
1418         unless (defined $flag && $flag ge '0' && $flag le '7') {
1419                 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1420                 return ();
1421         }
1422         unless ($call && is_callsign($call)) {
1423                 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1424                 return ();
1425         }
1426         my $is_node = $flag & 4;
1427         my $is_extnode = $flag & 2;
1428         my $here = $flag & 1;
1429         my $ip  = $part[3];
1430         $ip ||= $part[1] if $part[1] && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
1431         $ip =~ s/,/:/g if $ip;
1432         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1433 }
1434
1435 # decode a pc92 call: flag call : version : build
1436 sub _encode_pc92_call
1437 {
1438         my $ref = shift;
1439
1440         # plain call or value
1441         return $ref unless ref $ref;
1442
1443         my $ext = shift || 0;
1444         my $flag = 0;
1445         my $call = $ref->call;
1446         my $extra = '';
1447         $flag |= $ref->here ? 1 : 0;
1448         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1449                 $flag |= 4;
1450                 my $dxchan = DXChannel::get($call);
1451                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1452                 if (($ext & 1) && $ref->version) {
1453                         my $version = $ref->version || 1.0;
1454                         $version =  $version * 100 + 5300 if $version < 50;
1455                         $extra .= ":" . $version;
1456                 }
1457         }
1458         if (($ext & 2) && $ref->ip) {
1459                 my $ip = $ref->ip;
1460                 $ip =~ s/:/,/g;
1461                 $extra .= ':' . $ip;
1462         }
1463         return "$flag$call$extra";
1464 }
1465
1466 my %things_add;
1467 my %things_del;
1468
1469 sub _add_thingy
1470 {
1471         my $parent = shift;
1472         my $s = shift;
1473         my $dxchan = shift;
1474         my $hops = shift;
1475
1476         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1477         my @rout;
1478
1479         if ($call) {
1480                 my $ncall = $parent->call;
1481                 if ($is_node) {
1482                         dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1483                         @rout = $parent->add($call, $version, Route::here($here), $ip);
1484                         my $r = Route::Node::get($call);
1485                         $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1486                         if ($ip) {
1487                                 $r->ip($ip);
1488                                 Log('DXProt', "PC92A $call -> $ip on $ncall");
1489                         }
1490                 } else {
1491                         dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1492                         @rout = $parent->add_user($call, Route::here($here), $ip);
1493                         $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1494                         my $r = Route::User::get($call);
1495                         if ($ip) {
1496                                 $r->ip($ip);
1497                                 Log('DXProt', "PC92A $call -> $ip on $ncall");
1498                         }
1499                 }
1500                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1501                         $things_add{$call} = Route::get($call);
1502                         delete $things_del{$call};
1503                 }
1504         }
1505         return @rout;
1506 }
1507
1508 sub _del_thingy
1509 {
1510         my $parent = shift;
1511         my $s = shift;
1512         my $dxchan = shift;
1513         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1514         my @rout;
1515         if ($call) {
1516                 my $ref;
1517                 if ($is_node) {
1518                         $ref = Route::Node::get($call);
1519                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1520                         @rout = $ref->del($parent) if $ref;
1521                 } else {
1522                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1523                         $ref = Route::User::get($call);
1524                         if ($ref) {
1525                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1526                                 @rout = $parent->del_user($ref);
1527                         }
1528                 }
1529                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1530                         $things_del{$call} = $ref unless exists $things_add{$call};
1531                         delete $things_add{$call};
1532                 }
1533         }
1534         return @rout;
1535 }
1536
1537 # this will only happen if we are slugging changes and
1538 # there are some changes to be sent, it will create an add or a delete
1539 # or both
1540 sub gen_pc92_changes
1541 {
1542         my @add = values %things_add;
1543         my @del = values %things_del;
1544         return (\@add, \@del);
1545 }
1546
1547 sub clear_pc92_changes
1548 {
1549         %things_add = %things_del = ();
1550         $last_pc92_slug = $main::systime;
1551 }
1552
1553 my $_last_time;
1554 my $_last_occurs;
1555 my $_last_pc9x_id;
1556
1557 sub last_pc9x_id
1558 {
1559         return $_last_pc9x_id;
1560 }
1561
1562 sub gen_pc9x_t
1563 {
1564         if (!$_last_time || $_last_time != $main::systime) {
1565                 $_last_time = $main::systime;
1566                 $_last_occurs = 0;
1567                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1568         } else {
1569                 $_last_occurs++;
1570                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1571         }
1572 }
1573
1574 sub check_pc9x_t
1575 {
1576         my $call = shift;
1577         my $t = shift;
1578         my $pc = shift;
1579         my $create = shift;
1580
1581         # check that the time is between 0 >= $t < 86400
1582         unless ($t >= 0 && $t < 86400) {
1583                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1584                 return undef;
1585         }
1586
1587         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1588         my $now = $main::systime - $main::systime_daystart ;
1589         my $diff = abs($now - $t);
1590         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1591                 my $c = ref $call ? $call->call : $call;
1592                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1593                 return undef;
1594         }
1595
1596         my $parent = ref $call ? $call : Route::Node::get($call);
1597         if ($parent) {
1598                 # we only do this for external calls whose routing table
1599                 # record come and go. The reference for mycall is permanent
1600                 # and not that frequently used, it also never times out, so
1601                 # the id on it is completely unreliable. Besides, only commands
1602                 # originating on this box will go through this code...
1603                 if ($parent->call ne $main::mycall) {
1604                         my $lastid = $parent->lastid;
1605                         if (defined $lastid) {
1606                                 if ($t < $lastid) {
1607                                         # note that this is where we determine whether this pc9x has come in yesterday
1608                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1609                                         # duplicate sentence. To determine this we need to do some module 86400
1610                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1611                                         # low numbers that it is a new sentence.
1612                                         #
1613                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1614                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1615                                         # 86378 respectively in the calculation below).
1616                                         #
1617                                         if ($t+86400-$lastid > $pc9x_past_age) {
1618                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1619                                                 return undef;
1620                                         }
1621                                 } elsif ($t == $lastid) {
1622                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1623                                         return undef;
1624                                 } else {
1625                                         # check that if we have a low number in lastid that yesterday's numbers
1626                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1627                                         if ($lastid+86400-$t < $pc9x_past_age) {
1628                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1629                                                 return undef;
1630                                         }
1631                                 }
1632                         }
1633                 }
1634         } elsif ($create) {
1635                 $parent = Route::Node->new($call);
1636         } else {
1637                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1638                 return undef;
1639         }
1640         if (isdbg('pc92dedupe')) {
1641                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1642                 my $val = $parent->{lastid};
1643                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1644                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1645         }
1646         $parent->lastid($t);
1647
1648         return $parent;
1649 }
1650
1651 sub pc92_handle_first_slot
1652 {
1653         my $self = shift;
1654         my $slot = shift;
1655         my $parent = shift;
1656         my $t = shift;
1657         my $hops = shift;
1658         my $oparent = $parent;
1659
1660         my @radd;
1661
1662         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1663         if ($call && $is_node) {
1664                 if ($call eq $main::mycall) {
1665                         dbg("PCPROT: $call looped back onto \$main::mycall ($main::mycall), ignored") if isdbg('chan');
1666                         return;
1667                 }
1668                 if ($call eq $main::myalias) {
1669                         dbg("PCPROT: $call looped back onto \$main::myalias ($main::myalias), ignored") if isdbg('chan');
1670                         return;
1671                 }
1672                 # this is only accepted from my "self".
1673                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1674                 # locally connected. Local nodes always take precedence. But we remember the lastid
1675                 # to try to reduce the number of dupe PC92s for this external node.
1676                 if (DXChannel::get($call) && $call ne $self->{call}) {
1677                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1678                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1679                         return;
1680                 }
1681                 if ($is_extnode) {
1682                         # reparent to external node (note that we must have received a 'C' or 'A' record
1683                         # from the true parent node for this external before we get one for the this node
1684                         unless ($parent = Route::Node::get($call)) {
1685                                 if ($is_extnode && $oparent) {
1686                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
1687                                         $parent = $radd[0];
1688                                 } else {
1689                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1690                                         return;
1691                                 }
1692                         }
1693                         $parent = check_pc9x_t($call, $t, 92) || return;
1694                         $parent->via_pc92(1);
1695                         $parent->PC92C_dxchan($self->{call}, $hops);
1696                 }
1697         } else {
1698                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1699                 return;
1700         }
1701         $parent->here(Route::here($here));
1702         $parent->version($version || $pc19_version) if $version;
1703         $parent->build($build) if $build;
1704         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1705         return ($parent, @radd);
1706 }
1707
1708 # DXSpider routing entries
1709 sub handle_92
1710 {
1711         my $self = shift;
1712         my $pcno = shift;
1713         my $line = shift;
1714         my $origin = shift;
1715         my $pc = shift;
1716
1717         my (@radd, @rdel);
1718
1719         my $pcall = $pc->[1];
1720         my $t = $pc->[2];
1721         my $sort = $pc->[3];
1722         my $hops = $pc->[-1];
1723
1724         # this catches loops of A/Ds
1725 #       if (eph_dup($line, $pc9x_dupe_age)) {
1726 #               return;
1727 #       }
1728
1729         if ($pcall eq $main::mycall) {
1730                 dbg("PCPROT: looped back, ignored") if isdbg('chan');
1731                 return;
1732         }
1733
1734         if ($pcall eq $main::myalias) {
1735                 dbg("PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored") if isdbg('chan');
1736                 return;
1737         }
1738
1739         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1740                 if ($self->{isolate}) {
1741                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1742                         return;
1743                 } elsif (!$self->user->wantpc9x) {
1744                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1745                         return;
1746                 } else {
1747                         $self->state('init92');
1748                         $self->{do_pc9x} = 1;
1749                         dbg("DXPROT: Do pc9x set on $pcall");
1750                 }
1751         }
1752         unless ($self->{do_pc9x}) {
1753                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1754                 return;
1755         }
1756
1757         # don't create routing entries for D records that don't already exist
1758         # this is what causes all those PC92 loops!
1759         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1760         my $oparent = $parent;
1761
1762         $parent->do_pc9x(1);
1763         $parent->via_pc92(1);
1764
1765         if ($sort eq 'F' || $sort eq 'R') {
1766
1767                 # this is the route finding section
1768                 # here is where the consequences of the 'find' command
1769                 # are dealt with
1770
1771                 my $from = $pc->[4];
1772                 my $target = $pc->[5];
1773
1774                 if ($sort eq 'F') {
1775                         my $flag;
1776                         my $ref;
1777                         my $dxchan;
1778                         if ($ref = DXChannel::get($target)) {
1779                                 $flag = 1;              # we are directly connected
1780                         } else {
1781                                 $ref = Route::get($target);
1782                                 $dxchan = $ref->dxchan;
1783                                 $flag = 2;
1784                         }
1785                         if ($ref && $flag && $dxchan) {
1786                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1787                                 return;
1788                         }
1789                 } elsif ($sort eq 'R') {
1790                         if (my $dxchan = DXChannel::get($from)) {
1791                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1792                         } else {
1793                                 my $ref = Route::get($from);
1794                                 if ($ref) {
1795                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1796                                         if (@dxchan) {
1797                                                 $_->send($line) for @dxchan;
1798                                         } else {
1799                                                 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1800                                         }
1801                                 } else {
1802                                         dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1803                                 }
1804                         }
1805                         return;
1806                 }
1807
1808         } elsif ($sort eq 'K') {
1809                 $pc92Kin += length $line;
1810
1811                 # remember the last channel we arrived on
1812                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1813
1814                 my @ent = _decode_pc92_call($pc->[4]);
1815
1816                 if (@ent) {
1817                         my $add;
1818
1819                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1820                         return unless $parent; # dupe
1821
1822                         push @radd, $add if $add;
1823                         $parent->reset_obs;
1824                         $parent->version($ent[4]) if $ent[4];
1825                         $parent->build($ent[5]) if $ent[5];
1826
1827                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1828                 }
1829         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1830
1831                 $pc92Ain += length $line if $sort eq 'A';
1832                 $pc92Cin += length $line if $sort eq 'C';
1833                 $pc92Din += length $line if $sort eq 'D';
1834
1835                 # remember the last channel we arrived on
1836                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1837
1838                 # this is the main route section
1839                 # here is where all the routes are created and destroyed
1840
1841                 # cope with missing duplicate node calls in the first slot
1842                 my $me = $pc->[4] || '';
1843                 $me ||= _encode_pc92_call($parent) unless $me ;
1844
1845                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
1846
1847                 if (@ent) {
1848
1849                         # look at the first one which will always be a node of some sort
1850                         # except in the case of 'A' or 'D' in which the $pcall is used
1851                         # otherwise use the node call and update any information
1852                         # that needs to be done.
1853                         my $add;
1854
1855                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
1856                         return unless $parent; # dupe
1857
1858                         shift @ent;
1859                         push @radd, $add if $add;
1860                 }
1861
1862                 # do a pass through removing any references to either mycall
1863                 my @nent;
1864                 for (@ent) {
1865                         my $dxc;
1866                         next unless $_ && @$_;
1867                         if ($_->[0] eq $main::mycall) {
1868                                 dbg("PCPROT: $_->[0] refers to me, ignored") if isdbg('chanerr');
1869                                 next;
1870                         }
1871                         push @nent, $_;
1872                 }
1873
1874                 if ($sort eq 'A') {
1875                         for (@nent) {
1876                                 push @radd, _add_thingy($parent, $_, $self, $hops);
1877                         }
1878                 } elsif ($sort eq 'D') {
1879                         for (@nent) {
1880                                 push @rdel, _del_thingy($parent, $_, $self);
1881                         }
1882                 } elsif ($sort eq 'C') {
1883                         my (@nodes, @users);
1884
1885                         # we reset obscounts on config records as well as K records
1886                         $parent->reset_obs;
1887                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1888
1889                         #
1890                         foreach my $r (@nent) {
1891                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1892                                 if ($r->[0]) {
1893                                         if ($r->[1]) {
1894                                                 push @nodes, $r->[0];
1895                                         } else {
1896                                                 push @users, $r->[0];
1897                                         }
1898                                 } else {
1899                                         dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1900                                 }
1901                         }
1902
1903                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1904
1905                         # add users here
1906                         foreach my $r (@nent) {
1907                                 my $call = $r->[0];
1908                                 if ($call) {
1909                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
1910                                 }
1911                         }
1912                         # del users here
1913                         foreach my $r (@$dnodes) {
1914                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
1915                         }
1916                         foreach my $r (@$dusers) {
1917                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
1918                         }
1919
1920                         # remember this last PC92C for rebroadcast on demand
1921                         $parent->last_PC92C($line);
1922                 } else {
1923                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1924                         return;
1925                 }
1926
1927                 foreach my $r (@rdel) {
1928                         next unless $r;
1929
1930                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1931                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1932                 }
1933                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1934                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1935                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
1936                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
1937                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1938         }
1939
1940         # broadcast it if we get here
1941         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1942 }
1943
1944 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
1945 # might be on two or more nodes at the same time or that there may be more than
1946 # one equal distance neighbour to a node.
1947 #
1948 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
1949 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
1950 # each and then combined to give a set of dxchans to send the PC9x record down
1951 #
1952 sub find_pc9x_routes
1953 {
1954         my $to = shift;
1955         my $ref = Route::get($to);
1956         my @parent;
1957         my %cand;
1958
1959         if ($ref->isa('Route::User')) {
1960                 my $dxchan = DXChannel::get($to);
1961                 push @parent, $to if $dxchan;
1962                 push @parent, $ref->parents;
1963         } else {
1964                 @parent = $to;
1965         }
1966         foreach my $p (@parent) {
1967                 my $lasthops;
1968                 my @routes = Route::findroutes($p);
1969                 foreach my $r (@routes) {
1970                         $lasthops = $r->[0] unless defined $lasthops;
1971                         if ($r->[0] == $lasthops) {
1972                                 $cand{$r->[1]->call} = $r->[1];
1973                         } else {
1974                                 last;
1975                         }
1976                 }
1977         }
1978         return values %cand;
1979 }
1980
1981 sub handle_93
1982 {
1983         my $self = shift;
1984         my $pcno = shift;
1985         my $line = shift;
1986         my $origin = shift;
1987         my $pc = shift;
1988
1989 #       $self->{do_pc9x} ||= 1;
1990
1991         my $pcall = $pc->[1];                   # this is now checked earlier
1992
1993         # remember that we are converting PC10->PC93 and self will be $main::me if it
1994         # comes from us
1995         unless ($self->{do_pc9x}) {
1996                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1997                 return;
1998         }
1999
2000         my $t = $pc->[2];
2001         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2002
2003         my $to = uc $pc->[3];
2004         my $from = uc $pc->[4];
2005         my $via = uc $pc->[5];
2006         my $text = $pc->[6];
2007         my $onode = uc $pc->[7];
2008         $onode = $pcall if @$pc <= 8;
2009
2010         # this is catch loops caused by bad software ...
2011         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2012                 return;
2013         }
2014
2015         if (isdbg('progress')) {
2016                 my $s = sprintf "ANNTALK: to: $to from: $from\@$onode%s '$text'", $via ne '*'?" via $via":'';
2017                 dbg($s);
2018         }
2019         
2020         # will we allow it at all?
2021         if ($censorpc) {
2022                 my @bad;
2023                 if (@bad = BadWords::check($text)) {
2024                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2025                         return;
2026                 }
2027         }
2028
2029         # if this is a 'bad spotter' user then ignore it
2030         my $nossid = $from;
2031         $nossid =~ s/-\d+$//;
2032         if ($badspotter->in($nossid)) {
2033                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2034                 return;
2035         }
2036
2037         # ignore PC93 coming in from outside this node with a target of local
2038         if ($to eq 'LOCAL' && $self != $main::me) {
2039                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2040                 return;
2041         }
2042
2043         # if it is routeable then then treat it like a talk
2044         my $ref = Route::get($to);
2045         if ($ref) {
2046                 my $dxchan;
2047
2048                 # convert to PC10 or local talks where appropriate
2049                 # PC93 capable nodes of the same hop count all get a copy
2050                 # if there is a PC10 node then it will get a copy and that
2051                 # will be it. Hopefully such a node will not figure highly
2052                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2053                 # note that both local and PC93s at the same time are possible if the
2054                 # user on more than one node.
2055                 my @routes = find_pc9x_routes($to);
2056                 my $lasthops;
2057                 foreach $dxchan (@routes) {
2058                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2059                                 if ($dxchan->{do_pc9x}) {
2060                                         $dxchan->send($line);
2061                                 } else {
2062                                         $dxchan->talk($from, $to, $via, $text, $onode);
2063                                 }
2064                         } else {
2065                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2066                         }
2067                 }
2068                 return;
2069
2070         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2071                 # announces
2072                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2073                 my $wx = $to eq 'WX' ? '1' : '0';
2074                 my $local = $via eq 'LOCAL' ? '*' : $via;
2075
2076                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2077                 return if $via eq 'LOCAL';
2078         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2079                 # chat messages really only locally connected users
2080                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2081         }
2082
2083         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2084         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2085 }
2086
2087 # if get here then rebroadcast the thing with its Hop count decremented (if
2088 # there is one). If it has a hop count and it decrements to zero then don't
2089 # rebroadcast it.
2090 #
2091 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2092 #        REBROADCAST!!!!
2093 #
2094
2095 sub handle_default
2096 {
2097         my $self = shift;
2098         my $pcno = shift;
2099         my $line = shift;
2100         my $origin = shift;
2101         my $pc = shift;
2102
2103         unless (eph_dup($line)) {
2104                 if ($pcno >= 90) {
2105                         my $pcall = $pc->[1];
2106                         unless (is_callsign($pcall)) {
2107                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2108                                 return;
2109                         }
2110                         my $t = $pc->[2];
2111                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2112                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2113                 } else {
2114                         unless ($self->{isolate}) {
2115                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2116                         }
2117                 }
2118         }
2119 }
2120
2121 1;