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