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