EXTENSIVE user file and route cleanup, see Changes
[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         if ($part[1] =~ /[,.]/) {
1560                 $ip = $part[1];
1561                 $part[1] = $part[2] = 0;
1562         } elsif ($part[3] =~ /[,.]/) {
1563                 $ip = $part[3];
1564         }
1565         $ip =~ s/,/:/g if $ip;
1566         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1567 }
1568
1569 # decode a pc92 call: flag call : version : build
1570 sub _encode_pc92_call
1571 {
1572         my $ref = shift;
1573
1574         # plain call or value
1575         return $ref unless ref $ref;
1576
1577         my $ext = shift || 0;
1578         my $flag = 0;
1579         my $call = $ref->call;
1580         my $extra = '';
1581         $flag |= $ref->here ? 1 : 0;
1582         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1583                 $flag |= 4;
1584                 my $dxchan = DXChannel::get($call);
1585                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1586                 if (($ext & 1) && $ref->version) {
1587                         my $version = $ref->version || 1.0;
1588                         $version =  $version * 100 + 5300 if $version < 50;
1589                         $extra .= ":" . $version;
1590                 }
1591         }
1592         if (($ext & 2) && $ref->ip) {
1593                 my $ip = $ref->ip;
1594                 $ip =~ s/:/,/g;
1595                 $extra .= ':' . $ip;
1596         }
1597         return "$flag$call$extra";
1598 }
1599
1600 my %things_add;
1601 my %things_del;
1602
1603 sub _add_thingy
1604 {
1605         my $parent = shift;
1606         my $s = shift;
1607         my $dxchan = shift;
1608         my $hops = shift;
1609
1610         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1611         my @rout;
1612
1613         # remove spurious IPV6 prefix on IPV4 addresses
1614         $ip =~ s/^::ffff:// if $ip;
1615         
1616         if ($call) {
1617                 my $ncall = $parent->call;
1618                 if ($ncall ne $call) {
1619                         my $user;
1620                         my $r;
1621
1622                         # normalise call, delete any unnormalised calls in the users file.
1623                         # then ignore this thingy
1624                         my $normcall = normalise_call($call);
1625                         if ($normcall ne $call) {
1626                                 next if DXChannel::get($call);
1627                                 $user = DXUser::get($call);
1628                                 dbg("DXProt::_add_thingy call $call normalised to $normcall, deleting spurious user $call");
1629                                 $user->del;
1630                             $call = $normcall; # this is safe because a route add will ignore duplicates
1631                         }
1632                         
1633                         if ($is_node) {
1634                                 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1635                                 $user = check_add_user($call, 'A');
1636                                 @rout = $parent->add($call, $version, Route::here($here), $ip);
1637                                 $r = Route::Node::get($call);
1638                                 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1639                                 if ($version && $version =~ /\d+/) {
1640                                         my $old = $user->sort;
1641                                         if ($user->is_ak1a && (($version >= 5455 && defined $build && $build > 0) || ($version >= 3000 && $version <= 3500)) ) {
1642                                                 $user->sort('S');
1643                                                 $build //= 0;
1644                                                 dbg("PCProt::_add_thingy node $call v: $version b: $build sort ($old) updated to " . $user->sort);
1645                                         } elsif ($user->is_spider && ($version < 3000 || ($version > 4000 && $version < 5455)) && $version =~ /^\d+$/) {
1646                                                 unless ($version == 5000 && $build == 0) {
1647                                                         $user->sort('A');
1648                                                         $build //= 0;
1649                                                         dbg("PCProt::_add_thingy node $call v: $version b: $build sort ($old) downgraded to " . $user->sort);
1650                                                 }
1651                                         }
1652                                 }
1653                         } else {
1654                                 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1655                                 $user = check_add_user($call, 'U', $parent->call);
1656                                 @rout = $parent->add_user($call, Route::here($here), $ip);
1657                                 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1658                                 $r = Route::User::get($call);
1659                         }
1660                         if ($ip) {
1661                                 $r->ip($ip);
1662                                 Log('DXProt', "PC92A $call -> $ip on $ncall");
1663                         }
1664                         if ($pc92_slug_changes && $parent == $main::routeroot) {
1665                                 $things_add{$call} = Route::get($call);
1666                                 delete $things_del{$call};
1667                         }
1668                         $user->close($main::systime, $ip) if $user;             # this just updates lastseen and the connlist list containing the IP address
1669                 } else {                                
1670                         dbgprintring(10) if isdbg('nologchan');
1671                         dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1672                 }
1673         }
1674         
1675         return @rout;
1676 }
1677
1678 sub _del_thingy
1679 {
1680         my $parent = shift;
1681         my $s = shift;
1682         my $dxchan = shift;
1683         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1684         my @rout;
1685         if ($call) {
1686                 my $ref;
1687                 if ($is_node) {
1688                         $ref = Route::Node::get($call);
1689                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1690                         @rout = $ref->del($parent) if $ref;
1691                 } else {
1692                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1693                         $ref = Route::User::get($call);
1694                         if ($ref) {
1695                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1696                                 @rout = $parent->del_user($ref);
1697                         }
1698                 }
1699                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1700                         $things_del{$call} = $ref unless exists $things_add{$call};
1701                         delete $things_add{$call};
1702                 }
1703         }
1704         return @rout;
1705 }
1706
1707 # this will only happen if we are slugging changes and
1708 # there are some changes to be sent, it will create an add or a delete
1709 # or both
1710 sub gen_pc92_changes
1711 {
1712         my @add = values %things_add;
1713         my @del = values %things_del;
1714         return (\@add, \@del);
1715 }
1716
1717 sub clear_pc92_changes
1718 {
1719         %things_add = %things_del = ();
1720         $last_pc92_slug = $main::systime;
1721 }
1722
1723 my $_last_time;
1724 my $_last_occurs;
1725 my $_last_pc9x_id;
1726
1727 sub last_pc9x_id
1728 {
1729         return $_last_pc9x_id;
1730 }
1731
1732 sub gen_pc9x_t
1733 {
1734         if (!$_last_time || $_last_time != $main::systime) {
1735                 $_last_time = $main::systime;
1736                 $_last_occurs = 0;
1737                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1738         } else {
1739                 $_last_occurs++;
1740                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1741         }
1742 }
1743
1744 sub check_pc9x_t
1745 {
1746         my $call = shift;
1747         my $t = shift;
1748         my $pc = shift;
1749         my $create = shift;
1750
1751         # check that the time is between 0 >= $t < 86400
1752         unless ($t >= 0 && $t < 86400) {
1753                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1754                 return undef;
1755         }
1756
1757         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1758         my $now = $main::systime - $main::systime_daystart ;
1759         my $diff = abs($now - $t);
1760         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1761                 my $c = ref $call ? $call->call : $call;
1762                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1763                 return undef;
1764         }
1765
1766         my $parent = ref $call ? $call : Route::Node::get($call);
1767         if ($parent) {
1768                 # we only do this for external calls whose routing table
1769                 # record come and go. The reference for mycall is permanent
1770                 # and not that frequently used, it also never times out, so
1771                 # the id on it is completely unreliable. Besides, only commands
1772                 # originating on this box will go through this code...
1773                 if ($parent->call ne $main::mycall) {
1774                         my $lastid = $parent->lastid;
1775                         if (defined $lastid) {
1776                                 if ($t < $lastid) {
1777                                         # note that this is where we determine whether this pc9x has come in yesterday
1778                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1779                                         # duplicate sentence. To determine this we need to do some module 86400
1780                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1781                                         # low numbers that it is a new sentence.
1782                                         #
1783                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1784                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1785                                         # 86378 respectively in the calculation below).
1786                                         #
1787                                         if ($t+86400-$lastid > $pc9x_past_age) {
1788                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1789                                                 return undef;
1790                                         }
1791                                 } elsif ($t == $lastid) {
1792                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1793                                         return undef;
1794                                 } else {
1795                                         # check that if we have a low number in lastid that yesterday's numbers
1796                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1797                                         if ($lastid+86400-$t < $pc9x_past_age) {
1798                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1799                                                 return undef;
1800                                         }
1801                                 }
1802                         }
1803                 }
1804         } elsif ($create) {
1805                 $parent = Route::Node->new($call);
1806         } else {
1807                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1808                 return undef;
1809         }
1810         if (isdbg('pc92dedupe')) {
1811                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1812                 my $val = $parent->{lastid};
1813                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1814                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1815         }
1816         $parent->lastid($t);
1817
1818         return $parent;
1819 }
1820
1821 sub pc92_handle_first_slot
1822 {
1823         my $self = shift;
1824         my $slot = shift;
1825         my $parent = shift;
1826         my $t = shift;
1827         my $hops = shift;
1828         my $oparent = $parent;
1829
1830         my @radd;
1831
1832         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1833         if ($call && $is_node) {
1834                 if ($call eq $main::mycall) {
1835                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::mycall ($main::mycall), ignored");
1836                         return;
1837                 }
1838                 if ($call eq $main::myalias) {
1839                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::myalias ($main::myalias), ignored");
1840                         return;
1841                 }
1842                 # this is only accepted from my "self".
1843                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1844                 # locally connected. Local nodes always take precedence. But we remember the lastid
1845                 # to try to reduce the number of dupe PC92s for this external node.
1846                 if (DXChannel::get($call) && $call ne $self->{call}) {
1847                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1848                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1849                         return;
1850                 }
1851                 if ($is_extnode) {
1852                         # reparent to external node (note that we must have received a 'C' or 'A' record
1853                         # from the true parent node for this external before we get one for the this node
1854                         unless ($parent = Route::Node::get($call)) {
1855                                 if ($is_extnode && $oparent) {
1856                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
1857                                         $parent = $radd[0];
1858                                 } else {
1859                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1860                                         return;
1861                                 }
1862                         }
1863                         $parent = check_pc9x_t($call, $t, 92) || return;
1864                         $parent->via_pc92(1);
1865                         $parent->PC92C_dxchan($self->{call}, $hops);
1866                 }
1867         } else {
1868                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1869                 return;
1870         }
1871         $parent->here(Route::here($here));
1872         $parent->version($version || $pc19_version) if $version;
1873         $build =~ s/^0\.//, $parent->build($build) if $build;
1874         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1875         return ($parent, @radd);
1876 }
1877
1878 # DXSpider routing entries
1879 sub handle_92
1880 {
1881         my $self = shift;
1882         my $pcno = shift;
1883         my $line = shift;
1884         my $origin = shift;
1885         my $pc = shift;
1886
1887         my (@radd, @rdel);
1888
1889         my $pcall = $pc->[1];
1890         my $t = $pc->[2];
1891         my $sort = $pc->[3];
1892         my $hops = $pc->[-1];
1893
1894         # this catches loops of A/Ds
1895 #       if (eph_dup($line, $pc9x_dupe_age)) {
1896 #               return;
1897 #       }
1898
1899         if ($pcall eq $main::mycall) {
1900                 LogDbg('err', "PCPROT: looped back, ignored");
1901                 return;
1902         }
1903
1904         if ($pcall eq $main::myalias) {
1905                 LogDbg('err', "PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored");
1906                 return;
1907         }
1908
1909         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1910                 if ($self->{isolate}) {
1911                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1912                         return;
1913                 } elsif (!$self->user->wantpc9x) {
1914                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1915                         return;
1916                 } else {
1917                         $self->state('init92');
1918                         $self->{do_pc9x} = 1;
1919                         dbg("DXPROT: Do pc9x set on $pcall");
1920                 }
1921         }
1922         unless ($self->{do_pc9x}) {
1923                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1924                 return;
1925         }
1926
1927         # don't create routing entries for D records that don't already exist
1928         # this is what causes all those PC92 loops!
1929         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1930         my $oparent = $parent;
1931
1932         $parent->do_pc9x(1);
1933         $parent->via_pc92(1);
1934
1935         if ($sort eq 'F' || $sort eq 'R') {
1936
1937                 # this is the route finding section
1938                 # here is where the consequences of the 'find' command
1939                 # are dealt with
1940
1941                 my $from = $pc->[4];
1942                 my $target = $pc->[5];
1943
1944                 if ($sort eq 'F') {
1945                         my $flag;
1946                         my $ref;
1947                         my $dxchan;
1948                         if ($ref = DXChannel::get($target)) {
1949                                 $flag = 1;              # we are directly connected
1950                         } else {
1951                                 $ref = Route::get($target);
1952                                 $dxchan = $ref->dxchan;
1953                                 $flag = 2;
1954                         }
1955                         if ($ref && $flag && $dxchan) {
1956                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1957                                 return;
1958                         }
1959                 } elsif ($sort eq 'R') {
1960                         if (my $dxchan = DXChannel::get($from)) {
1961                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1962                         } else {
1963                                 my $ref = Route::get($from);
1964                                 if ($ref) {
1965                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1966                                         if (@dxchan) {
1967                                                 $_->send($line) for @dxchan;
1968                                         } else {
1969                                                 dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
1970                                         }
1971                                 } else {
1972                                         dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
1973                                 }
1974                         }
1975                         return;
1976                 }
1977
1978         } elsif ($sort eq 'K') {
1979                 $pc92Kin += length $line;
1980
1981                 # remember the last channel we arrived on
1982                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1983
1984                 my @ent = _decode_pc92_call($pc->[4]);
1985
1986                 if (@ent) {
1987                         my $add;
1988
1989                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1990                         return unless $parent; # dupe
1991                         
1992                         push @radd, $add if $add;
1993                         $parent->reset_obs;
1994                         my $call = $parent->call;
1995                         my $version = $ent[4] // 0;
1996                         my $build = $ent[5] // 0;
1997                         $build =~ s/^0\.//;
1998                         my $oldbuild = $parent->build // 0;
1999                         $oldbuild =~ s/^0\.//;
2000                         my $oldversion = $parent->version // 0;
2001                         my $user = check_add_user($parent->call, 'S');
2002                         my $oldsort = $user->sort;
2003                         if ($oldsort ne 'S' || $oldversion != $version || $build != $oldbuild) {
2004                                 dbg("PCProt PC92 K node $call updated version: $version (was $oldversion) build: $build (was $oldbuild) sort: 'S' (was $oldsort)");
2005                                 $user->sort('S');
2006                                 $user->version($parent->version($version));
2007                                 $user->build($parent->build($build));
2008                                 $user->put;
2009                         }
2010
2011                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2012                 }
2013         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
2014
2015                 $pc92Ain += length $line if $sort eq 'A';
2016                 $pc92Cin += length $line if $sort eq 'C';
2017                 $pc92Din += length $line if $sort eq 'D';
2018
2019                 # remember the last channel we arrived on
2020                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2021
2022                 # this is the main route section
2023                 # here is where all the routes are created and destroyed
2024
2025                 # cope with missing duplicate node calls in the first slot
2026                 my $me = $pc->[4] || '';
2027                 $me ||= _encode_pc92_call($parent) unless $me ;
2028
2029                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
2030
2031                 if (@ent) {
2032
2033                         # look at the first one which will always be a node of some sort
2034                         # except in the case of 'A' or 'D' in which the $pcall is used
2035                         # otherwise use the node call and update any information
2036                         # that needs to be done.
2037                         my $add;
2038
2039                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
2040                         return unless $parent; # dupe
2041
2042                         shift @ent;
2043                         push @radd, $add if $add;
2044                 }
2045
2046                 # do a pass through removing any references to either mycall
2047                 my @nent;
2048                 for (@ent) {
2049                         my $dxc;
2050                         next unless $_ && @$_;
2051                         if ($_->[0] eq $main::mycall) {
2052                                 dbg("PCPROT: $self->{call} : type $sort $_->[0] refers to me, ignored") if isdbg('route');
2053                                 next;
2054                         }
2055                         if ($_->[0] eq $main::myalias && $_->[1] || $_->[0] eq $main::mycall && $_->[1] == 0) {
2056                                 LogDbg('err',"PCPROT: $self->{call} : type $sort $_->[0] trying to change type to " . $_->[1]?"Node":"User" . ", ignored");
2057                                 next;
2058                         }
2059                         
2060                         push @nent, $_;
2061                 }
2062
2063                 if ($sort eq 'A') {
2064                         for (@nent) {
2065                                 push @radd, _add_thingy($parent, $_, $self, $hops);
2066                         }
2067                 } elsif ($sort eq 'D') {
2068                         for (@nent) {
2069                                 push @rdel, _del_thingy($parent, $_, $self);
2070                         }
2071                 } elsif ($sort eq 'C') {
2072                         my (@nodes, @users);
2073
2074                         # we reset obscounts on config records as well as K records
2075                         $parent->reset_obs;
2076                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2077
2078                         #
2079                         foreach my $r (@nent) {
2080                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
2081                                 if ($r->[0]) {
2082                                         if ($r->[1]) {
2083                                                 push @nodes, $r->[0];
2084                                         } else {
2085                                                 push @users, $r->[0];
2086                                         }
2087                                 } else {
2088                                         dbg("PCPROT: $self->{call} :  pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr') || isdbg('route');
2089                                 }
2090                         }
2091
2092                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
2093
2094                         # add users here
2095                         foreach my $r (@nent) {
2096                                 my $call = $r->[0];
2097                                 if ($call) {
2098                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
2099                                 }
2100                         }
2101                         # del users here
2102                         foreach my $r (@$dnodes) {
2103                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
2104                         }
2105                         foreach my $r (@$dusers) {
2106                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
2107                         }
2108
2109                         # remember this last PC92C for rebroadcast on demand
2110                         $parent->last_PC92C($line);
2111                 } else {
2112                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2113                         return;
2114                 }
2115
2116                 foreach my $r (@rdel) {
2117                         next unless $r;
2118
2119                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2120                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2121                 }
2122                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2123                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2124                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2125                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2126                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2127         }
2128
2129         # broadcast it if we get here
2130         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2131 }
2132
2133 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2134 # might be on two or more nodes at the same time or that there may be more than
2135 # one equal distance neighbour to a node.
2136 #
2137 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2138 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2139 # each and then combined to give a set of dxchans to send the PC9x record down
2140 #
2141 sub find_pc9x_routes
2142 {
2143         my $to = shift;
2144         my $ref = Route::get($to);
2145         my @parent;
2146         my %cand;
2147
2148         if ($ref->isa('Route::User')) {
2149                 my $dxchan = DXChannel::get($to);
2150                 push @parent, $to if $dxchan;
2151                 push @parent, $ref->parents;
2152         } else {
2153                 @parent = $to;
2154         }
2155         foreach my $p (@parent) {
2156                 my $lasthops;
2157                 my @routes = Route::findroutes($p);
2158                 foreach my $r (@routes) {
2159                         $lasthops = $r->[0] unless defined $lasthops;
2160                         if ($r->[0] == $lasthops) {
2161                                 $cand{$r->[1]->call} = $r->[1];
2162                         } else {
2163                                 last;
2164                         }
2165                 }
2166         }
2167         return values %cand;
2168 }
2169
2170 sub handle_93
2171 {
2172         my $self = shift;
2173         my $pcno = shift;
2174         my $line = shift;
2175         my $origin = shift;
2176         my $pc = shift;
2177
2178 #       $self->{do_pc9x} ||= 1;
2179
2180         my $pcall = $pc->[1];                   # this is now checked earlier
2181
2182         # remember that we are converting PC10->PC93 and self will be $main::me if it
2183         # comes from us
2184         unless ($self->{do_pc9x}) {
2185                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2186                 return;
2187         }
2188
2189         my $t = $pc->[2];
2190         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2191
2192         my $to = uc $pc->[3];
2193         my $from = uc $pc->[4];
2194         my $via = uc $pc->[5];
2195         my $text = $pc->[6];
2196         my $onode = uc $pc->[7];
2197         $onode = $pcall if @$pc <= 8;
2198
2199         # this is catch loops caused by bad software ...
2200         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2201                 return;
2202         }
2203
2204         if (isdbg('progress')) {
2205                 my $vs = $via ne '*' ? " via $via" : ''; 
2206                 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2207                 dbg($s);
2208         }
2209         
2210         # will we allow it at all?
2211         if ($censorpc) {
2212                 my @bad;
2213                 if (@bad = BadWords::check($text)) {
2214                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2215                         return;
2216                 }
2217         }
2218
2219         # if this is a 'bad spotter' user then ignore it
2220         my $nossid = $from;
2221         $nossid =~ s/-\d+$//;
2222         if ($badspotter->in($nossid)) {
2223                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2224                 return;
2225         }
2226
2227         # ignore PC93 coming in from outside this node with a target of local
2228         if ($to eq 'LOCAL' && $self != $main::me) {
2229                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2230                 return;
2231         }
2232
2233         # if it is routeable then then treat it like a talk
2234         my $ref = Route::get($to);
2235         if ($ref) {
2236                 my $dxchan;
2237
2238                 # convert to PC10 or local talks where appropriate
2239                 # PC93 capable nodes of the same hop count all get a copy
2240                 # if there is a PC10 node then it will get a copy and that
2241                 # will be it. Hopefully such a node will not figure highly
2242                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2243                 # note that both local and PC93s at the same time are possible if the
2244                 # user on more than one node.
2245                 my @routes = find_pc9x_routes($to);
2246                 my $lasthops;
2247                 foreach $dxchan (@routes) {
2248                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2249                                 if ($dxchan->{do_pc9x}) {
2250                                         $dxchan->send($line);
2251                                 } else {
2252                                         $dxchan->talk($from, $to, $via, $text, $onode);
2253                                 }
2254                         } else {
2255                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2256                         }
2257                 }
2258                 return;
2259
2260         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2261                 # announces
2262                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2263                 my $wx = $to eq 'WX' ? '1' : '0';
2264                 my $local = $via eq 'LOCAL' ? '*' : $via;
2265
2266                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2267                 return if $via eq 'LOCAL';
2268         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2269                 # chat messages really only locally connected users
2270                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2271         }
2272
2273         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2274         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2275 }
2276
2277 # if get here then rebroadcast the thing with its Hop count decremented (if
2278 # there is one). If it has a hop count and it decrements to zero then don't
2279 # rebroadcast it.
2280 #
2281 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2282 #        REBROADCAST!!!!
2283 #
2284
2285 sub handle_default
2286 {
2287         my $self = shift;
2288         my $pcno = shift;
2289         my $line = shift;
2290         my $origin = shift;
2291         my $pc = shift;
2292
2293         unless (eph_dup($line)) {
2294                 if ($pcno >= 90) {
2295                         my $pcall = $pc->[1];
2296                         unless (is_callsign($pcall)) {
2297                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2298                                 return;
2299                         }
2300                         my $t = $pc->[2];
2301                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2302                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2303                 } else {
2304                         unless ($self->{isolate}) {
2305                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2306                         }
2307                 }
2308         }
2309 }
2310
2311 1;