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