do the correct call for a pc93 in handle_10
[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($VERSION $BRANCH);
41 ($VERSION, $BRANCH) = dxver(q$Revision$);
42
43 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
44                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
45                         $pingint $obscount %pc19list $chatdupeage $chatimportfn
46                         $investigation_int $pc19_version $myprot_version
47                         %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
48                         $allowzero $decode_dk0wcy $send_opernam @checklist
49                         $eph_pc15_restime
50                    );
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($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($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         unless ($ncall eq $self->{call}) {
544                 dbg("PCPROT: PC17 from non-local $ncall, ignored") if isdbg('chanerr');
545                 return;
546         }
547
548         my $uref = Route::User::get($ucall);
549         unless ($uref) {
550                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
551         }
552         my $parent = Route::Node::get($ncall);
553         unless ($parent) {
554                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
555         }                       
556
557         $dxchan = $parent->dxchan if $parent;
558         if ($dxchan && $dxchan ne $self) {
559                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
560                 return;
561         }
562
563         $dxchan = DXChannel::get($ncall);
564         unless ($dxchan) {
565                 if ($parent->via_pc92) {
566                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
567                         return;
568                 }
569         }
570
571         if (DXChannel::get($ucall)) {
572                 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
573                 return;
574         }
575
576         # input filter if required and then remove user if present
577         if ($parent) {
578 #               return unless $self->in_filter_route($parent);  
579                 $parent->del_user($uref) if $uref;
580         } else {
581                 $parent = Route->new($ncall);  # throw away
582         }
583
584         # send info to all logged in thingies
585         $self->tell_login('logoutu', "$ncall: $ucall") if DXUser->get_current($ncall)->is_local_node;
586         $self->tell_buddies('logoutb', $ucall, $ncall);
587
588         if (eph_dup($line)) {
589                 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
590                 return;
591         }
592
593         $uref = Route->new($ucall) unless $uref; # throw away
594         $self->route_pc17($origin, $line, $parent, $uref);
595 #       $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
596 }
597                 
598 # link request
599 sub handle_18
600 {
601         my $self = shift;
602         my $pcno = shift;
603         my $line = shift;
604         my $origin = shift;
605         $self->state('init');   
606
607         # record the type and version offered
608         if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
609                 $self->version(53 + $1);
610                 $self->user->version(53 + $1);
611                 $self->build(0 + $2);
612                 $self->user->build(0 + $2);
613                 unless ($self->is_spider) {
614                         $self->user->sort('S');
615                         $self->user->put;
616                         $self->sort('S');
617                 }
618                 $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
619                 if ($_[1] =~ /\bpc9x/) {
620                         $self->{do_pc9x}++;
621                 }
622         } else {
623                 $self->version(50.0);
624                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
625                 $self->user->version($self->version);
626         }
627
628         # first clear out any nodes on this dxchannel
629         my $parent = Route::Node::get($self->{call});
630         my @rout = $parent->del_nodes;
631         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
632         $self->send_local_config();
633         $self->send(pc20());
634 }
635                 
636 sub check_add_node
637 {
638         my $call = shift;
639         
640         # add this station to the user database, if required (don't remove SSID from nodes)
641         my $user = DXUser->get_current($call);
642         if (!$user) {
643                 $user = DXUser->new($call);
644                 $user->priv(1);         # I have relented and defaulted nodes
645                 $user->lockout(1);
646                 $user->homenode($call);
647                 $user->node($call);
648         }
649         $user->sort('A') unless $user->is_node;
650         return $user;
651 }
652
653 # incoming cluster list
654 sub handle_19
655 {
656         my $self = shift;
657         my $pcno = shift;
658         my $line = shift;
659         my $origin = shift;
660
661         my $i;
662         my $newline = "PC19^";
663
664         # new routing list
665         my (@rout, @pc92out);
666
667         # first get the INTERFACE node
668         my $parent = Route::Node::get($self->{call});
669         unless ($parent) {
670                 dbg("DXPROT: my parent $self->{call} has disappeared");
671                 $self->disconnect;
672                 return;
673         }
674
675         my $h;
676         
677         # parse the PC19
678         # 
679         # We are making a major change from now on. We are only going to accept
680         # PC19s from directly connected nodes.  This means that we are probably
681         # going to throw away most of the data that we are being sent. 
682         #
683         # The justification for this is that most of it is wrong or out of date
684         # anyway. 
685         # 
686         # From now on we are only going to believe PC92 data and locally connected
687         # non-pc92 nodes.
688         #
689         for ($i = 1; $i < $#_-1; $i += 4) {
690                 my $here = $_[$i];
691                 my $call = uc $_[$i+1];
692                 my $conf = $_[$i+2];
693                 my $ver = $_[$i+3];
694                 next unless defined $here && defined $conf && is_callsign($call);
695
696                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
697                                 
698                 # check for sane parameters
699                 #                               $ver = 5000 if $ver eq '0000';
700                 next unless $ver && $ver =~ /^\d+$/;
701                 next if $ver < 5000;    # only works with version 5 software
702                 next if length $call < 3; # min 3 letter callsigns
703                 next if $call eq $main::mycall;
704
705                 # check that this PC19 isn't trying to alter the wrong dxchan
706                 $h = 0;
707                 my $dxchan = DXChannel::get($call);
708                 if ($dxchan) {
709                         if ($dxchan == $self) {
710                                 $h = 1;
711                         } else {
712                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
713                                 next;
714                         }
715                 }
716
717                 my $user = check_add_node($call);
718                 
719 #               if (eph_dup($genline)) {
720 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
721 #                       next;
722 #               }
723
724                 RouteDB::update($call, $self->{call}, $dxchan ? 1 : undef);
725
726                 unless ($h) {
727                         if ($parent->via_pc92) {
728                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
729                                 next;
730                         }
731                 }
732
733                 my $r = Route::Node::get($call);
734                 my $flags = Route::here($here)|Route::conf($conf);
735
736                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
737                 if ($r) {
738                         my $ar;
739                         if ($call ne $parent->call) {
740                                 if ($self->in_filter_route($r)) {
741                                         $ar = $parent->add($call, $ver, $flags);
742 #                                       push @rout, $ar if $ar;
743                                 } else {
744                                         next;
745                                 }
746                         }
747                         if ($r->version ne $ver || $r->flags != $flags) {
748                                 $r->version($ver);
749                                 $r->flags($flags);
750                         }
751                         push @rout, $r;
752                 } else {
753                         if ($call eq $self->{call} || $user->wantroutepc19) {
754                                 my $new = Route->new($call); # throw away
755                                 if ($self->in_filter_route($new)) {
756                                         my $ar = $parent->add($call, $ver, $flags);
757                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
758                                         push @rout, $ar if $ar;
759                                         push @pc92out, $r if $h;
760                                 } else {
761                                         next;
762                                 }
763                         }
764                 }
765
766                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
767                 my $mref = DXMsg::get_busy($call);
768                 $mref->stop_msg($call) if $mref;
769                                 
770                 $user->lastin($main::systime) unless DXChannel::get($call);
771                 $user->put;
772         }
773
774         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
775         # but remember there will only be one (pair) these because any extras will be
776         # thrown away.
777         if (@rout) {
778 #               $self->route_pc21($self->{call}, $line, @rout);
779                 $self->route_pc19($self->{call}, $line, @rout);
780         }
781         if (@pc92out) {
782                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
783         }
784 }
785                 
786 sub send_delayed_pc92
787 {
788         my $self = shift;
789         
790         # send out new PC92 config to everyone else 
791         my $line = gen_my_pc92_config($main::me);
792         $self->broadcast_route_pc9x($main::mycall, undef, $line, 0);
793
794         # if this is an external node then send out the external config
795         unless ($self->{do_pc9x}) {
796                 $line = gen_my_pc92_config(Route::Node::get($self->{call}));
797                 $self->broadcast_route_pc9x($main::mycall, undef, $line, 0);
798         }
799 }
800
801 # send local configuration
802 sub handle_20
803 {
804         my $self = shift;
805         my $pcno = shift;
806         my $line = shift;
807         my $origin = shift;
808
809         if ($self->{do_pc9x} && $self->{state} ne 'init92') {
810                 dbg("PCPROT: disconnecting because login call not sent in any pc92") if isdbg('chanerr');
811                 $self->send("**** You logged in with $self->{call} but that is NOT your \$mycall");
812                 $self->disconnect;
813                 return;
814         }
815         $self->send_local_config();
816         $self->send(pc22());
817         $self->state('normal');
818         $self->{lastping} = 0;
819         $self->send_delayed_pc92;
820 }
821                 
822 # delete a cluster from the list
823 #
824 # This should never occur for directly connected nodes.
825 #
826 sub handle_21
827 {
828         my $self = shift;
829         my $pcno = shift;
830         my $line = shift;
831         my $origin = shift;
832         my $call = uc $_[1];
833
834         eph_del_regex("^PC1[679].*$call");
835                         
836         # if I get a PC21 from the same callsign as self then ignore it
837         if ($call eq $self->call) {
838                 dbg("PCPROT: self referencing PC21 from $self->{call}");
839                 return;
840         }
841
842         RouteDB::delete($call, $self->{call});
843
844         my $parent = Route::Node::get($self->{call});
845         unless ($parent) {
846                 dbg("PCPROT: my parent $self->{call} has disappeared");
847                 $self->disconnect;
848                 return;
849         }
850
851         my @rout;
852         
853         if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
854                 my $node = Route::Node::get($call);
855                 if ($node) {
856                         
857                         if ($node->via_pc92) {
858                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
859                                 return;
860                         }
861
862                         my $dxchan = DXChannel::get($call);
863                         if ($dxchan && $dxchan != $self) {
864                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
865                                 return;
866                         }
867                         
868                         # input filter it
869                         return unless $self->in_filter_route($node);
870                         
871                         # routing objects, force a PC21 if it is local
872                         push @rout, $node->del($parent);
873                         push @rout, $call if $dxchan && @rout == 0;
874                 }
875         } else {
876                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
877                 return;
878         }
879
880         if (@rout) {
881                 $self->route_pc21($origin, $line, @rout);
882 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
883         }
884 }
885                 
886
887 sub handle_22
888 {
889         my $self = shift;
890         my $pcno = shift;
891         my $line = shift;
892         my $origin = shift;
893
894         if ($self->{do_pc9x}) {
895                 if ($self->{state} ne 'init92') {
896                         dbg("PCPROT: disconnecting because login call not sent in any pc92") if isdbg('chanerr');
897                         $self->send("**** You logged in with $self->{call} but that is NOT your \$mycall");
898                         $self->disconnect;
899                         return;
900                 }
901         }
902         $self->{lastping} = 0;
903         $self->state('normal');
904         $self->send_delayed_pc92;
905 }
906                                 
907 # WWV info
908 sub handle_23
909 {
910         my $self = shift;
911         my $pcno = shift;
912         my $line = shift;
913         my $origin = shift;
914                         
915         # route foreign' pc27s 
916         if ($pcno == 27) {
917                 if ($_[8] ne $main::mycall) {
918                         $self->route($_[8], $line);
919                         return;
920                 }
921         }
922
923         # only do a rspf check on PC23 (not 27)
924         if ($pcno == 23) {
925                 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
926         }
927
928         # do some de-duping
929         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
930         my $sfi = unpad($_[3]);
931         my $k = unpad($_[4]);
932         my $i = unpad($_[5]);
933         my ($r) = $_[6] =~ /R=(\d+)/;
934         $r = 0 unless $r;
935         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
936                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
937                 return;
938         }
939
940         # global wwv filtering on INPUT
941         my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
942         if ($self->{inwwvfilter}) {
943                 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
944                 unless ($filter) {
945                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
946                         return;
947                 }
948         }
949         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
950         if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
951                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
952                 return;
953         }
954                 
955         # note this only takes the first one it gets
956         Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
957
958         my $rep;
959         eval {
960                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
961         };
962         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
963         return if $rep;
964
965         # DON'T be silly and send on PC27s!
966         return if $pcno == 27;
967
968         # broadcast to the eager world
969         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
970 }
971                 
972 # set here status
973 sub handle_24
974 {
975         my $self = shift;
976         my $pcno = shift;
977         my $line = shift;
978         my $origin = shift;
979         my $call = uc $_[1];
980         my ($nref, $uref);
981         $nref = Route::Node::get($call);
982         $uref = Route::User::get($call);
983         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
984                         
985         if (eph_dup($line)) {
986                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
987                 return;
988         }
989         
990         $nref->here($_[2]) if $nref;
991         $uref->here($_[2]) if $uref;
992         my $ref = $nref || $uref;
993         return unless $self->in_filter_route($ref);
994
995         $self->route_pc24($origin, $line, $ref, $_[3]);
996 }
997                 
998 # merge request
999 sub handle_25
1000 {
1001         my $self = shift;
1002         my $pcno = shift;
1003         my $line = shift;
1004         my $origin = shift;
1005         if ($_[1] ne $main::mycall) {
1006                 $self->route($_[1], $line);
1007                 return;
1008         }
1009         if ($_[2] eq $main::mycall) {
1010                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1011                 return;
1012         }
1013
1014         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1015                         
1016         # spots
1017         if ($_[3] > 0) {
1018                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1019                 my $in;
1020                 foreach $in (@in) {
1021                         $self->send(pc26(@{$in}[0..4], $_[2]));
1022                 }
1023         }
1024
1025         # wwv
1026         if ($_[4] > 0) {
1027                 my @in = reverse Geomag::search(0, $_[4], time, 1);
1028                 my $in;
1029                 foreach $in (@in) {
1030                         $self->send(pc27(@{$in}[0..5], $_[2]));
1031                 }
1032         }
1033 }
1034
1035 sub handle_26 {goto &handle_11}
1036 sub handle_27 {goto &handle_23}
1037
1038 # mail/file handling
1039 sub handle_28
1040 {
1041         my $self = shift;
1042         my $pcno = shift;
1043         my $line = shift;
1044         my $origin = shift;
1045         if ($_[1] eq $main::mycall) {
1046                 no strict 'refs';
1047                 my $sub = "DXMsg::handle_$pcno";
1048                 &$sub($self, @_);
1049         } else {
1050                 $self->route($_[1], $line) unless $self->is_clx;
1051         }
1052 }
1053
1054 sub handle_29 {goto &handle_28}
1055 sub handle_30 {goto &handle_28}
1056 sub handle_31 {goto &handle_28}
1057 sub handle_32 {goto &handle_28}
1058 sub handle_33 {goto &handle_28}
1059                 
1060 sub handle_34
1061 {
1062         my $self = shift;
1063         my $pcno = shift;
1064         my $line = shift;
1065         my $origin = shift;
1066         if (eph_dup($line, $eph_pc34_restime)) {
1067                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1068         } else {
1069                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1070         }
1071 }
1072                 
1073 # remote command replies
1074 sub handle_35
1075 {
1076         my $self = shift;
1077         my $pcno = shift;
1078         my $line = shift;
1079         my $origin = shift;
1080         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1081         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1082 }
1083                 
1084 sub handle_36 {goto &handle_34}
1085
1086 # database stuff
1087 sub handle_37
1088 {
1089         my $self = shift;
1090         my $pcno = shift;
1091         my $line = shift;
1092         my $origin = shift;
1093         if ($_[1] eq $main::mycall) {
1094                 no strict 'refs';
1095                 my $sub = "DXDb::handle_$pcno";
1096                 &$sub($self, @_);
1097         } else {
1098                 $self->route($_[1], $line) unless $self->is_clx;
1099         }
1100 }
1101
1102 # node connected list from neighbour
1103 sub handle_38
1104 {
1105         my $self = shift;
1106         my $pcno = shift;
1107         my $line = shift;
1108         my $origin = shift;
1109 }
1110                 
1111 # incoming disconnect
1112 sub handle_39
1113 {
1114         my $self = shift;
1115         my $pcno = shift;
1116         my $line = shift;
1117         my $origin = shift;
1118         if ($_[1] eq $self->{call}) {
1119                 $self->disconnect(1);
1120         } else {
1121                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1122         }
1123 }
1124
1125 sub handle_40 {goto &handle_28}
1126                 
1127 # user info
1128 sub handle_41
1129 {
1130         my $self = shift;
1131         my $pcno = shift;
1132         my $line = shift;
1133         my $origin = shift;
1134         my $call = $_[1];
1135
1136         my $l = $line;
1137         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1138         if (eph_dup($l, $eph_info_restime)) {
1139                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1140                 return;
1141         }
1142                         
1143         # input filter if required
1144         #                       my $ref = Route::get($call) || Route->new($call);
1145         #                       return unless $self->in_filter_route($ref);
1146
1147         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1148                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1149                 return;
1150         }
1151
1152         # add this station to the user database, if required
1153         my $user = DXUser->get_current($call);
1154         $user = DXUser->new($call) unless $user;
1155                         
1156         if ($_[2] == 1) {
1157                 $user->name($_[3]);
1158         } elsif ($_[2] == 2) {
1159                 $user->qth($_[3]);
1160         } elsif ($_[2] == 3) {
1161                 if (is_latlong($_[3])) {
1162                         my ($lat, $long) = DXBearing::stoll($_[3]);
1163                         $user->lat($lat);
1164                         $user->long($long);
1165                         $user->qra(DXBearing::lltoqra($lat, $long));
1166                 } else {
1167                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1168                         return;
1169                 }
1170         } elsif ($_[2] == 4) {
1171                 $user->homenode($_[3]);
1172         } elsif ($_[2] == 5) {
1173                 if (is_qra(uc $_[3])) {
1174                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1175                         $user->lat($lat);
1176                         $user->long($long);
1177                         $user->qra(uc $_[3]);
1178                 } else {
1179                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1180                         return;
1181                 }
1182         }
1183         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1184         $user->put;
1185
1186         unless ($self->{isolate}) {
1187                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1188         }
1189
1190         #  perhaps this IS what we want after all
1191         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1192 }
1193
1194 sub handle_42 {goto &handle_28}
1195
1196
1197 # database
1198 sub handle_44 {goto &handle_37}
1199 sub handle_45 {goto &handle_37}
1200 sub handle_46 {goto &handle_37}
1201 sub handle_47 {goto &handle_37}
1202 sub handle_48 {goto &handle_37}
1203                 
1204 # message and database
1205 sub handle_49
1206 {
1207         my $self = shift;
1208         my $pcno = shift;
1209         my $line = shift;
1210         my $origin = shift;
1211
1212         if (eph_dup($line)) {
1213                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1214                 return;
1215         }
1216         
1217         if ($_[1] eq $main::mycall) {
1218                 DXMsg::handle_49($self, @_);
1219         } else {
1220                 $self->route($_[1], $line) unless $self->is_clx;
1221         }
1222 }
1223
1224 # keep alive/user list
1225 sub handle_50
1226 {
1227         my $self = shift;
1228         my $pcno = shift;
1229         my $line = shift;
1230         my $origin = shift;
1231
1232         my $call = $_[1];
1233
1234         RouteDB::update($call, $self->{call});
1235
1236         my $node = Route::Node::get($call);
1237         if ($node) {
1238                 return unless $node->call eq $self->{call};
1239                 $node->usercount($_[2]);
1240
1241                 # input filter if required
1242                 return unless $self->in_filter_route($node);
1243
1244                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1245         }
1246 }
1247                 
1248 # incoming ping requests/answers
1249 sub handle_51
1250 {
1251         my $self = shift;
1252         my $pcno = shift;
1253         my $line = shift;
1254         my $origin = shift;
1255         my $to = $_[1];
1256         my $from = $_[2];
1257         my $flag = $_[3];
1258
1259                         
1260         # is it for us?
1261         if ($to eq $main::mycall) {
1262                 if ($flag == 1) {
1263                         $self->send(pc51($from, $to, '0'));
1264                 } else {
1265                         DXXml::Ping::handle_ping_reply($self, $from);
1266                 }
1267         } else {
1268
1269                 RouteDB::update($from, $self->{call});
1270
1271                 if (eph_dup($line)) {
1272                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1273                         return;
1274                 }
1275                 # route down an appropriate thingy
1276                 $self->route($to, $line);
1277         }
1278 }
1279
1280 # dunno but route it
1281 sub handle_75
1282 {
1283         my $self = shift;
1284         my $pcno = shift;
1285         my $line = shift;
1286         my $origin = shift;
1287         my $call = $_[1];
1288         if ($call ne $main::mycall) {
1289                 $self->route($call, $line);
1290         }
1291 }
1292
1293 # WCY broadcasts
1294 sub handle_73
1295 {
1296         my $self = shift;
1297         my $pcno = shift;
1298         my $line = shift;
1299         my $origin = shift;
1300         my $call = $_[1];
1301                         
1302         # do some de-duping
1303         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1304         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1305                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1306                 return;
1307         }
1308         @_ = map { unpad($_) } @_;
1309         if (WCY::dup($d)) {
1310                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1311                 return;
1312         }
1313                 
1314         my $wcy = WCY::update($d, @_[2..12]);
1315
1316         my $rep;
1317         eval {
1318                 $rep = Local::wcy($self, @_[1..12]);
1319         };
1320         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1321         return if $rep;
1322
1323         # broadcast to the eager world
1324         send_wcy_spot($self, $line, $d, @_[2..12]);
1325 }
1326
1327 # remote commands (incoming)
1328 sub handle_84
1329 {
1330         my $self = shift;
1331         my $pcno = shift;
1332         my $line = shift;
1333         my $origin = shift;
1334         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1335 }
1336
1337 # remote command replies
1338 sub handle_85
1339 {
1340         my $self = shift;
1341         my $pcno = shift;
1342         my $line = shift;
1343         my $origin = shift;
1344         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1345 }
1346
1347 # decode a pc92 call: flag call : version : build
1348 sub _decode_pc92_call
1349 {
1350         my $icall = shift;
1351         my @part = split /:/, $icall;
1352         my ($flag, $call) = unpack "A A*", $part[0];
1353         return () unless defined $flag && $flag ge '0' && $flag le '7';
1354         return () unless $call && is_callsign($call);
1355         my $is_node = $flag & 4;
1356         my $is_extnode = $flag & 2;
1357         my $here = $flag & 1;
1358         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2]);
1359 }
1360
1361 # decode a pc92 call: flag call : version : build
1362 sub _encode_pc92_call
1363 {
1364         my $ref = shift;
1365         my $ext = shift;
1366         my $flag = 0;
1367         my $call = $ref->call; 
1368         my $extra = '';
1369         $flag |= $ref->here ? 1 : 0;
1370         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1371                 $flag |= 4;
1372                 my $dxchan = DXChannel::get($call);
1373                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1374                 if ($ext) {
1375                         if ($ref->version) {
1376                                 my $version = $ref->version || 1.0;
1377                                 $version =  $version * 100 + 5300 if $version < 50;
1378                                 $extra .= ":" . $version;
1379                         }
1380                 }
1381         }
1382         return "$flag$call$extra";
1383 }
1384
1385 sub _add_thingy
1386 {
1387         my $parent = shift;
1388         my $s = shift;
1389         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1390         my @rout;
1391
1392         if ($call) {
1393                 if ($is_node) {
1394                         dbg("ROUTE: added node $call to " . $parent->call) if isdbg('routelow');
1395                         @rout = $parent->add($call, $version, Route::here($here));
1396                 } else {
1397                         dbg("ROUTE: added user $call to " . $parent->call) if isdbg('routelow');
1398                         @rout = $parent->add_user($call, Route::here($here));
1399                 }
1400         }
1401         return @rout;
1402 }
1403
1404 sub _del_thingy
1405 {
1406         my $parent = shift;
1407         my $s = shift;
1408         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1409         my @rout;
1410         if ($call) {
1411                 if ($is_node) {
1412                         my $nref = Route::Node::get($call);
1413                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1414                         @rout = $nref->del($parent) if $nref;
1415                 } else {
1416                         my $uref = Route::User::get($call);
1417                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1418                         @rout = $parent->del_user($uref) if $uref;
1419                 }
1420         }
1421         return @rout;
1422 }
1423
1424 my $_last_time;
1425 my $_last_occurs;
1426
1427 sub gen_pc9x_t
1428 {
1429         if (!$_last_time || $_last_time != $main::systime) {
1430                 $_last_time = $main::systime;
1431                 $_last_occurs = 0;
1432                 return $_last_time - $main::systime_daystart;
1433         } else {
1434                 $_last_occurs++;
1435                 return sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1436         }
1437 }
1438
1439 sub check_pc9x_t
1440 {
1441         my $call = shift;
1442         my $t = shift;
1443         my $pc = shift;
1444         my $create = shift;
1445
1446         my $parent = ref $call ? $call : Route::Node::get($call);
1447         if ($parent) {
1448                 my $lastid = $parent->lastid->{$pc} || 0;
1449                 if ($lastid + $main::systime_daystart >= $t + $main::systime_daystart) {
1450                         dbg("PCPROT: dup / old id on $call <= $lastid, ignored") if isdbg('chanerr');
1451                         return;
1452                 }
1453         } elsif ($create) {
1454                 $parent = Route::Node->new($call);
1455         }
1456         $parent->lastid->{$pc} = $t;
1457
1458         return $parent;
1459 }
1460
1461 # DXSpider routing entries
1462 sub handle_92
1463 {
1464         my $self = shift;
1465         my $pcno = shift;
1466         my $line = shift;
1467         my $origin = shift;
1468
1469         my (@radd, @rdel);
1470         
1471         $self->{do_pc9x} ||= 1;
1472
1473         my $pcall = $_[1];
1474         unless ($pcall) {
1475                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1476                 return;
1477         }
1478         my $t = $_[2];
1479         my $sort = $_[3];
1480         my @ent = map {[ _decode_pc92_call($_) ]} grep {$_ && /^[0-7]/} @_[4 .. $#_];
1481         
1482         if ($pcall eq $main::mycall) {
1483                 dbg("PCPROT: looped back, ignored") if isdbg('chanerr');
1484                 return;
1485         }
1486
1487         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1488                 $self->state('init92');
1489         }
1490
1491         my $parent = check_pc9x_t($pcall, $t, 92, 1) || return;
1492         my $oparent = $parent;
1493         
1494         $parent->lastid->{92} = $t;
1495         $parent->do_pc9x(1);
1496         $parent->via_pc92(1);
1497
1498         if (@ent) {
1499
1500                 # look at the first one which will always be a node of some sort
1501                 # and update any information that needs to be done. 
1502                 my ($call, $is_node, $is_extnode, $here, $version, $build) = @{$ent[0]}; 
1503                 if ($call && $is_node) {
1504                         if ($call eq $main::mycall) {
1505                                 dbg("PCPROT: looped back on node entry, ignored") if isdbg('chanerr');
1506                                 return;
1507                         }
1508                         if ($is_extnode) {
1509                                 # this is only accepted from my "self"
1510                                 if (DXChannel::get($call) && $call ne $self->{call}) {
1511                                         dbg("PCPROT: locally connected node config for $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1512                                         return;
1513                                 }
1514                                 # reparent to external node (note that we must have received a 'C' or 'A' record
1515                                 # from the true parent node for this external before we get one for the this node
1516                                 unless ($parent = Route::Node::get($call)) {
1517                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1518                                         return;
1519                                 }
1520                                 $parent = check_pc9x_t($call, $t, 92) || return;
1521                                 $parent->via_pc92(1);
1522                         }
1523                 } else {
1524                         dbg("PCPROT: must be mycall or external node as first entry, ignored") if isdbg('chanerr');
1525                         return;
1526                 }
1527                 $parent->here(Route::here($here));
1528                 $parent->version($version) if $version && $version > $parent->version;
1529                 $parent->build($build) if $build && $build > $parent->build;
1530                 shift @ent;
1531         }
1532
1533         # do a pass through removing any references to either locally connected nodes or mycall
1534         my @nent;
1535         for (@ent) {
1536                 next unless $_;
1537                 if ($_->[0] eq $main::mycall || DXChannel::get($_->[0])) {
1538                         dbg("PCPROT: $_->[0] refers to locally connected node, ignored") if isdbg('chanerr');
1539                         next;
1540                 } 
1541                 push @nent, $_;
1542         }
1543
1544         if ($sort eq 'A') {
1545                 for (@nent) {
1546                         push @radd, _add_thingy($parent, $_);
1547                 }
1548         } elsif ($sort eq 'D') {
1549                 for (@nent) {
1550                         push @rdel, _del_thingy($parent, $_);
1551                 }
1552         } elsif ($sort eq 'C') {
1553                 my (@nodes, @users);
1554
1555                 # we only reset obscounts on config records
1556                 $oparent->reset_obs;
1557                 dbg("ROUTE: reset obscount on $pcall now " . $oparent->obscount) if isdbg('route');
1558                 if ($oparent != $parent) {
1559                         $parent->reset_obs;
1560                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('route');
1561                 }
1562
1563                 # 
1564                 foreach my $r (@nent) {
1565 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);                     
1566                         if ($r->[0]) {
1567                                 if ($r->[1]) {
1568                                         push @nodes, $r->[0];
1569                                 } else {
1570                                         push @users, $r->[0];
1571                                 }
1572                         } else {
1573                                 dbg("DXPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr'); 
1574                         }
1575                 }
1576
1577                 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1578
1579                 # add users here
1580                 foreach my $r (@nent) {
1581                         my $call = $r->[0];
1582                         if ($call) {
1583                                 push @radd,_add_thingy($parent, $r) if grep $call eq $_, (@$nnodes, @$nusers);
1584                         }
1585                 }
1586                 # del users here
1587                 foreach my $r (@$dnodes) {
1588                         push @rdel,_del_thingy($parent, [$r, 1]);
1589                 }
1590                 foreach my $r (@$dusers) {
1591                         push @rdel,_del_thingy($parent, [$r, 0]);
1592                 }
1593         } else {
1594                 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1595                 return;
1596         }
1597
1598         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1599         foreach my $r (@rdel) {
1600                 next unless $r;
1601                 
1602                 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1603                 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1604         }
1605         my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1606         my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1607         unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
1608         $self->route_pc19($pcall, undef, @pc19) if @pc19;
1609         $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1610 }
1611
1612 sub handle_93
1613 {
1614         my $self = shift;
1615         my $pcno = shift;
1616         my $line = shift;
1617         my $origin = shift;
1618
1619         $self->{do_pc9x} ||= 1;
1620
1621         my $pcall = $_[1];
1622         unless (is_callsign($pcall)) {
1623                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1624                 return;
1625         }
1626         my $t = $_[2];
1627         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
1628
1629         my $to = $_[3];
1630         my $from = $_[4];
1631         my $via = $_[5];
1632         my $text = $_[6];
1633         my $onode = $_[7];
1634         $onode = $pcall if @_ <= 8;
1635
1636         # will we allow it at all?
1637         if ($censorpc) {
1638                 my @bad;
1639                 if (@bad = BadWords::check($text)) {
1640                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
1641                         return;
1642                 }
1643         }
1644         
1645         # if this is a 'bad spotter' user then ignore it
1646         my $nossid = $from;
1647         $nossid =~ s/-\d+$//;
1648         if ($badspotter->in($nossid)) {
1649                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
1650                 return;
1651         }
1652
1653         if (is_callsign($to)) {
1654                 # local talks 
1655                 my $dxchan;
1656                 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
1657                 $dxchan = DXChannel::get($to) unless $dxchan;
1658                 if ($dxchan && $dxchan->is_user) {
1659                         $dxchan->talk($from, $to, $via, $text, $onode);
1660                         return;
1661                 }
1662
1663                 # convert to PC10 talks where appropriate
1664                 my $ref = Route::get($to);
1665                 if ($ref) {
1666                         my @dxchan = $ref->alldxchan;
1667                         for $dxchan (@dxchan) {
1668                                 if ($dxchan->{do_pc9x}) {
1669                                         $dxchan->send($line);
1670                                 } else {
1671                                         $dxchan->talk($from, $to, $via, $text, $onode);
1672                                 }
1673                         }
1674                         return;
1675                 }
1676
1677                 # otherwise, drop through and allow it to be broadcast
1678         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
1679                 # announces
1680         } else {
1681                 # chat messages
1682         }
1683         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1684 }
1685
1686 # if get here then rebroadcast the thing with its Hop count decremented (if
1687 # there is one). If it has a hop count and it decrements to zero then don't
1688 # rebroadcast it.
1689 #
1690 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1691 #        REBROADCAST!!!!
1692 #
1693
1694 sub handle_default
1695 {
1696         my $self = shift;
1697         my $pcno = shift;
1698         my $line = shift;
1699         my $origin = shift;
1700
1701         if (eph_dup($line)) {
1702                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1703         } else {
1704                 if ($pcno >= 90) {
1705                         my $pcall = $_[1];
1706                         unless (is_callsign($pcall)) {
1707                                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1708                                 return;
1709                         }
1710                         my $t = $_[2];
1711                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
1712                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1713                 } else {
1714                         unless ($self->{isolate}) {
1715                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1716                         }
1717                 }
1718         }
1719 }
1720
1721 1;