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