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