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