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