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