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