8730754bd8007a4abb7471562c0536d9f0293a5f
[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_user
767 {
768         my $call = shift;
769         my $type = shift;
770         my $homenode = shift;
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->sort($type || 'U');
777                 if ($user->is_node) {
778                         $user->priv(1);         # I have relented and defaulted nodes
779                         $user->lockout(1) if $user->is_node;
780                 } else {
781                         $user->homenode($homenode) if $homenode;
782                         $user->node($homenode);
783                 }
784                 $user->lastin($main::systime); # this make it last longer than just this invocation
785                 $user->put;                             # just to make sure it gets written away!!!
786                 dbg("DXProt: PC92 new user record for $call created");
787         }
788
789         # this is to fix a problem I introduced some build ago by using this function for users
790         # whereas it was only being used for nodes.
791         if ($user->is_user && $user->lockout && $user->priv == 1) {
792                 $user->priv(0);
793                 $user->lockout(0);
794                 dbg("DXProt: PC92 user record for $call depriv'd and unlocked");
795                 $user->put;
796         }
797         return $user;
798 }
799
800 # incoming cluster list
801 sub handle_19
802 {
803         my $self = shift;
804         my $pcno = shift;
805         my $line = shift;
806         my $origin = shift;
807         my $pc = shift;
808
809         my $i;
810         my $newline = "PC19^";
811
812         # new routing list
813         my (@rout, @pc92out);
814
815         # first get the INTERFACE node
816         my $parent = Route::Node::get($self->{call});
817         unless ($parent) {
818                 dbg("PCPROT: my parent $self->{call} has disappeared");
819                 $self->disconnect;
820                 return;
821         }
822
823         my $h;
824
825         # parse the PC19
826         #
827         # We are making a major change from now on. We are only going to accept
828         # PC19s from directly connected nodes.  This means that we are probably
829         # going to throw away most of the data that we are being sent.
830         #
831         # The justification for this is that most of it is wrong or out of date
832         # anyway.
833         #
834         # From now on we are only going to believe PC92 data and locally connected
835         # non-pc92 nodes.
836         #
837         for ($i = 1; $i < $#$pc-1; $i += 4) {
838                 my $here = $pc->[$i];
839                 my $call = uc $pc->[$i+1];
840                 my $conf = $pc->[$i+2];
841                 my $ver = $pc->[$i+3];
842                 next unless defined $here && defined $conf && is_callsign($call);
843
844                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
845
846                 # check for sane parameters
847                 #                               $ver = 5000 if $ver eq '0000';
848                 next unless $ver && $ver =~ /^\d+$/;
849                 next if $ver < 5000;    # only works with version 5 software
850                 next if length $call < 3; # min 3 letter callsigns
851                 next if $call eq $main::mycall || $call eq $main::myalias;
852
853                 # check that this PC19 isn't trying to alter the wrong dxchan
854                 $h = 0;
855                 my $dxchan = DXChannel::get($call);
856                 if ($dxchan) {
857                         if ($dxchan == $self) {
858                                 $h = 1;
859                         } else {
860                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
861                                 next;
862                         }
863                 }
864
865                 # isolate now means only accept stuff from this call only
866                 if ($self->{isolate} && $call ne $self->{call}) {
867                         dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
868                         next;
869                 }
870
871                 my $user = check_add_user($call, 'A');
872
873 #               if (eph_dup($genline)) {
874 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
875 #                       next;
876 #               }
877
878
879                 unless ($h) {
880                         if ($parent->via_pc92) {
881                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
882                                 next;
883                         }
884                 }
885
886                 my $r = Route::Node::get($call);
887                 my $flags = Route::here($here)|Route::conf($conf);
888
889                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
890                 if ($r) {
891                         my $ar;
892                         if ($call ne $parent->call) {
893                                 if ($self->in_filter_route($r)) {
894                                         $ar = $parent->add($call, $ver, $flags);
895 #                                       push @rout, $ar if $ar;
896                                 } else {
897                                         next;
898                                 }
899                         }
900                         if ($r->version ne $ver || $r->flags != $flags) {
901                                 $r->version($ver);
902                                 $r->flags($flags);
903                         }
904                         push @rout, $r;
905                 } else {
906                         if ($call eq $self->{call} || $user->wantroutepc19) {
907                                 my $new = Route->new($call); # throw away
908                                 if ($self->in_filter_route($new)) {
909                                         my $ar = $parent->add($call, $ver, $flags);
910                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
911                                         push @rout, $ar if $ar;
912                                         push @pc92out, $r if $h;
913                                 } else {
914                                         next;
915                                 }
916                         }
917                 }
918
919                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
920                 my $mref = DXMsg::get_busy($call);
921                 $mref->stop_msg($call) if $mref;
922
923                 $user->lastin($main::systime) unless DXChannel::get($call);
924                 $user->put;
925         }
926
927         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
928         # but remember there will only be one (pair) these because any extras will be
929         # thrown away.
930         if (@rout) {
931 #               $self->route_pc21($self->{call}, $line, @rout);
932                 $self->route_pc19($self->{call}, $line, @rout);
933         }
934         if (@pc92out && !$pc92_slug_changes) {
935                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
936         }
937 }
938
939 # send local configuration
940 sub handle_20
941 {
942         my $self = shift;
943         my $pcno = shift;
944         my $line = shift;
945         my $origin = shift;
946         my $pc = shift;
947
948         if ($self->{do_pc9x} && $self->{state} ne 'init92') {
949                 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
950                 $self->{do_pc9x} = 0;
951         }
952         $self->send_local_config;
953         $self->send(pc22());
954         $self->state('normal');
955         $self->{lastping} = 0;
956         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
957 }
958
959 # delete a cluster from the list
960 #
961 # This should never occur for directly connected nodes.
962 #
963 sub handle_21
964 {
965         my $self = shift;
966         my $pcno = shift;
967         my $line = shift;
968         my $origin = shift;
969         my $pc = shift;
970
971         my $call = uc $pc->[1];
972
973         eph_del_regex("^PC1[679].*$call");
974
975         # if I get a PC21 from the same callsign as self then ignore it
976         if ($call eq $self->{call}) {
977                 dbg("PCPROT: self referencing PC21 from $self->{call}");
978                 return;
979         }
980
981         # for the above reason and also because of the check for PC21s coming
982         # in for self->call from outside being ignored further down
983         # we don't need any isolation code here, because we will never
984         # act on a PC21 with self->call in it.
985
986         my $parent = Route::Node::get($self->{call});
987         unless ($parent) {
988                 dbg("PCPROT: my parent $self->{call} has disappeared");
989                 $self->disconnect;
990                 return;
991         }
992
993         my @rout;
994
995         if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
996                 my $node = Route::Node::get($call);
997                 if ($node) {
998
999                         if ($node->via_pc92) {
1000                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
1001                                 return;
1002                         }
1003
1004                         my $dxchan = DXChannel::get($call);
1005                         if ($dxchan && $dxchan != $self) {
1006                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
1007                                 return;
1008                         }
1009
1010                         # input filter it
1011                         return unless $self->in_filter_route($node);
1012
1013                         # routing objects, force a PC21 if it is local
1014                         push @rout, $node->del($parent);
1015                         push @rout, $call if $dxchan && @rout == 0;
1016                 }
1017         } else {
1018                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
1019                 return;
1020         }
1021
1022         if (eph_dup($line)) {
1023                 return;
1024         }
1025
1026         if (@rout) {
1027                 $self->route_pc21($origin, $line, @rout);
1028 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
1029         }
1030 }
1031
1032
1033 sub handle_22
1034 {
1035         my $self = shift;
1036         my $pcno = shift;
1037         my $line = shift;
1038         my $origin = shift;
1039         my $pc = shift;
1040
1041         if ($self->{do_pc9x}) {
1042                 if ($self->{state} ne 'init92') {
1043                         $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
1044                         $self->{do_pc9x} = 0;
1045                 }
1046         }
1047         $self->{lastping} = 0;
1048         $self->state('normal');
1049         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1050 }
1051
1052 # WWV info
1053 sub handle_23
1054 {
1055         my $self = shift;
1056         my $pcno = shift;
1057         my $line = shift;
1058         my $origin = shift;
1059         my $pc = shift;
1060
1061         # route foreign' pc27s
1062         if ($pcno == 27) {
1063                 if ($pc->[8] ne $main::mycall) {
1064                         $self->route($pc->[8], $line);
1065                         return;
1066                 }
1067         }
1068
1069
1070         # do some de-duping
1071         my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
1072         my $sfi = unpad($pc->[3]);
1073         my $k = unpad($pc->[4]);
1074         my $i = unpad($pc->[5]);
1075         my ($r) = $pc->[6] =~ /R=(\d+)/;
1076         $r = 0 unless $r;
1077         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1078                 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
1079                 return;
1080         }
1081
1082         # global wwv filtering on INPUT
1083         my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
1084         if ($self->{inwwvfilter}) {
1085                 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
1086                 unless ($filter) {
1087                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1088                         return;
1089                 }
1090         }
1091         $pc->[7] =~ s/-\d+$//o;         # remove spotter's ssid
1092         if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
1093                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1094                 return;
1095         }
1096
1097         # note this only takes the first one it gets
1098         Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1099         dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
1100
1101         if (defined &Local::wwv) {
1102                 my $rep;
1103                 eval {
1104                         $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1105                 };
1106                 return if $rep;
1107         }
1108
1109         # DON'T be silly and send on PC27s!
1110         return if $pcno == 27;
1111
1112         # broadcast to the eager world
1113         send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1114 }
1115
1116 # set here status
1117 sub handle_24
1118 {
1119         my $self = shift;
1120         my $pcno = shift;
1121         my $line = shift;
1122         my $origin = shift;
1123         my $pc = shift;
1124
1125         my $call = uc $pc->[1];
1126         my ($nref, $uref);
1127         $nref = Route::Node::get($call);
1128         $uref = Route::User::get($call);
1129         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1130
1131         if (eph_dup($line)) {
1132                 return;
1133         }
1134
1135         $nref->here($pc->[2]) if $nref;
1136         $uref->here($pc->[2]) if $uref;
1137         my $ref = $nref || $uref;
1138         return unless $self->in_filter_route($ref);
1139
1140         $self->route_pc24($origin, $line, $ref, $pc->[3]);
1141 }
1142
1143 # merge request
1144 sub handle_25
1145 {
1146         my $self = shift;
1147         my $pcno = shift;
1148         my $line = shift;
1149         my $origin = shift;
1150         my $pc = shift;
1151
1152         if ($pc->[1] ne $main::mycall) {
1153                 $self->route($pc->[1], $line);
1154                 return;
1155         }
1156         if ($pc->[2] eq $main::mycall) {
1157                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1158                 return;
1159         }
1160
1161         Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1162
1163         # spots
1164         if ($pc->[3] > 0) {
1165                 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1166                 my $in;
1167                 foreach $in (@in) {
1168                         $self->send(pc26(@{$in}[0..4], $pc->[2]));
1169                 }
1170         }
1171
1172         # wwv
1173         if ($pc->[4] > 0) {
1174                 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1175                 my $in;
1176                 foreach $in (@in) {
1177                         $self->send(pc27(@{$in}[0..5], $pc->[2]));
1178                 }
1179         }
1180 }
1181
1182 sub handle_26 {goto &handle_11}
1183 sub handle_27 {goto &handle_23}
1184
1185 # mail/file handling
1186 sub handle_28
1187 {
1188         my $self = shift;
1189         my $pcno = shift;
1190         my $line = shift;
1191         my $origin = shift;
1192         my $pc = shift;
1193
1194         if ($pc->[1] eq $main::mycall) {
1195                 no strict 'refs';
1196                 my $sub = "DXMsg::handle_$pcno";
1197                 &$sub($self, @$pc);
1198         } else {
1199                 $self->route($pc->[1], $line) unless $self->is_clx;
1200         }
1201 }
1202
1203 sub handle_29 {goto &handle_28}
1204 sub handle_30 {goto &handle_28}
1205 sub handle_31 {goto &handle_28}
1206 sub handle_32 {goto &handle_28}
1207 sub handle_33 {goto &handle_28}
1208
1209 sub handle_34
1210 {
1211         my $self = shift;
1212         my $pcno = shift;
1213         my $line = shift;
1214         my $origin = shift;
1215         my $pc = shift;
1216
1217         if (eph_dup($line, $eph_pc34_restime)) {
1218                 return;
1219         } else {
1220                 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1221         }
1222 }
1223
1224 # remote command replies
1225 sub handle_35
1226 {
1227         my $self = shift;
1228         my $pcno = shift;
1229         my $line = shift;
1230         my $origin = shift;
1231         my $pc = shift;
1232
1233         eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1234         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1235 }
1236
1237 sub handle_36 {goto &handle_34}
1238
1239 # database stuff
1240 sub handle_37
1241 {
1242         my $self = shift;
1243         my $pcno = shift;
1244         my $line = shift;
1245         my $origin = shift;
1246         my $pc = shift;
1247
1248         if ($pc->[1] eq $main::mycall) {
1249                 no strict 'refs';
1250                 my $sub = "DXDb::handle_$pcno";
1251                 &$sub($self, @$pc);
1252         } else {
1253                 $self->route($pc->[1], $line) unless $self->is_clx;
1254         }
1255 }
1256
1257 # node connected list from neighbour
1258 sub handle_38
1259 {
1260         my $self = shift;
1261         my $pcno = shift;
1262         my $line = shift;
1263         my $origin = shift;
1264         my $pc = shift;
1265 }
1266
1267 # incoming disconnect
1268 sub handle_39
1269 {
1270         my $self = shift;
1271         my $pcno = shift;
1272         my $line = shift;
1273         my $origin = shift;
1274         my $pc = shift;
1275
1276         if ($pc->[1] eq $self->{call}) {
1277                 $self->disconnect(1);
1278         } else {
1279                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1280         }
1281 }
1282
1283 sub handle_40 {goto &handle_28}
1284
1285 # user info
1286 sub handle_41
1287 {
1288         my $self = shift;
1289         my $pcno = shift;
1290         my $line = shift;
1291         my $origin = shift;
1292         my $pc = shift;
1293
1294         my $call = $pc->[1];
1295         my $sort = $pc->[2];
1296         my $val = $pc->[3];
1297
1298         my $l = "PC41^$call^$sort";
1299         if (eph_dup($l, $eph_info_restime)) {
1300                 return;
1301         }
1302
1303         # input filter if required
1304         #                       my $ref = Route::get($call) || Route->new($call);
1305         #                       return unless $self->in_filter_route($ref);
1306
1307         if ($val eq $sort || $val =~ /^\s*$/) {
1308                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1309                 return;
1310         }
1311
1312         if ($call eq $main::mycall || $call eq $main::myalias) {
1313                 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1314                 return;
1315         }
1316         my $chan = DXChannel::get($call);
1317         if ($chan) {
1318                 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1319                 return;
1320         }
1321
1322         # add this station to the user database, if required
1323         my $user = DXUser::get_current($call);
1324         $user = DXUser->new($call) unless $user;
1325
1326         if ($sort == 1) {
1327                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1328                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1329                         return;
1330                 }
1331                 $user->name($val);
1332         } elsif ($sort == 2) {
1333                 $user->qth($val);
1334         } elsif ($sort == 3) {
1335                 if (is_latlong($val)) {
1336                         my ($lat, $long) = DXBearing::stoll($val);
1337                         $user->lat($lat) if $lat;
1338                         $user->long($long) if $long;
1339                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1340                 } else {
1341                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1342                         return;
1343                 }
1344         } elsif ($sort == 4) {
1345                 $user->homenode($val);
1346         } elsif ($sort == 5) {
1347                 if (is_qra(uc $val)) {
1348                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1349                         $user->lat($lat) if $lat && !$user->lat;
1350                         $user->long($long) if $long && !$user->long;
1351                         $user->qra(uc $val);
1352                 } else {
1353                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1354                         return;
1355                 }
1356         }
1357         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1358         $user->put;
1359
1360         unless ($self->{isolate}) {
1361                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1362         }
1363
1364         #  perhaps this IS what we want after all
1365         #                       $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1366 }
1367
1368 sub handle_42 {goto &handle_28}
1369
1370
1371 # database
1372 sub handle_44 {goto &handle_37}
1373 sub handle_45 {goto &handle_37}
1374 sub handle_46 {goto &handle_37}
1375 sub handle_47 {goto &handle_37}
1376 sub handle_48 {goto &handle_37}
1377
1378 # message and database
1379 sub handle_49
1380 {
1381         my $self = shift;
1382         my $pcno = shift;
1383         my $line = shift;
1384         my $origin = shift;
1385         my $pc = shift;
1386
1387         if (eph_dup($line)) {
1388                 return;
1389         }
1390
1391         if ($pc->[1] eq $main::mycall) {
1392                 DXMsg::handle_49($self, @$pc);
1393         } else {
1394                 $self->route($pc->[1], $line) unless $self->is_clx;
1395         }
1396 }
1397
1398 # keep alive/user list
1399 sub handle_50
1400 {
1401         my $self = shift;
1402         my $pcno = shift;
1403         my $line = shift;
1404         my $origin = shift;
1405         my $pc = shift;
1406
1407         return if (eph_dup($line));
1408
1409         my $call = $pc->[1];
1410
1411         my $node = Route::Node::get($call);
1412         if ($node) {
1413                 return unless $node->call eq $self->{call};
1414                 $node->usercount($pc->[2]) unless $node->users;
1415                 $node->reset_obs;
1416                 $node->PC92C_dxchan($self->call, $pc->[-1]);
1417
1418                 # input filter if required
1419 #               return unless $self->in_filter_route($node);
1420
1421                 unless ($self->{isolate}) {
1422                         DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1423                 }
1424 #               $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1425         }
1426 }
1427
1428 # incoming ping requests/answers
1429 sub handle_51
1430 {
1431         my $self = shift;
1432         my $pcno = shift;
1433         my $line = shift;
1434         my $origin = shift;
1435         my $pc = shift;
1436
1437         my $to = $pc->[1];
1438         my $from = $pc->[2];
1439         my $flag = $pc->[3];
1440
1441         if ($to eq $main::myalias) {
1442                 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1443                 return;
1444         }
1445
1446         # is it for us?
1447         if ($to eq $main::mycall) {
1448                 if ($flag == 1) {
1449                         $self->send(pc51($from, $to, '0'));
1450                 } else {
1451                         DXXml::Ping::handle_ping_reply($self, $from);
1452                 }
1453         } else {
1454                 if (eph_dup($line)) {
1455                         return;
1456                 }
1457                 # route down an appropriate thingy
1458                 $self->route($to, $line);
1459         }
1460 }
1461
1462 sub handle_61 { goto &handle_11; }
1463
1464 # dunno but route it
1465 sub handle_75
1466 {
1467         my $self = shift;
1468         my $pcno = shift;
1469         my $line = shift;
1470         my $origin = shift;
1471         my $pc = shift;
1472
1473         my $call = $pc->[1];
1474         if ($call ne $main::mycall) {
1475                 $self->route($call, $line);
1476         }
1477 }
1478
1479 # WCY broadcasts
1480 sub handle_73
1481 {
1482         my $self = shift;
1483         my $pcno = shift;
1484         my $line = shift;
1485         my $origin = shift;
1486         my $pc = shift;
1487
1488         my $call = $pc->[1];
1489
1490         # do some de-duping
1491         my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1492         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1493                 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1494                 return;
1495         }
1496         $pc = [ map { unpad($_) } @$pc ];
1497         if (WCY::dup($d)) {
1498                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1499                 return;
1500         }
1501
1502         my $wcy = WCY::update($d, @$pc[2..12]);
1503         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');
1504
1505         if (defined &Local::wcy) {
1506                 my $rep;
1507                 eval {
1508                         $rep = Local::wcy($self, @$pc[1..12]);
1509                 };
1510                 return if $rep;
1511         }
1512
1513         # broadcast to the eager world
1514         send_wcy_spot($self, $line, $d, @$pc[2..12]);
1515 }
1516
1517 # remote commands (incoming)
1518 sub handle_84
1519 {
1520         my $self = shift;
1521         my $pcno = shift;
1522         my $line = shift;
1523         my $origin = shift;
1524         my $pc = shift;
1525
1526         $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1527 }
1528
1529 # remote command replies
1530 sub handle_85
1531 {
1532         my $self = shift;
1533         my $pcno = shift;
1534         my $line = shift;
1535         my $origin = shift;
1536         my $pc = shift;
1537
1538         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1539 }
1540
1541 # decode a pc92 call: flag call : version : build
1542 sub _decode_pc92_call
1543 {
1544         my $icall = shift;
1545         my @part = split /:/, $icall;
1546         my ($flag, $call) = unpack "A A*", $part[0];
1547         unless (defined $flag && $flag ge '0' && $flag le '7') {
1548                 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1549                 return ();
1550         }
1551         unless ($call && is_callsign($call)) {
1552                 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1553                 return ();
1554         }
1555         my $is_node = $flag & 4;
1556         my $is_extnode = $flag & 2;
1557         my $here = $flag & 1;
1558         my $ip;
1559         $part[1] //= '';
1560         $part[2] //= '';
1561         $part[3] //= '';
1562         if ($part[1] =~ /[,.]/) {
1563                 $ip = $part[1];
1564                 $part[1] = $part[2] = 0;
1565         } elsif ($part[3] =~ /[,.]/) {
1566                 $ip = $part[3];
1567         }
1568         $ip =~ s/,/:/g if $ip;
1569         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1570 }
1571
1572 # decode a pc92 call: flag call : version : build
1573 sub _encode_pc92_call
1574 {
1575         my $ref = shift;
1576
1577         # plain call or value
1578         return $ref unless ref $ref;
1579
1580         my $ext = shift || 0;
1581         my $flag = 0;
1582         my $call = $ref->call;
1583         my $extra = '';
1584         $flag |= $ref->here ? 1 : 0;
1585         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1586                 $flag |= 4;
1587                 my $dxchan = DXChannel::get($call);
1588                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1589                 if (($ext & 1) && $ref->version) {
1590                         my $version = $ref->version || 1.0;
1591                         $version =  $version * 100 + 5300 if $version < 50;
1592                         $extra .= ":" . $version;
1593                 }
1594         }
1595         if (($ext & 2) && $ref->ip) {
1596                 my $ip = $ref->ip;
1597                 $ip =~ s/:/,/g;
1598                 $extra .= ':' . $ip;
1599         }
1600         return "$flag$call$extra";
1601 }
1602
1603 my %things_add;
1604 my %things_del;
1605
1606 sub _add_thingy
1607 {
1608         my $parent = shift;
1609         my $s = shift;
1610         my $dxchan = shift;
1611         my $hops = shift;
1612
1613         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1614         my @rout;
1615
1616         # remove spurious IPV6 prefix on IPV4 addresses
1617         $ip =~ s/^::ffff:// if $ip;
1618         $build //= 0;
1619         $version //= 0;
1620
1621         if ($call) {
1622                 my $ncall = $parent->call;
1623                 if ($ncall ne $call) {
1624                         my $user;
1625                         my $r;
1626
1627                         # normalise call, delete any unnormalised calls in the users file.
1628                         # then ignore this thingy
1629                         my $normcall = normalise_call($call);
1630                         if ($normcall ne $call) {
1631                                 next if DXChannel::get($call);
1632                                 $user = DXUser::get($call);
1633                                 dbg("DXProt::_add_thingy call $call normalised to $normcall, deleting spurious user $call");
1634                                 $user->del if $user;
1635                             $call = $normcall; # this is safe because a route add will ignore duplicates
1636                         }
1637                         
1638                         if ($is_node) {
1639                                 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1640                                 $user = check_add_user($call, 'A');
1641                                 @rout = $parent->add($call, $version, Route::here($here), $ip);
1642                                 $r = Route::Node::get($call);
1643                                 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1644                                 if ($version && $version =~ /\d+/) {
1645                                         my $old = $user->sort;
1646                                         if ($user->is_ak1a && (($version >= 5455 &&  $build > 0) || ($version >= 3000 && $version <= 3500)) ) {
1647                                                 $user->sort('S');
1648                                                 dbg("PCProt::_add_thingy node $call v: $version b: $build sort ($old) updated to " . $user->sort);
1649                                         } elsif ($user->is_spider && $version =~ /^\d+$/ && ($version < 3000 || ($version > 4000 && $version < 5455))) {
1650                                                 unless ($version == 5000 && $build == 0) {
1651                                                         $user->sort('A');
1652                                                         $build //= 0;
1653                                                         dbg("PCProt::_add_thingy node $call v: $version b: $build sort ($old) downgraded to " . $user->sort);
1654                                                 }
1655                                         }
1656                                 }
1657                         } else {
1658                                 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1659                                 $user = check_add_user($call, 'U', $parent->call);
1660                                 @rout = $parent->add_user($call, Route::here($here), $ip);
1661                                 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1662                                 $r = Route::User::get($call);
1663                         }
1664                         if ($ip) {
1665                                 $r->ip($ip);
1666                                 Log('DXProt', "PC92A $call -> $ip on $ncall");
1667                         }
1668                         if ($pc92_slug_changes && $parent == $main::routeroot) {
1669                                 $things_add{$call} = Route::get($call);
1670                                 delete $things_del{$call};
1671                         }
1672                         $user->close($main::systime, $ip) if $user;             # this just updates lastseen and the connlist list containing the IP address
1673                 } else {                                
1674                         dbgprintring(10) if isdbg('nologchan');
1675                         dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1676                 }
1677         }
1678         
1679         return @rout;
1680 }
1681
1682 sub _del_thingy
1683 {
1684         my $parent = shift;
1685         my $s = shift;
1686         my $dxchan = shift;
1687         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1688         my @rout;
1689         if ($call) {
1690                 my $ref;
1691                 if ($is_node) {
1692                         $ref = Route::Node::get($call);
1693                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1694                         @rout = $ref->del($parent) if $ref;
1695                 } else {
1696                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1697                         $ref = Route::User::get($call);
1698                         if ($ref) {
1699                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1700                                 @rout = $parent->del_user($ref);
1701                         }
1702                 }
1703                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1704                         $things_del{$call} = $ref unless exists $things_add{$call};
1705                         delete $things_add{$call};
1706                 }
1707         }
1708         return @rout;
1709 }
1710
1711 # this will only happen if we are slugging changes and
1712 # there are some changes to be sent, it will create an add or a delete
1713 # or both
1714 sub gen_pc92_changes
1715 {
1716         my @add = values %things_add;
1717         my @del = values %things_del;
1718         return (\@add, \@del);
1719 }
1720
1721 sub clear_pc92_changes
1722 {
1723         %things_add = %things_del = ();
1724         $last_pc92_slug = $main::systime;
1725 }
1726
1727 my $_last_time;
1728 my $_last_occurs;
1729 my $_last_pc9x_id;
1730
1731 sub last_pc9x_id
1732 {
1733         return $_last_pc9x_id;
1734 }
1735
1736 sub gen_pc9x_t
1737 {
1738         if (!$_last_time || $_last_time != $main::systime) {
1739                 $_last_time = $main::systime;
1740                 $_last_occurs = 0;
1741                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1742         } else {
1743                 $_last_occurs++;
1744                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1745         }
1746 }
1747
1748 sub check_pc9x_t
1749 {
1750         my $call = shift;
1751         my $t = shift;
1752         my $pc = shift;
1753         my $create = shift;
1754
1755         # check that the time is between 0 >= $t < 86400
1756         unless ($t >= 0 && $t < 86400) {
1757                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1758                 return undef;
1759         }
1760
1761         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1762         my $now = $main::systime - $main::systime_daystart ;
1763         my $diff = abs($now - $t);
1764         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1765                 my $c = ref $call ? $call->call : $call;
1766                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1767                 return undef;
1768         }
1769
1770         my $parent = ref $call ? $call : Route::Node::get($call);
1771         if ($parent) {
1772                 # we only do this for external calls whose routing table
1773                 # record come and go. The reference for mycall is permanent
1774                 # and not that frequently used, it also never times out, so
1775                 # the id on it is completely unreliable. Besides, only commands
1776                 # originating on this box will go through this code...
1777                 if ($parent->call ne $main::mycall) {
1778                         my $lastid = $parent->lastid;
1779                         if (defined $lastid) {
1780                                 if ($t < $lastid) {
1781                                         # note that this is where we determine whether this pc9x has come in yesterday
1782                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1783                                         # duplicate sentence. To determine this we need to do some module 86400
1784                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1785                                         # low numbers that it is a new sentence.
1786                                         #
1787                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1788                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1789                                         # 86378 respectively in the calculation below).
1790                                         #
1791                                         if ($t+86400-$lastid > $pc9x_past_age) {
1792                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1793                                                 return undef;
1794                                         }
1795                                 } elsif ($t == $lastid) {
1796                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1797                                         return undef;
1798                                 } else {
1799                                         # check that if we have a low number in lastid that yesterday's numbers
1800                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1801                                         if ($lastid+86400-$t < $pc9x_past_age) {
1802                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1803                                                 return undef;
1804                                         }
1805                                 }
1806                         }
1807                 }
1808         } elsif ($create) {
1809                 $parent = Route::Node->new($call);
1810         } else {
1811                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1812                 return undef;
1813         }
1814         if (isdbg('pc92dedupe')) {
1815                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1816                 my $val = $parent->{lastid};
1817                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1818                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1819         }
1820         $parent->lastid($t);
1821
1822         return $parent;
1823 }
1824
1825 sub pc92_handle_first_slot
1826 {
1827         my $self = shift;
1828         my $slot = shift;
1829         my $parent = shift;
1830         my $t = shift;
1831         my $hops = shift;
1832         my $oparent = $parent;
1833
1834         my @radd;
1835
1836         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1837         if ($call && $is_node) {
1838                 if ($call eq $main::mycall) {
1839                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::mycall ($main::mycall), ignored");
1840                         return;
1841                 }
1842                 if ($call eq $main::myalias) {
1843                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::myalias ($main::myalias), ignored");
1844                         return;
1845                 }
1846                 # this is only accepted from my "self".
1847                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1848                 # locally connected. Local nodes always take precedence. But we remember the lastid
1849                 # to try to reduce the number of dupe PC92s for this external node.
1850                 if (DXChannel::get($call) && $call ne $self->{call}) {
1851                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1852                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1853                         return;
1854                 }
1855                 if ($is_extnode) {
1856                         # reparent to external node (note that we must have received a 'C' or 'A' record
1857                         # from the true parent node for this external before we get one for the this node
1858                         unless ($parent = Route::Node::get($call)) {
1859                                 if ($is_extnode && $oparent) {
1860                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
1861                                         $parent = $radd[0];
1862                                 } else {
1863                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1864                                         return;
1865                                 }
1866                         }
1867                         $parent = check_pc9x_t($call, $t, 92) || return;
1868                         $parent->via_pc92(1);
1869                         $parent->PC92C_dxchan($self->{call}, $hops);
1870                 }
1871         } else {
1872                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1873                 return;
1874         }
1875         $parent->here(Route::here($here));
1876         $parent->version($version || $pc19_version) if $version;
1877         $build =~ s/^0\.//, $parent->build($build) if $build;
1878         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1879         return ($parent, @radd);
1880 }
1881
1882 # DXSpider routing entries
1883 sub handle_92
1884 {
1885         my $self = shift;
1886         my $pcno = shift;
1887         my $line = shift;
1888         my $origin = shift;
1889         my $pc = shift;
1890
1891         my (@radd, @rdel);
1892
1893         my $pcall = $pc->[1];
1894         my $t = $pc->[2];
1895         my $sort = $pc->[3];
1896         my $hops = $pc->[-1];
1897
1898         # this catches loops of A/Ds
1899 #       if (eph_dup($line, $pc9x_dupe_age)) {
1900 #               return;
1901 #       }
1902
1903         if ($pcall eq $main::mycall) {
1904                 LogDbg('err', "PCPROT: looped back, ignored");
1905                 return;
1906         }
1907
1908         if ($pcall eq $main::myalias) {
1909                 LogDbg('err', "PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored");
1910                 return;
1911         }
1912
1913         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1914                 if ($self->{isolate}) {
1915                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1916                         return;
1917                 } elsif (!$self->user->wantpc9x) {
1918                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1919                         return;
1920                 } else {
1921                         $self->state('init92');
1922                         $self->{do_pc9x} = 1;
1923                         dbg("DXPROT: Do pc9x set on $pcall");
1924                 }
1925         }
1926         unless ($self->{do_pc9x}) {
1927                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1928                 return;
1929         }
1930
1931         # don't create routing entries for D records that don't already exist
1932         # this is what causes all those PC92 loops!
1933         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1934         my $oparent = $parent;
1935
1936         $parent->do_pc9x(1);
1937         $parent->via_pc92(1);
1938
1939         if ($sort eq 'F' || $sort eq 'R') {
1940
1941                 # this is the route finding section
1942                 # here is where the consequences of the 'find' command
1943                 # are dealt with
1944
1945                 my $from = $pc->[4];
1946                 my $target = $pc->[5];
1947
1948                 if ($sort eq 'F') {
1949                         my $flag;
1950                         my $ref;
1951                         my $dxchan;
1952                         if ($ref = DXChannel::get($target)) {
1953                                 $flag = 1;              # we are directly connected
1954                         } else {
1955                                 $ref = Route::get($target);
1956                                 $dxchan = $ref->dxchan;
1957                                 $flag = 2;
1958                         }
1959                         if ($ref && $flag && $dxchan) {
1960                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1961                                 return;
1962                         }
1963                 } elsif ($sort eq 'R') {
1964                         if (my $dxchan = DXChannel::get($from)) {
1965                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1966                         } else {
1967                                 my $ref = Route::get($from);
1968                                 if ($ref) {
1969                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1970                                         if (@dxchan) {
1971                                                 $_->send($line) for @dxchan;
1972                                         } else {
1973                                                 dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
1974                                         }
1975                                 } else {
1976                                         dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
1977                                 }
1978                         }
1979                         return;
1980                 }
1981
1982         } elsif ($sort eq 'K') {
1983                 $pc92Kin += length $line;
1984
1985                 # remember the last channel we arrived on
1986                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1987
1988                 my @ent = _decode_pc92_call($pc->[4]);
1989
1990                 if (@ent) {
1991                         my $add;
1992
1993                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1994                         return unless $parent; # dupe
1995                         
1996                         push @radd, $add if $add;
1997                         $parent->reset_obs;
1998                         my $call = $parent->call;
1999                         my $version = $ent[4] // 0;
2000                         my $build = $ent[5] // 0;
2001                         $build =~ s/^0\.//;
2002                         my $oldbuild = $parent->build // 0;
2003                         $oldbuild =~ s/^0\.//;
2004                         my $oldversion = $parent->version // 0;
2005                         my $user = check_add_user($parent->call, 'S');
2006                         my $oldsort = $user->sort // '';
2007                         if ($oldsort ne 'S' || $oldversion != $version || $build != $oldbuild) {
2008                                 dbg("PCProt PC92 K node $call updated version: $version (was $oldversion) build: $build (was $oldbuild) sort: 'S' (was $oldsort)");
2009                                 $user->sort('S');
2010                                 $user->version($parent->version($version));
2011                                 $user->build($parent->build($build));
2012                                 $user->put;
2013                         }
2014
2015                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2016                 }
2017         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
2018
2019                 $pc92Ain += length $line if $sort eq 'A';
2020                 $pc92Cin += length $line if $sort eq 'C';
2021                 $pc92Din += length $line if $sort eq 'D';
2022
2023                 # remember the last channel we arrived on
2024                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2025
2026                 # this is the main route section
2027                 # here is where all the routes are created and destroyed
2028
2029                 # cope with missing duplicate node calls in the first slot
2030                 my $me = $pc->[4] || '';
2031                 $me ||= _encode_pc92_call($parent) unless $me ;
2032
2033                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
2034
2035                 if (@ent) {
2036
2037                         # look at the first one which will always be a node of some sort
2038                         # except in the case of 'A' or 'D' in which the $pcall is used
2039                         # otherwise use the node call and update any information
2040                         # that needs to be done.
2041                         my $add;
2042
2043                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
2044                         return unless $parent; # dupe
2045
2046                         shift @ent;
2047                         push @radd, $add if $add;
2048                 }
2049
2050                 # do a pass through removing any references to either mycall
2051                 my @nent;
2052                 for (@ent) {
2053                         my $dxc;
2054                         next unless $_ && @$_;
2055                         if ($_->[0] eq $main::mycall) {
2056                                 dbg("PCPROT: $self->{call} : type $sort $_->[0] refers to me, ignored") if isdbg('route');
2057                                 next;
2058                         }
2059                         if ($_->[0] eq $main::myalias && $_->[1] || $_->[0] eq $main::mycall && $_->[1] == 0) {
2060                                 LogDbg('err',"PCPROT: $self->{call} : type $sort $_->[0] trying to change type to " . $_->[1]?"Node":"User" . ", ignored");
2061                                 next;
2062                         }
2063                         
2064                         push @nent, $_;
2065                 }
2066
2067                 if ($sort eq 'A') {
2068                         for (@nent) {
2069                                 push @radd, _add_thingy($parent, $_, $self, $hops);
2070                         }
2071                 } elsif ($sort eq 'D') {
2072                         for (@nent) {
2073                                 push @rdel, _del_thingy($parent, $_, $self);
2074                         }
2075                 } elsif ($sort eq 'C') {
2076                         my (@nodes, @users);
2077
2078                         # we reset obscounts on config records as well as K records
2079                         $parent->reset_obs;
2080                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2081
2082                         #
2083                         foreach my $r (@nent) {
2084                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
2085                                 if ($r->[0]) {
2086                                         if ($r->[1]) {
2087                                                 push @nodes, $r->[0];
2088                                         } else {
2089                                                 push @users, $r->[0];
2090                                         }
2091                                 } else {
2092                                         dbg("PCPROT: $self->{call} :  pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr') || isdbg('route');
2093                                 }
2094                         }
2095
2096                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
2097
2098                         # add users here
2099                         foreach my $r (@nent) {
2100                                 my $call = $r->[0];
2101                                 if ($call) {
2102                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
2103                                 }
2104                         }
2105                         # del users here
2106                         foreach my $r (@$dnodes) {
2107                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
2108                         }
2109                         foreach my $r (@$dusers) {
2110                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
2111                         }
2112
2113                         # remember this last PC92C for rebroadcast on demand
2114                         $parent->last_PC92C($line);
2115                 } else {
2116                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2117                         return;
2118                 }
2119
2120                 foreach my $r (@rdel) {
2121                         next unless $r;
2122
2123                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2124                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2125                 }
2126                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2127                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2128                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2129                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2130                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2131         }
2132
2133         # broadcast it if we get here
2134         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2135 }
2136
2137 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2138 # might be on two or more nodes at the same time or that there may be more than
2139 # one equal distance neighbour to a node.
2140 #
2141 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2142 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2143 # each and then combined to give a set of dxchans to send the PC9x record down
2144 #
2145 sub find_pc9x_routes
2146 {
2147         my $to = shift;
2148         my $ref = Route::get($to);
2149         my @parent;
2150         my %cand;
2151
2152         if ($ref->isa('Route::User')) {
2153                 my $dxchan = DXChannel::get($to);
2154                 push @parent, $to if $dxchan;
2155                 push @parent, $ref->parents;
2156         } else {
2157                 @parent = $to;
2158         }
2159         foreach my $p (@parent) {
2160                 my $lasthops;
2161                 my @routes = Route::findroutes($p);
2162                 foreach my $r (@routes) {
2163                         $lasthops = $r->[0] unless defined $lasthops;
2164                         if ($r->[0] == $lasthops) {
2165                                 $cand{$r->[1]->call} = $r->[1];
2166                         } else {
2167                                 last;
2168                         }
2169                 }
2170         }
2171         return values %cand;
2172 }
2173
2174 sub handle_93
2175 {
2176         my $self = shift;
2177         my $pcno = shift;
2178         my $line = shift;
2179         my $origin = shift;
2180         my $pc = shift;
2181
2182 #       $self->{do_pc9x} ||= 1;
2183
2184         my $pcall = $pc->[1];                   # this is now checked earlier
2185
2186         # remember that we are converting PC10->PC93 and self will be $main::me if it
2187         # comes from us
2188         unless ($self->{do_pc9x}) {
2189                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2190                 return;
2191         }
2192
2193         my $t = $pc->[2];
2194         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2195
2196         my $to = uc $pc->[3];
2197         my $from = uc $pc->[4];
2198         my $via = uc $pc->[5];
2199         my $text = $pc->[6];
2200         my $onode = uc $pc->[7];
2201         $onode = $pcall if @$pc <= 8;
2202
2203         # this is catch loops caused by bad software ...
2204         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2205                 return;
2206         }
2207
2208         if (isdbg('progress')) {
2209                 my $vs = $via ne '*' ? " via $via" : ''; 
2210                 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2211                 dbg($s);
2212         }
2213         
2214         # will we allow it at all?
2215         if ($censorpc) {
2216                 my @bad;
2217                 if (@bad = BadWords::check($text)) {
2218                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2219                         return;
2220                 }
2221         }
2222
2223         # if this is a 'bad spotter' user then ignore it
2224         my $nossid = $from;
2225         $nossid =~ s/-\d+$//;
2226         if ($badspotter->in($nossid)) {
2227                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2228                 return;
2229         }
2230
2231         # ignore PC93 coming in from outside this node with a target of local
2232         if ($to eq 'LOCAL' && $self != $main::me) {
2233                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2234                 return;
2235         }
2236
2237         # if it is routeable then then treat it like a talk
2238         my $ref = Route::get($to);
2239         if ($ref) {
2240                 my $dxchan;
2241
2242                 # convert to PC10 or local talks where appropriate
2243                 # PC93 capable nodes of the same hop count all get a copy
2244                 # if there is a PC10 node then it will get a copy and that
2245                 # will be it. Hopefully such a node will not figure highly
2246                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2247                 # note that both local and PC93s at the same time are possible if the
2248                 # user on more than one node.
2249                 my @routes = find_pc9x_routes($to);
2250                 my $lasthops;
2251                 foreach $dxchan (@routes) {
2252                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2253                                 if ($dxchan->{do_pc9x}) {
2254                                         $dxchan->send($line);
2255                                 } else {
2256                                         $dxchan->talk($from, $to, $via, $text, $onode);
2257                                 }
2258                         } else {
2259                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2260                         }
2261                 }
2262                 return;
2263
2264         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2265                 # announces
2266                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2267                 my $wx = $to eq 'WX' ? '1' : '0';
2268                 my $local = $via eq 'LOCAL' ? '*' : $via;
2269
2270                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2271                 return if $via eq 'LOCAL';
2272         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2273                 # chat messages really only locally connected users
2274                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2275         }
2276
2277         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2278         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2279 }
2280
2281 # if get here then rebroadcast the thing with its Hop count decremented (if
2282 # there is one). If it has a hop count and it decrements to zero then don't
2283 # rebroadcast it.
2284 #
2285 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2286 #        REBROADCAST!!!!
2287 #
2288
2289 sub handle_default
2290 {
2291         my $self = shift;
2292         my $pcno = shift;
2293         my $line = shift;
2294         my $origin = shift;
2295         my $pc = shift;
2296
2297         unless (eph_dup($line)) {
2298                 if ($pcno >= 90) {
2299                         my $pcall = $pc->[1];
2300                         unless (is_callsign($pcall)) {
2301                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2302                                 return;
2303                         }
2304                         my $t = $pc->[2];
2305                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2306                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2307                 } else {
2308                         unless ($self->{isolate}) {
2309                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2310                         }
2311                 }
2312         }
2313 }
2314
2315 1;