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