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