fix nohere on pc92
[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) if $self->{state} eq 'normal';
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 sub send_delayed_pc92
740 {
741         my $self = shift;
742         
743         # send out delayed PC92 config for this node if it is external
744         unless ($self->{do_pc92}) {
745                 my $node = Route::Node::get($self->{call});
746                 if ($node) {
747                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
748                         $self->route_pc92c($main::mycall, undef, $node, @rout);
749                 } 
750         }
751 }
752
753 # send local configuration
754 sub handle_20
755 {
756         my $self = shift;
757         my $pcno = shift;
758         my $line = shift;
759         my $origin = shift;
760         $self->send_local_config();
761         $self->send(pc22());
762         $self->state('normal');
763         $self->{lastping} = 0;
764         $self->send_delayed_pc92;
765 }
766                 
767 # delete a cluster from the list
768 #
769 # This should never occur for directly connected nodes.
770 #
771 sub handle_21
772 {
773         my $self = shift;
774         my $pcno = shift;
775         my $line = shift;
776         my $origin = shift;
777         my $call = uc $_[1];
778
779         eph_del_regex("^PC1[679].*$call");
780                         
781         # if I get a PC21 from the same callsign as self then ignore it
782         if ($call eq $self->call) {
783                 dbg("PCPROT: self referencing PC21 from $self->{call}");
784                 return;
785         }
786
787         RouteDB::delete($call, $self->{call});
788
789         my $parent = Route::Node::get($self->{call});
790         unless ($parent) {
791                 dbg("PCPROT: my parent $self->{call} has disappeared");
792                 $self->disconnect;
793                 return;
794         }
795
796         my @rout;
797         
798         if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
799                 my $node = Route::Node::get($call);
800                 if ($node) {
801                         
802                         my $dxchan = DXChannel::get($call);
803                         if ($dxchan && $dxchan != $self) {
804                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
805                                 return;
806                         }
807                         
808                         # input filter it
809                         return unless $self->in_filter_route($node);
810                         
811                         # routing objects, force a PC21 if it is local
812                         push @rout, $node->del($parent);
813                         push @rout, $call if $dxchan && @rout == 0;
814                 }
815         } else {
816                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
817                 return;
818         }
819
820         if (@rout) {
821                 $self->route_pc21($origin, $line, @rout);
822                 $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
823         }
824 }
825                 
826
827 sub handle_22
828 {
829         my $self = shift;
830         my $pcno = shift;
831         my $line = shift;
832         my $origin = shift;
833         $self->state('normal');
834         $self->{lastping} = 0;
835
836         $self->send_delayed_pc92
837 }
838                                 
839 # WWV info
840 sub handle_23
841 {
842         my $self = shift;
843         my $pcno = shift;
844         my $line = shift;
845         my $origin = shift;
846                         
847         # route foreign' pc27s 
848         if ($pcno == 27) {
849                 if ($_[8] ne $main::mycall) {
850                         $self->route($_[8], $line);
851                         return;
852                 }
853         }
854
855         # only do a rspf check on PC23 (not 27)
856         if ($pcno == 23) {
857                 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
858         }
859
860         # do some de-duping
861         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
862         my $sfi = unpad($_[3]);
863         my $k = unpad($_[4]);
864         my $i = unpad($_[5]);
865         my ($r) = $_[6] =~ /R=(\d+)/;
866         $r = 0 unless $r;
867         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
868                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
869                 return;
870         }
871
872         # global wwv filtering on INPUT
873         my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
874         if ($self->{inwwvfilter}) {
875                 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
876                 unless ($filter) {
877                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
878                         return;
879                 }
880         }
881         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
882         if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
883                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
884                 return;
885         }
886                 
887         # note this only takes the first one it gets
888         Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
889
890         my $rep;
891         eval {
892                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
893         };
894         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
895         return if $rep;
896
897         # DON'T be silly and send on PC27s!
898         return if $pcno == 27;
899
900         # broadcast to the eager world
901         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
902 }
903                 
904 # set here status
905 sub handle_24
906 {
907         my $self = shift;
908         my $pcno = shift;
909         my $line = shift;
910         my $origin = shift;
911         my $call = uc $_[1];
912         my ($nref, $uref);
913         $nref = Route::Node::get($call);
914         $uref = Route::User::get($call);
915         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
916                         
917         if (eph_dup($line)) {
918                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
919                 return;
920         }
921         
922         $nref->here($_[2]) if $nref;
923         $uref->here($_[2]) if $uref;
924         my $ref = $nref || $uref;
925         return unless $self->in_filter_route($ref);
926
927         $self->route_pc24($origin, $line, $ref, $_[3]);
928 }
929                 
930 # merge request
931 sub handle_25
932 {
933         my $self = shift;
934         my $pcno = shift;
935         my $line = shift;
936         my $origin = shift;
937         if ($_[1] ne $main::mycall) {
938                 $self->route($_[1], $line);
939                 return;
940         }
941         if ($_[2] eq $main::mycall) {
942                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
943                 return;
944         }
945
946         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
947                         
948         # spots
949         if ($_[3] > 0) {
950                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
951                 my $in;
952                 foreach $in (@in) {
953                         $self->send(pc26(@{$in}[0..4], $_[2]));
954                 }
955         }
956
957         # wwv
958         if ($_[4] > 0) {
959                 my @in = reverse Geomag::search(0, $_[4], time, 1);
960                 my $in;
961                 foreach $in (@in) {
962                         $self->send(pc27(@{$in}[0..5], $_[2]));
963                 }
964         }
965 }
966
967 sub handle_26 {goto &handle_11}
968 sub handle_27 {goto &handle_23}
969
970 # mail/file handling
971 sub handle_28
972 {
973         my $self = shift;
974         my $pcno = shift;
975         my $line = shift;
976         my $origin = shift;
977         if ($_[1] eq $main::mycall) {
978                 no strict 'refs';
979                 my $sub = "DXMsg::handle_$pcno";
980                 &$sub($self, @_);
981         } else {
982                 $self->route($_[1], $line) unless $self->is_clx;
983         }
984 }
985
986 sub handle_29 {goto &handle_28}
987 sub handle_30 {goto &handle_28}
988 sub handle_31 {goto &handle_28}
989 sub handle_32 {goto &handle_28}
990 sub handle_33 {goto &handle_28}
991                 
992 sub handle_34
993 {
994         my $self = shift;
995         my $pcno = shift;
996         my $line = shift;
997         my $origin = shift;
998         if (eph_dup($line, $eph_pc34_restime)) {
999                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1000         } else {
1001                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1002         }
1003 }
1004                 
1005 # remote command replies
1006 sub handle_35
1007 {
1008         my $self = shift;
1009         my $pcno = shift;
1010         my $line = shift;
1011         my $origin = shift;
1012         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1013         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1014 }
1015                 
1016 sub handle_36 {goto &handle_34}
1017
1018 # database stuff
1019 sub handle_37
1020 {
1021         my $self = shift;
1022         my $pcno = shift;
1023         my $line = shift;
1024         my $origin = shift;
1025         if ($_[1] eq $main::mycall) {
1026                 no strict 'refs';
1027                 my $sub = "DXDb::handle_$pcno";
1028                 &$sub($self, @_);
1029         } else {
1030                 $self->route($_[1], $line) unless $self->is_clx;
1031         }
1032 }
1033
1034 # node connected list from neighbour
1035 sub handle_38
1036 {
1037         my $self = shift;
1038         my $pcno = shift;
1039         my $line = shift;
1040         my $origin = shift;
1041 }
1042                 
1043 # incoming disconnect
1044 sub handle_39
1045 {
1046         my $self = shift;
1047         my $pcno = shift;
1048         my $line = shift;
1049         my $origin = shift;
1050         if ($_[1] eq $self->{call}) {
1051                 $self->disconnect(1);
1052         } else {
1053                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1054         }
1055 }
1056
1057 sub handle_40 {goto &handle_28}
1058                 
1059 # user info
1060 sub handle_41
1061 {
1062         my $self = shift;
1063         my $pcno = shift;
1064         my $line = shift;
1065         my $origin = shift;
1066         my $call = $_[1];
1067
1068         my $l = $line;
1069         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1070         if (eph_dup($l, $eph_info_restime)) {
1071                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1072                 return;
1073         }
1074                         
1075         # input filter if required
1076         #                       my $ref = Route::get($call) || Route->new($call);
1077         #                       return unless $self->in_filter_route($ref);
1078
1079         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1080                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1081                 return;
1082         }
1083
1084         # add this station to the user database, if required
1085         my $user = DXUser->get_current($call);
1086         $user = DXUser->new($call) unless $user;
1087                         
1088         if ($_[2] == 1) {
1089                 $user->name($_[3]);
1090         } elsif ($_[2] == 2) {
1091                 $user->qth($_[3]);
1092         } elsif ($_[2] == 3) {
1093                 if (is_latlong($_[3])) {
1094                         my ($lat, $long) = DXBearing::stoll($_[3]);
1095                         $user->lat($lat);
1096                         $user->long($long);
1097                         $user->qra(DXBearing::lltoqra($lat, $long));
1098                 } else {
1099                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1100                         return;
1101                 }
1102         } elsif ($_[2] == 4) {
1103                 $user->homenode($_[3]);
1104         } elsif ($_[2] == 5) {
1105                 if (is_qra(uc $_[3])) {
1106                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1107                         $user->lat($lat);
1108                         $user->long($long);
1109                         $user->qra(uc $_[3]);
1110                 } else {
1111                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1112                         return;
1113                 }
1114         }
1115         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1116         $user->put;
1117
1118         unless ($self->{isolate}) {
1119                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1120         }
1121
1122         #  perhaps this IS what we want after all
1123         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1124 }
1125
1126 sub handle_42 {goto &handle_28}
1127
1128
1129 # database
1130 sub handle_44 {goto &handle_37}
1131 sub handle_45 {goto &handle_37}
1132 sub handle_46 {goto &handle_37}
1133 sub handle_47 {goto &handle_37}
1134 sub handle_48 {goto &handle_37}
1135                 
1136 # message and database
1137 sub handle_49
1138 {
1139         my $self = shift;
1140         my $pcno = shift;
1141         my $line = shift;
1142         my $origin = shift;
1143
1144         if (eph_dup($line)) {
1145                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1146                 return;
1147         }
1148         
1149         if ($_[1] eq $main::mycall) {
1150                 DXMsg::handle_49($self, @_);
1151         } else {
1152                 $self->route($_[1], $line) unless $self->is_clx;
1153         }
1154 }
1155
1156 # keep alive/user list
1157 sub handle_50
1158 {
1159         my $self = shift;
1160         my $pcno = shift;
1161         my $line = shift;
1162         my $origin = shift;
1163
1164         my $call = $_[1];
1165
1166         RouteDB::update($call, $self->{call});
1167
1168         my $node = Route::Node::get($call);
1169         if ($node) {
1170                 return unless $node->call eq $self->{call};
1171                 $node->usercount($_[2]);
1172
1173                 # input filter if required
1174                 return unless $self->in_filter_route($node);
1175
1176                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1177         }
1178 }
1179                 
1180 # incoming ping requests/answers
1181 sub handle_51
1182 {
1183         my $self = shift;
1184         my $pcno = shift;
1185         my $line = shift;
1186         my $origin = shift;
1187         my $to = $_[1];
1188         my $from = $_[2];
1189         my $flag = $_[3];
1190
1191                         
1192         # is it for us?
1193         if ($to eq $main::mycall) {
1194                 if ($flag == 1) {
1195                         $self->send(pc51($from, $to, '0'));
1196                 } else {
1197                         DXXml::Ping::handle_ping_reply($self, $from);
1198                 }
1199         } else {
1200
1201                 RouteDB::update($from, $self->{call});
1202
1203                 if (eph_dup($line)) {
1204                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1205                         return;
1206                 }
1207                 # route down an appropriate thingy
1208                 $self->route($to, $line);
1209         }
1210 }
1211
1212 # dunno but route it
1213 sub handle_75
1214 {
1215         my $self = shift;
1216         my $pcno = shift;
1217         my $line = shift;
1218         my $origin = shift;
1219         my $call = $_[1];
1220         if ($call ne $main::mycall) {
1221                 $self->route($call, $line);
1222         }
1223 }
1224
1225 # WCY broadcasts
1226 sub handle_73
1227 {
1228         my $self = shift;
1229         my $pcno = shift;
1230         my $line = shift;
1231         my $origin = shift;
1232         my $call = $_[1];
1233                         
1234         # do some de-duping
1235         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1236         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1237                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1238                 return;
1239         }
1240         @_ = map { unpad($_) } @_;
1241         if (WCY::dup($d)) {
1242                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1243                 return;
1244         }
1245                 
1246         my $wcy = WCY::update($d, @_[2..12]);
1247
1248         my $rep;
1249         eval {
1250                 $rep = Local::wcy($self, @_[1..12]);
1251         };
1252         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1253         return if $rep;
1254
1255         # broadcast to the eager world
1256         send_wcy_spot($self, $line, $d, @_[2..12]);
1257 }
1258
1259 # remote commands (incoming)
1260 sub handle_84
1261 {
1262         my $self = shift;
1263         my $pcno = shift;
1264         my $line = shift;
1265         my $origin = shift;
1266         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1267 }
1268
1269 # remote command replies
1270 sub handle_85
1271 {
1272         my $self = shift;
1273         my $pcno = shift;
1274         my $line = shift;
1275         my $origin = shift;
1276         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1277 }
1278
1279 # decode a pc92 call: flag call : version : build
1280 sub _decode_pc92_call
1281 {
1282         my $icall = shift;
1283         my @part = split /:/, $icall;
1284         my ($flag, $call) = unpack "A A*", $part[0];
1285         return () unless defined $flag && $flag ge '0' && $flag le '7';
1286         return () unless $call && is_callsign($call);
1287         my $is_node = $flag & 4;
1288         my $is_extnode = $flag & 2;
1289         my $here = $flag & 1;
1290         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2]);
1291 }
1292
1293 # decode a pc92 call: flag call : version : build
1294 sub _encode_pc92_call
1295 {
1296         my $ref = shift;
1297         my $ext = shift;
1298         my $flag = 0;
1299         my $call = $ref->call; 
1300         my $extra = '';
1301         $flag |= $ref->here ? 1 : 0;
1302         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1303                 $flag |= 4;
1304                 my $dxchan = DXChannel::get($call);
1305                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc92};
1306                 if ($ext) {
1307                         if ($ref->version) {
1308                                 my $version = $ref->version || 1.0;
1309                                 $version =  $version * 100 + 5300 if $version < 50;
1310                                 $extra .= ":" . $version;
1311                         }
1312                 }
1313         }
1314         return "$flag$call$extra";
1315 }
1316
1317 sub _add_thingy
1318 {
1319         my $parent = shift;
1320         my $s = shift;
1321         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($s);
1322         my @rout;
1323
1324         if ($call) {
1325                 if ($is_node) {
1326                         @rout = $parent->add($call, $version, Route::here($here));
1327                 } else {
1328                         @rout = $parent->add_user($call, Route::here($here));
1329                 }
1330         }
1331         return @rout;
1332 }
1333
1334 sub _del_thingy
1335 {
1336         my $parent = shift;
1337         my $s = shift;
1338         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($s);
1339         my @rout;
1340         if ($call) {
1341                 if ($is_node) {
1342                         my $nref = Route::Node::get($call);
1343                         @rout = $nref->del($parent) if $nref;
1344                 } else {
1345                         my $uref = Route::User::get($call);
1346                         @rout = $parent->del_user($uref) if $uref;
1347                 }
1348         }
1349         return @rout;
1350 }
1351
1352 my $_last_time;
1353 my $_last_occurs;
1354
1355 sub gen_pc9x_t
1356 {
1357         if (!$_last_time || $_last_time != $main::systime) {
1358                 $_last_time = $main::systime;
1359                 $_last_occurs = 0;
1360                 return $_last_time - $main::systime_daystart;
1361         } else {
1362                 $_last_occurs++;
1363                 return sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1364         }
1365 }
1366
1367 sub check_pc9x_t
1368 {
1369         my $call = shift;
1370         my $t = shift;
1371         my $pc = shift;
1372         my $create = shift;
1373         
1374         my $parent = ref $call ? $call : Route::Node::get($call);
1375         if ($parent) {
1376                 my $lastid = $parent->lastid->{$pc} || 0;
1377                 $t += 86400 if $t < $lastid - 43200;
1378                 if ($lastid >= $t) {
1379                         dbg("PCPROT: dup / old id on $call <= $lastid, ignored") if isdbg('chanerr');
1380                         return;
1381                 }
1382                 $t -= 86400 if $t >= 86400;
1383         } elsif ($create) {
1384                 $parent = Route::Node->new($call);
1385         }
1386         $parent->lastid->{$pc} = $t;
1387  
1388         return $parent;
1389 }
1390
1391 # DXSpider routing entries
1392 sub handle_92
1393 {
1394         my $self = shift;
1395         my $pcno = shift;
1396         my $line = shift;
1397         my $origin = shift;
1398
1399         $self->{do_pc92} ||= 1;
1400
1401         my $pcall = $_[1];
1402         unless ($pcall) {
1403                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1404                 return;
1405         }
1406         my $t = $_[2];
1407         my $sort = $_[3];
1408         
1409         my @ent = grep {$_ && /^[0-7]/} @_[4 .. $#_];
1410         
1411         if ($pcall eq $main::mycall) {
1412                 dbg("PCPROT: looped back, ignored") if isdbg('chanerr');
1413                 return;
1414         }
1415
1416         my $parent = check_pc9x_t($pcall, $t, 92, 1) || return;
1417         
1418         $parent->lastid->{92} = $t;
1419         $parent->do_pc92(1);
1420
1421         if (@ent) {
1422
1423                 # look at the first one which will always be a node of some sort
1424                 # and update any information that needs to be done. 
1425                 my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($ent[0]);
1426                 if ($call && $is_node) {
1427                         if ($call eq $main::mycall) {
1428                                 dbg("PCPROT: looped back on node entry, ignored") if isdbg('chanerr');
1429                                 return;
1430                         }
1431                         if ($is_extnode) {
1432                                 # reparent to external node (note that we must have received a 'C' or 'A' record
1433                                 # from the true parent node for this external before we get one for the this node
1434                                 unless ($parent = Route::Node::get($call)) {
1435                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1436                                         return;
1437                                 }
1438                                 my $parent = check_pc9x_t($call, $t, 92) || return;
1439                         }
1440                 } else {
1441                         dbg("PCPROT: must be mycall or external node as first entry, ignored") if isdbg('chanerr');
1442                         return;
1443                 }
1444                 $parent->here(Route::here($here));
1445                 $parent->version($version) if $version && $version > $parent->version;
1446                 $parent->build($build) if $build && $build > $parent->build;
1447                 shift @ent;
1448         }
1449
1450         my (@radd, @rdel);
1451         
1452         if ($sort eq 'A') {
1453                 for (@ent) {
1454                         push @radd, _add_thingy($parent, $_);
1455                 }
1456         } elsif ($sort eq 'D') {
1457                 for (@ent) {
1458                         push @rdel, _del_thingy($parent, $_);
1459                 }
1460         } elsif ($sort eq 'C') {
1461                 my (@nodes, @users);
1462                 for (@ent) {
1463                         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1464                         if ($call) {
1465                                 if ($is_node) {
1466                                         push @nodes, $call;
1467                                 } else {
1468                                         push @users, $call;
1469                                 }
1470                         } else {
1471                                 dbg("DXPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr'); 
1472                         }
1473                 }
1474
1475                 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1476
1477                 for (@ent) {
1478                         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1479                         if ($call) {
1480                                 push @radd,_add_thingy($parent, $_) if grep $call eq $_, (@$nnodes, @$nusers);
1481                                 push @rdel,_del_thingy($parent, $_) if grep $call eq $_, (@$dnodes, @$dusers);
1482                         }
1483                 }
1484         } else {
1485                 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1486                 return;
1487         }
1488
1489         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1490         foreach my $r (@rdel) {
1491                 next unless $r;
1492                 
1493                 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1494                 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1495         }
1496         my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1497         my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1498         $self->route_pc19($pcall, undef, @pc19) if @pc19;
1499         $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1500 }
1501
1502 # if get here then rebroadcast the thing with its Hop count decremented (if
1503 # there is one). If it has a hop count and it decrements to zero then don't
1504 # rebroadcast it.
1505 #
1506 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1507 #        REBROADCAST!!!!
1508 #
1509
1510 sub handle_default
1511 {
1512         my $self = shift;
1513         my $pcno = shift;
1514         my $line = shift;
1515         my $origin = shift;
1516
1517         if (eph_dup($line)) {
1518                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1519         } else {
1520                 unless ($self->{isolate}) {
1521                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1522                 }
1523         }
1524 }
1525
1526 1;