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