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