Fix showdx, is_ipaddr, create_master_badip_files.pl
[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-2007 Dirk Koopman G1TLH
6 #
7 #
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 DXCIDR;
36
37 use strict;
38 use warnings qw(all);
39 no warnings qw(uninitialized);
40
41
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
48                         $allowzero $decode_dk0wcy $send_opernam @checklist
49                         $eph_pc15_restime $pc9x_past_age $pc9x_dupe_age
50                         $pc10_dupe_age $pc92_slug_changes $last_pc92_slug
51                         $pc92Ain $pc92Cin $pc92Din $pc92Kin $pc9x_time_tolerance
52                         $pc92filterdef $senderverify $pc11_dwell_time $pc11_extract_route $pc92_ad_enabled $pc92c_ipaddr_enabled
53                    );
54
55 $pc9x_dupe_age = 60;                    # catch loops of circular (usually) D records
56 $pc10_dupe_age = 45;                    # just something to catch duplicate PC10->PC93 conversions
57 $pc92_slug_changes = 60*1;              # slug any changes going outward for this long
58 $last_pc92_slug = 0;                    # the last time we sent out any delayed add or del PC92s
59 $pc9x_time_tolerance = 15*60;   # the time on a pc9x is allowed to be out by this amount
60 $pc9x_past_age = (122*60)+              # maximum age in the past of a px9x (a config record might be the only
61 $pc9x_time_tolerance;           # thing a node might send - once an hour and we allow an extra hour for luck)
62                                 # this is actually the partition between "yesterday" and "today" but old.
63 $senderverify = 0;                              # 1 - check for forged PC11 or PC61.
64                                 # 2 - if forged, dump them.
65 $pc11_dwell_time = 2;                   # number of seconds to wait for a PC61 to come to substitute the PC11
66 $pc11_extract_route = 1;                # generate missing  user route entry and IP address from passing PC61s
67
68
69 $pc92filterdef = bless ([
70                           # tag, sort, field, priv, special parser
71                           ['call', 'c', 0],
72                           ['by', 'c', 0],
73                           ['dxcc', 'nc', 1],
74                           ['itu', 'ni', 2],
75                           ['zone', 'nz', 3],
76                          ], 'Filter::Cmd');
77
78 our %pc11q;
79 # this is a place to park an incoming PC11 in the sure and certain hope that
80 # a PC61 will be along soon. This has the side benefit that it will delay a
81 # a PC11 for one second - assuming that it is not removed by a PC61 version
82
83 # incoming talk commands
84 sub handle_10
85 {
86         my $self = shift;
87         my $pcno = shift;
88         my $line = shift;
89         my $origin = shift;
90         my $pc = shift;
91
92         # this is to catch loops caused by bad software ...
93         if (eph_dup($line, $pc10_dupe_age)) {
94                 return;
95         }
96
97
98         # is it for me or one of mine?
99         my ($from, $to, $via, $call, $dxchan);
100         $from = $pc->[1];
101         if ($pc->[5] gt ' ') {
102                 $via = $pc->[2];
103                 $to = $pc->[5];
104         } else {
105                 $to = $pc->[2];
106         }
107
108         # if this is a 'nodx' node then ignore it
109         if ($badnode->in($pc->[6]) || ($via && $badnode->in($via))) {
110                 dbg($line) if isdbg('nologchan');
111                 dbg("PCPROT: Bad Node, dropped");
112                 return;
113         }
114
115
116         my $nossid = $from;
117         $nossid =~ s/-\d+$//;
118         if ($badspotter->in($nossid)) {
119                 dbg($line) if isdbg('nologchan');
120                 dbg("PCPROT: Bad Spotter, dropped");
121                 return;
122         }
123
124         # if we are converting announces to talk is it a dup?
125         if ($ann_to_talk) {
126                 if (AnnTalk::is_talk_candidate($from, $pc->[3]) && AnnTalk::dup($from, $to, $pc->[3])) {
127                         dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
128                         return;
129                 }
130         }
131         
132         # will we allow it at all?
133         if ($censorpc) {
134                 my @bad;
135                 if (@bad = BadWords::check($pc->[3])) {
136                         my $bw = join ', ', @bad; 
137                         dbg($line) if isdbg('nologchan');
138                         dbg("PCPROT: Badwords: '$bw', dropped");
139                         return;
140                 }
141         }
142
143         # convert this to a PC93, coming from mycall with origin set and process it as such
144         my $ref = Route::get($pc->[6]);
145         my $ip = $ref->ip;
146         $main::me->normal(pc93($to, $from, $via, $pc->[3], $pc->[6]), $ip);
147 }
148
149 my %pc11_saved;                                 # delayed PC11s
150 my $pc11_rx;                                    # no of pc11 rxed
151 my $pc61_rx;                                    # no of pc61 rxed
152 my $pc11_to_61;                                 # no of 'better' pc61, that replaced stored waiting pc11
153 my $rpc11_to_61;                                # no of pc11s 'promoted' to pc61 by IP captured in routing table
154
155 # DX Spot handling
156 sub handle_11
157 {
158         my $self = shift;
159         my $pcno = shift;
160         my $line = shift;
161         my $origin = shift;
162         my $pc = shift;
163         my $recurse = shift || 0;
164
165         # route 'foreign' pc26s
166         if ($pcno == 26) {
167                 if ($pc->[7] ne $main::mycall) {
168                         $self->route($pc->[7], $line);
169                         return;
170                 }
171         }
172
173         dbg("---") if isdbg("pc11") || isdbg("pc61"); 
174         dbg("INPUT $self->{call}: $line via: $origin recurse: $recurse") if isdbg("pc11") || isdbg("pc61"); 
175
176 #       my ($hops) = $pc->[8] =~ /^H(\d+)/;
177
178         # is the spotted callsign blank? This should really be trapped earlier but it
179         # could break other protocol sentences. Also check for lower case characters.
180         if ($pc->[2] =~ /^\s*$/) {
181                 dbg($line) if isdbg('nologchan');
182                 dbg("PCPROT: blank callsign, dropped");
183                 return;
184         }
185         if ($pc->[2] =~ /[a-z]/) {
186                 dbg($line) if isdbg('nologchan');
187                 dbg("PCPROT: lowercase characters, dropped");
188                 return;
189         }
190
191
192         # if this is a 'nodx' node then ignore it
193         if ($badnode->in($pc->[7])) {
194                 dbg($line) if isdbg('nologchan');
195                 dbg("PCPROT: Bad Node $pc->[7], dropped");
196                 return;
197         }
198
199         # convert the date to a unix date
200         my $d = cltounix($pc->[3], $pc->[4]);
201         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
202         if (!$d || (($pcno == 11 || $pcno == 61) && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
203                 dbg($line) if isdbg('nologchan');
204                 dbg("PCPROT: Spot ignored, invalid date or out of range ($pc->[3] $pc->[4])\n");
205                 return;
206         }
207
208         # is it 'baddx'
209         if ($baddx->in($pc->[2])) {
210                 dbg("PCPROT: Bad DX spot '$pc->[2]', ignored");
211                 dbg($line) if isdbg('nologchan');
212                 return;
213         }
214
215         # is it claiming to be BUST(ed)
216         $pc->[5] =~ s/^\s+//;                   # take any leading blanks off
217         $pc->[2] = unpad($pc->[2]);             # take off leading and trailing blanks from spotted callsign
218         if ($pc->[2] =~ /BUST\w*$/) {
219                 dbg($line) if isdbg('nologchan');
220                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
221                 return;
222         }
223         
224         my $nossid = $pc->[6];
225     $nossid =~ s/-\d+$//;
226
227         my @spot = Spot::prepare($pc->[1], $pc->[2], $d, $pc->[5], $nossid, $pc->[7], $pc->[8]);
228
229         #   $f0 = frequency
230         #   $f1 = call
231         #   $f2 = date in unix format
232         #   $f3 = comment
233         #   $f4 = spotter
234         #   $f5 = spotted dxcc country
235         #   $f6 = spotter dxcc country
236         #   $f7 = origin
237         #   $f8 = spotted itu
238         #   $f9 = spotted cq zone
239         #   $f10 = spotter itu
240         #   $f11 = spotter cq zone
241         #   $f12 = spotted us state
242         #   $f13 = spotter us state
243         #   $f14 = ip address
244
245
246         # is this is a 'bad spotter' or an unknown user then ignore it. 
247         if ($badspotter->in($nossid)) {
248                 dbg($line) if isdbg('nologchan');
249                 dbg("PCPROT: Bad Spotter $pc->[6], dropped");
250                 return;
251         }
252
253         # global spot filtering on INPUT
254         if ($self->{inspotsfilter}) {
255                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
256                 unless ($filter) {
257                         dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
258                         return;
259                 }
260         }
261
262         # Populate the routing table
263         $self->populate_routing_table($pc->[7], $pc->[6], $pc->[8]);
264         my $r = Route::User::get($pc->[6]);
265         if ($pcno == 61) {
266                 unless ($pc->[8] && is_ipaddr($pc->[8])) {
267                         dbg("PCPROT: ROUTE $self->{call} NO IP ADDRESS in '$line'!");   
268                 }
269         }
270
271         # this is where we decide to delay PC11s in the hope that a PC61 will be along soon.
272         my $key = join '|', @spot[0..2,4,7]; # not including text
273
274         unless ($recurse) {
275
276                 if ($pcno == 61) {
277
278                         if ($pc11_saved{$key}) {
279                                 # before we promote  because it's a better pc61, check that it's not a dupe (but don't insert it).
280                                 if (Spot::dup_find(@spot[0..4,7])) {
281                                         dbg("PCPROT: Duplicate Spot  $self->{call}: $pc->[0] $key ignored\n") if isdbg('chanerr') || isdbg('dupespot') || isdbg('pc11');
282                                         delete $pc11_saved{$key};
283                                         return;
284                                 }
285
286                                 ++$pc11_to_61;
287
288                                 my $percent = $pc11_rx ? $pc11_to_61 * 100 / $pc11_rx : 0;
289                                 dbg(sprintf("PROMOTED $self->{call}: BETTER $pc->[0] $key, using pc61, WAITING pc11 DUMPED: $pc61_rx pc11: $pc11_rx better pc61: $pc11_to_61 (%0.1f%%)", $percent)) if isdbg("pc11");
290
291                                 delete $pc11_saved{$key}; # because we have promoted it, no longer needed.
292
293                                 # so unlike the promotion by route, there is a stored, but uncounted PC11
294                                 # which have discarded. But we have chosen to use better PC61 that's just come in
295                                 # so we allow the PC61 to be counted later, but count the now discarded PC11
296                                 # because it *did* come in.
297                                 ++$pc11_rx;
298                         } 
299                 }
300
301                 if ($pcno == 11) {
302
303                         # if this fires then we have already had one or more PC11s but no PC61 for this spot
304                         if ($pc11_saved{$key}) {
305                                 dbg("DUPE $self->{call} $pc->[0] key: $key is saved, ignored") if isdbg("pc11");
306                                 return;         # because it's a dup
307                         }
308
309                         # before we promote by route, check that it's not been preceded by a previous PC61
310                         if (Spot::dup_find(@spot[0..4,7])) {
311                                 my $s = exists $pc11_saved{$key} ? " stored $key removed" : "";
312                                 dbg("PCPROT: Duplicate Spot $self->{call}: PC11$s, recurse: $recurse, ignored\n") if isdbg('chanerr') || isdbg('dupespot') || isdbg('pc11');
313                                 delete $pc11_saved{$key};
314                                 return;
315                         }
316
317
318                         # If we have an ip address we can promote by route
319                         if ($r && $r->ip) {
320                                 $pcno = 61;
321                                 $pc->[0] = 'PC61';
322                                 my $hops = $pc->[8];
323                                 $pc->[8] = $spot[14] = $r->ip;
324                                 ++$rpc11_to_61;
325                                 my $percent = $pc11_rx ? $rpc11_to_61 * 100 / $pc11_rx : 0;
326                                 dbg(sprintf("PROMOTED $self->{call}: ROUTE pc11 $key PROMOTED to pc61 with IP $spot[14] pc61: $pc61_rx pc11: $pc11_rx route->pc61 $rpc11_to_61 (%0.1f%%)", $percent)) if isdbg("pc11");
327                                 $line = join '^', @$pc, $hops, '~';
328
329                                 # update the stats (NOTE, thie record was a PC11, it has now become a PC61
330                                 # this is NOT the same choosing a better PC61, that is a separate record. 
331                                 ++$pc11_rx;             # 'cos we received as a PC11 it and it won't be a pc11 anymore 
332                                 --$pc61_rx;             # 'cos we'll increment it later as it's now a pc61, no double counting
333                                 
334 #                               dbg("CHANGED saved key: $key PC11 line to $line") if isdbg('pc11');
335                                 delete $pc11_saved{$key};
336                         }
337
338                         # if it is STILL (despite all efforts to change it) a PC11
339                         # save it and wait - it will be called from pc11_process
340                         if ($pcno == 11) {
341                                 $pc11_saved{$key} = [$main::systime, $self, $pcno, $line, $origin, $pc];
342                                 dbg("WAITING $self->{call}: NEW $pc->[0] spot $key waiting for a better offer") if isdbg("pc11");
343                                 return;
344                         }
345                 }
346         }
347         
348         # this goes after the input filtering, but before the add
349         # so that if it is input filtered, it isn't added to the dup
350         # list. This allows it to come in from a "legitimate" source
351         #
352         ## NOTE: this is where we insert the spot into the DXDupe cache
353         #
354         if (Spot::dup(@spot[0..4,7])) {
355                 dbg("PCPROT: Duplicate Spot  $self->{call}: $pc->[0] $key ignored\n") if isdbg('chanerr') || isdbg('dupespot') || isdbg('pc11');
356                 return;
357         }
358
359         dbg("PROCESSING $self->{call}: $pc->[0] key: $key") if isdbg('pc11');
360         
361         if ($pcno == 11) {
362                 ++$pc11_rx;
363         } else {
364                 ++$pc61_rx;
365         }
366
367         # we check IP addresses for PC61 - this will also dedupe PC11 promotions
368         if (@$pc > 8 && is_ipaddr($pc->[8])) {
369                 my $ip = $pc->[8];
370                 $ip =~ s/,/:/g;
371                 $ip =~ s/^::ffff://;
372                 if (DXCIDR::find($ip)) {
373                         dbg($line) if isdbg('nologchan');
374                         dbg("PCPROT: PC61 $ip in badip list, dropped");
375                         return;
376                 }
377         }
378         
379         # here we verify the spotter is currently connected to the node it says it is one. AKA email sender verify
380         # but without the explicit probe to the node. We are relying on "historical" information, but it very likely
381         # to be current once we have seen the first PC92C from that node.
382         #
383         # As for spots generated from non-PC92 nodes, we'll see after about  do_pc9x3h20m...
384         #
385         if ($senderverify) {
386                 my $nroute = Route::Node::get($pc->[7]);
387                 my $uroute = Route::Node::get($pc->[6]);
388                 my $local = DXChannel::get($pc->[7]);
389                 
390                 if ($nroute && ($nroute->last_PC92C || ($local && !$local->do_pc9x))) {
391                         my $s = '';
392                         my $ip = $pcno == 61 ?  $pc->[8] : '';
393 #                       $s .= "User $pc->[6] not logged in, " unless $uroute;
394                         $s .= "User $pc->[6] not on node $pc->[7], " unless $nroute->is_user($pc->[6]);
395 #                       $s .= "Node $pc->[7] at '$ip' not on Node's IP " . $nroute->ip if $ip && $nroute && $nroute->ip && $nroute->ip ne $ip;
396                         if ($s) {
397                                 my $action = $senderverify > 1 ? ", DUMPED" : '';
398                                 $s =~ s/, $//;
399                                 dbg("PCPROT: Suspicious Spot $pc->[2] on $pc->[1] by $pc->[6]($ip)\@$pc->[7] $s$action");
400                                 return unless $senderverify < 2;
401                         }
402                 }
403         }
404
405         # we until here to do any censorship to try and reduce the amount of noise that repeated copies
406         # from other connected nodes cause
407         if ($censorpc) {
408                 my @bad;
409                 if (@bad = BadWords::check($pc->[5])) {
410                         my $bw = join ', ', @bad;
411                         dbg($line) if isdbg('nologchan');
412                         dbg("PCPROT: Badwords: '$bw', dropped");
413                         return;
414                 }
415         }
416
417         
418         # add it
419         Spot::add(@spot);
420
421         my $ip = '';
422         $ip ||= $spot[14] if exists $spot[14];
423         if (isdbg('progress')) {
424                 my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
425                 $sip ||= '';
426                 my $d = ztime($spot[2]);
427                 my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
428                 $s .= $spot[3] ? " '$spot[3]'" : q{ ''};
429                 $s .=  " route: $origin";
430                 dbg($s);
431         }
432         
433         #
434         # @spot at this point contains:-
435         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
436         # then  spotted itu, spotted cq, spotters itu, spotters cq
437         # you should be able to route on any of these
438         #
439
440         # fix up qra locators of known users
441         my $user = DXUser::get_current($spot[4]);
442         if ($user) {
443                 my $qra = $user->qra;
444                 unless ($qra && is_qra($qra)) {
445                         my $lat = $user->lat;
446                         my $long = $user->long;
447                         if (defined $lat && defined $long) {
448                                 $user->qra(DXBearing::lltoqra($lat, $long));
449                                 $user->put;
450                         }
451                 }
452
453                 # send a remote command to a distant cluster if it is visible and there is no
454                 # qra locator and we havn't done it for a month.
455
456                 unless ($user->qra) {
457                         my $node;
458                         my $to = $user->homenode;
459                         my $last = $user->lastoper || 0;
460                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
461                                 my $cmd = "forward/opernam $spot[4]";
462                                 # send the rcmd but we aren't interested in the replies...
463                                 my $dxchan = $node->dxchan;
464                                 if ($dxchan && $dxchan->is_clx) {
465                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
466                                 } else {
467                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
468                                 }
469                                 if ($to ne $origin) {
470                                         $to = $origin;
471                                         $node = Route::Node::get($to);
472                                         if ($node) {
473                                                 $dxchan = $node->dxchan;
474                                                 if ($dxchan && $dxchan->is_clx) {
475                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
476                                                 } else {
477                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
478                                                 }
479                                         }
480                                 }
481                                 $user->lastoper($main::systime);
482                                 $user->put;
483                         }
484                 }
485         }
486
487         # local processing
488         if (defined &Local::spot) {
489                 my $r;
490                 eval {
491                         $r = Local::spot($self, @spot);
492                 };
493                 return if $r;
494         }
495
496         # DON'T be silly and send on PC26s!
497         return if $pcno == 26;
498
499         # send out the filtered spots
500         send_dx_spot($self, $line, @spot) if @spot;
501
502         # cancel any recursion as we have now processed it
503         my $count =  $pc11_to_61+$rpc11_to_61;
504         my $percent = ($pc11_rx + $pc61_rx) ? ($pc11_rx * 100) / ($pc11_rx + $pc61_rx) : 0;
505         my $pc11_61 = $pc11_rx ? ($count * 100) / $pc11_rx : 0;
506         my $data = "$pc->[0] key: $key";
507         my $stats = sprintf "pc11: $pc11_rx pc61: $pc61_rx pc11%%: %0.1f%% pc11->pc61: $count(%0.1f%%)", $percent, $pc11_61;
508         if ($recurse) {
509                 if ($pc11_saved{$key}) {
510                         dbg("END $self->{call}: RECURSED $data removed and finished $stats") if isdbg('pc11');
511                         delete $pc11_saved{$key};
512                 } else {
513                         dbg("END $self->{call}: RECURSED NO KEY finished $stats") if isdbg('pc11'); 
514                 }
515                 $recurse = 0;
516         } else {
517                 dbg("END $self->{call}: NORMAL $data finished $stats") if isdbg('pc11');
518         }
519 }
520
521 # used to kick outstanding PC11 if required
522 sub pc11_process
523 {
524         foreach my $key (keys %pc11_saved) {
525                 my $r = $pc11_saved{$key};
526                 if ($main::systime > $r->[0] + $pc11_dwell_time) {
527                         dbg("---") if isdbg("pc11");
528                         dbg("RECURSE $r->[1]->{call}: PC11 spot $key timed out waiting, resend") if isdbg("pc11");
529                         my $self = $r->[1];
530                         delete $pc11_saved{$key};
531                         $self->handle_11(@$r[2..5], 1);
532                 }
533         }
534 }
535
536 # return the pc11 / pc61 / promotions data
537 sub get_pc11_61_stats
538 {
539         my $promotions =  $pc11_to_61+$rpc11_to_61;
540         my $percent = ($pc11_rx + $pc61_rx) ? ($pc11_rx * 100) / ($pc11_rx + $pc61_rx) : 0;
541         my $pc11_61p = $pc11_rx ? ($promotions * 100) / $pc11_rx : 0;
542         return {
543                         pc11_rx => $pc11_rx+0,
544                         pc61_rx => $pc61_rx+0,
545                         pc11_to_61 => $pc11_to_61+0,
546                         rpc11_to_61 => $rpc11_to_61+0,
547                         promotions => $promotions+0,
548                         pc11_percent => $percent+0,
549                         promotions_percent => $pc11_61p+0,
550                    };
551 }
552
553 # announces
554 sub handle_12
555 {
556         my $self = shift;
557         my $pcno = shift;
558         my $line = shift;
559         my $origin = shift;
560         my $pc = shift;
561
562         # announce duplicate checking
563         $pc->[3] =~ s/^\s+//;                   # remove leading blanks
564
565         # if this is a 'nodx' node then ignore it
566         if ($badnode->in($pc->[5])) {
567                 dbg($line) if isdbg('nologchan');
568                 dbg("PCPROT: Bad Node, dropped");
569                 return;
570         }
571
572         # if this is a 'bad spotter' user then ignore it
573         my $nossid = $pc->[1];
574         $nossid =~ s/-\d+$//;
575         if ($badspotter->in($nossid)) {
576                 dbg($line) if isdbg('nologchan');
577                 dbg("PCPROT: Bad Spotter, dropped");
578                 return;
579         }
580
581         # ignore PC12s from origins that use PCxx protocol
582         my $oref = Route::get($origin);
583         if ($oref->do_pc9x) {
584                 dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
585                 return;
586         }
587
588         if ($censorpc) {
589                 my @bad;
590                 if (@bad = BadWords::check($pc->[3])) {
591                         my $bw = join ', ', @bad;
592                         dbg($line) if isdbg('nologchan');
593                         dbg("PCPROT: Badwords: '$bw', dropped");
594                         return;
595                 }
596         }
597
598
599         my $dxchan;
600
601         if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
602                 $self->send_chat(0, $line, @$pc[1..6]);
603         } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
604
605                 # ignore something that looks like a chat line coming in with sysop
606                 # flag - this is a kludge...
607                 if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
608                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
609                         return;
610                 }
611
612                 # here's a bit of fun, convert incoming ann with a callsign in the first word
613                 # or one saying 'to <call>' to a talk if we can route to the recipient
614                 if ($ann_to_talk) {
615                         my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
616                         if ($call) {
617                                 my $ref = Route::get($call);
618                                 if ($ref) {
619                                         $dxchan = $ref->dxchan;
620                                         $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
621                                         return;
622                                 }
623                         }
624                 }
625
626                 # send it
627                 $self->send_announce(0, $line, @$pc[1..6]);
628         } else {
629                 $self->route($pc->[2], $line);
630         }
631
632         # local processing
633         if (defined &Local::ann) {
634                 my $r;
635                 eval {
636                         $r = Local::ann($self, $line, @$pc[1..6]);
637                 };
638                 return if $r;
639         }
640 }
641
642 sub handle_15
643 {
644         my $self = shift;
645         my $pcno = shift;
646         my $line = shift;
647         my $origin = shift;
648         my $pc = shift;
649
650         if (eph_dup($line, $eph_pc15_restime)) {
651                 return;
652         } else {
653                 unless ($self->{isolate}) {
654                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
655                 }
656         }
657 }
658
659 # incoming user
660 sub handle_16
661 {
662         my $self = shift;
663         my $pcno = shift;
664         my $line = shift;
665         my $origin = shift;
666         my $pc = shift;
667
668         # general checks
669         my $dxchan;
670         my $ncall = $pc->[1];
671         my $newline = "PC16^";
672
673         # dos I want users from this channel?
674         unless ($self->user->wantpc16) {
675                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
676                 return;
677         }
678
679         # is it me?
680         if ($ncall eq $main::mycall) {
681                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
682                 return;
683         }
684
685         my $h;
686         $h = 1 if DXChannel::get($ncall);
687         if ($h && $self->{call} ne $ncall) {
688                 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
689                 return;
690         }
691
692         if (eph_dup($line)) {
693                 return;
694         }
695
696         # isolate now means only accept stuff from this call only
697         if ($self->{isolate} && $ncall ne $self->{call}) {
698                 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
699                 return;
700         }
701
702         my $parent = Route::Node::get($ncall);
703
704         if ($parent) {
705                 $dxchan = $parent->dxchan;
706                 if ($dxchan && $dxchan ne $self) {
707                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
708                         return;
709                 }
710
711                 # input filter if required
712                 return unless $self->in_filter_route($parent);
713         } else {
714                 $parent = Route::Node->new($ncall);
715         }
716
717         unless ($h) {
718                 if ($parent->via_pc92) {
719                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
720                         return;
721                 }
722         }
723
724         my $i;
725         my @rout;
726         for ($i = 2; $i < $#$pc; $i++) {
727                 my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
728                 next unless $call && $conf && defined $here && is_callsign($call);
729                 next if $call eq $main::mycall;
730
731                 eph_del_regex("^PC17\\^$call\\^$ncall");
732
733                 $conf = $conf eq '*';
734
735                 # reject this if we think it is a node already
736                 my $r = Route::Node::get($call);
737                 my $u = DXUser::get_current($call) unless $r;
738                 if ($r || ($u && $u->is_node)) {
739                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
740                         next;
741                 }
742
743                 $r = Route::User::get($call);
744                 my $flags = Route::here($here)|Route::conf($conf);
745
746                 if ($r) {
747                         my $au = $r->addparent($parent);
748                         if ($r->flags != $flags) {
749                                 $r->flags($flags);
750                                 $au = $r;
751                         }
752                         push @rout, $r if $h && $au;
753                 } else {
754                         my @ans = $parent->add_user($call, $flags);
755                         push @rout, @ans if $h && @ans;
756                 }
757
758                 # add this station to the user database, if required
759                 my $user = DXUser::get_current($ncall);
760                 $user = DXUser->new($call) unless $user;
761                 $user->homenode($parent->call) if !$user->homenode;
762                 $user->node($parent->call);
763                 $user->lastin($main::systime) unless DXChannel::get($call);
764                 $user->put;
765
766                 # send info to all logged in thingies
767                 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
768                 $self->tell_buddies('loginb', $call, $ncall);
769         }
770         if (@rout) {
771                 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
772 #               $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
773         }
774 }
775
776 # remove a user
777 sub handle_17
778 {
779         my $self = shift;
780         my $pcno = shift;
781         my $line = shift;
782         my $origin = shift;
783         my $pc = shift;
784
785         my $dxchan;
786         my $ncall = $pc->[2];
787         my $ucall = $pc->[1];
788
789         eph_del_regex("^PC16\\^$ncall.*$ucall");
790
791         # do I want users from this channel?
792         unless ($self->user->wantpc16) {
793                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
794                 return;
795         }
796
797         if ($ncall eq $main::mycall) {
798                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
799                 return;
800         }
801
802         # isolate now means only accept stuff from this call only
803         if ($self->{isolate} && $ncall ne $self->{call}) {
804                 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
805                 return;
806         }
807
808         my $uref = Route::User::get($ucall);
809         unless ($uref) {
810                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
811                 return;
812         }
813         my $parent = Route::Node::get($ncall);
814         unless ($parent) {
815                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
816                 return;
817         }
818
819         $dxchan = DXChannel::get($ncall);
820         if ($dxchan && $dxchan ne $self) {
821                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
822                 return;
823         }
824
825         unless ($dxchan) {
826                 if ($parent->via_pc92) {
827                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
828                         return;
829                 }
830         }
831
832         if (DXChannel::get($ucall)) {
833                 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
834                 return;
835         }
836
837         # input filter if required and then remove user if present
838 #               return unless $self->in_filter_route($parent);
839         $parent->del_user($uref);
840
841         # send info to all logged in thingies
842         my $user = DXUser::get_current($ncall);
843         $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
844         $self->tell_buddies('logoutb', $ucall, $ncall);
845
846         if (eph_dup($line)) {
847                 return;
848         }
849
850         $self->route_pc17($origin, $line, $parent, $uref);
851 #       $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
852 }
853
854 # link request
855 sub handle_18
856 {
857         my $self = shift;
858         my $pcno = shift;
859         my $line = shift;
860         my $origin = shift;
861         my $pc = shift;
862
863         $self->state('init');
864
865         my $parent = Route::Node::get($self->{call});
866
867         my ($software, $version, $build) = (undef, 0, 0);
868          
869         # record the type and version offered
870         if (($software, $version) = $pc->[1] =~ /(DXSpider|CC\s*Cluster)\s+Version: (\d+(?:\.\d+)?)/i) {
871                 $version += 0;
872                 $version += 53 if $version < 6;
873                 $self->{version} = $version;
874                 $self->user->version($version);
875                 $parent->version($version);
876                 my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
877                 $build += 0;
878                 $build = 0 unless $build > 1;
879                 $self->{build} = $build;
880                 $self->user->build($build);
881                 $parent->build($build);
882                 dbg("$self->{call} = $software version $version build $build");
883                 unless ($self->is_spider) {
884                         dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
885                         $self->user->sort('S');
886                         $self->user->put;
887                         $self->sort('S');
888                 }
889 #               $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
890         } elsif (($software, $version, $build) = $pc->[1] =~ /(AR-Cluster)\s+Version:\s+(\d+\.\d+).?(\d+\.\d+)?/) {
891                 dbg("$self->{call} = $software version $version build $build");
892                 $self->{version} = $version;
893                 $self->user->version($version);
894                 $parent->version($version);
895                 $self->{build} = $build;
896                 $self->user->build($build);
897                 $parent->build($build);
898                 unless ($self->is_arcluster) {
899                         dbg("Change U " . $self->user->sort . " C $self->{sort} -> R");
900                         $self->user->sort('R');
901                         $self->user->put;
902                         $self->sort('R');
903                 }
904         } else {
905                 dbg("$self->{call} = Unknown software ($pc->[1] $pc->[2])");
906                 $self->version(50.0);
907                 $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
908                 $self->user->version($self->version);
909         }
910
911         if ($pc->[1] =~ /CC\s*Cluster/i || $pc->[1] =~ /\bpc9x/i) {
912                 if ($self->{isolate}) {
913                         dbg("$self->{call} pc9x recognised, but node is isolated, using old protocol");
914                 } elsif (!$self->user->wantpc9x) {
915                         dbg("$self->{call} pc9x explicitly switched off, using old protocol");
916                 } else {
917                         $self->{do_pc9x} = 1;
918                         dbg("$self->{call} Set do PC9x");
919                 }
920         }
921
922         # first clear out any nodes on this dxchannel
923         my @rout = $parent->del_nodes;
924         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
925         $self->send_local_config();
926         $self->send(pc20());
927 }
928
929 sub check_add_user
930 {
931         my $call = shift;
932         my $type = shift;
933         my $homenode = shift;
934
935         # add this station to the user database, if required (don't remove SSID from nodes)
936         my $user = DXUser::get_current($call);
937         unless ($user) {
938                 $user = DXUser->new($call);
939                 $user->sort($type || 'U');
940                 if ($user->is_node) {
941                         $user->priv(1);         # I have relented and defaulted nodes
942                         $user->lockout(1) if $user->is_node;
943                 } else {
944                         $user->homenode($homenode) if $homenode;
945                         $user->node($homenode);
946                         $user->priv(0);
947                 }
948                 $user->lastin($main::systime); # this make it last longer than just this invocation
949                 $user->put;                             # just to make sure it gets written away!!!
950                 dbg("DXProt: PC92 new user record for $call created");
951         }
952
953         # this is to fix a problem I introduced some build ago by using this function for users
954         # whereas it was only being used for nodes.
955         if ($user->is_user && $user->lockout && ($user->priv // 0) == 1) {
956                 $user->priv(0);
957                 $user->lockout(0);
958                 dbg("DXProt: PC92 user record for $call depriv'd and unlocked");
959                 $user->put;
960         }
961         return $user;
962 }
963
964 # incoming cluster list
965 sub handle_19
966 {
967         my $self = shift;
968         my $pcno = shift;
969         my $line = shift;
970         my $origin = shift;
971         my $pc = shift;
972
973         my $i;
974         my $newline = "PC19^";
975
976         # new routing list
977         my (@rout, @pc92out);
978
979         # first get the INTERFACE node
980         my $parent = Route::Node::get($self->{call});
981         unless ($parent) {
982                 dbg("PCPROT: my parent $self->{call} has disappeared");
983                 $self->disconnect;
984                 return;
985         }
986
987         my $h;
988
989         # parse the PC19
990         #
991         # We are making a major change from now on. We are only going to accept
992         # PC19s from directly connected nodes.  This means that we are probably
993         # going to throw away most of the data that we are being sent.
994         #
995         # The justification for this is that most of it is wrong or out of date
996         # anyway.
997         #
998         # From now on we are only going to believe PC92 data and locally connected
999         # non-pc92 nodes.
1000         #
1001         for ($i = 1; $i < $#$pc-1; $i += 4) {
1002                 my $here = $pc->[$i];
1003                 my $call = uc $pc->[$i+1];
1004                 my $conf = $pc->[$i+2];
1005                 my $ver = $pc->[$i+3];
1006                 next unless defined $here && defined $conf && is_callsign($call);
1007
1008                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
1009
1010                 # check for sane parameters
1011                 #                               $ver = 5000 if $ver eq '0000';
1012                 next unless $ver && $ver =~ /^\d+$/;
1013                 next if $ver < 5000;    # only works with version 5 software
1014                 next if length $call < 3; # min 3 letter callsigns
1015                 next if $call eq $main::mycall || $call eq $main::myalias;
1016
1017                 # check that this PC19 isn't trying to alter the wrong dxchan
1018                 $h = 0;
1019                 my $dxchan = DXChannel::get($call);
1020                 if ($dxchan) {
1021                         if ($dxchan == $self) {
1022                                 $h = 1;
1023                         } else {
1024                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
1025                                 next;
1026                         }
1027                 }
1028
1029                 # isolate now means only accept stuff from this call only
1030                 if ($self->{isolate} && $call ne $self->{call}) {
1031                         dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
1032                         next;
1033                 }
1034
1035                 my $user = check_add_user($call, 'A');
1036
1037 #               if (eph_dup($genline)) {
1038 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
1039 #                       next;
1040 #               }
1041
1042
1043                 unless ($h) {
1044                         if ($parent->via_pc92) {
1045                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
1046                                 next;
1047                         }
1048                 }
1049
1050                 my $r = Route::Node::get($call);
1051                 my $flags = Route::here($here)|Route::conf($conf);
1052
1053                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1054                 if ($r) {
1055                         my $ar;
1056                         if ($call ne $parent->call) {
1057                                 if ($self->in_filter_route($r)) {
1058                                         $ar = $parent->add($call, $ver, $flags);
1059 #                                       push @rout, $ar if $ar;
1060                                 } else {
1061                                         next;
1062                                 }
1063                         }
1064                         if ($r->version ne $ver || $r->flags != $flags) {
1065                                 $r->version($ver);
1066                                 $r->flags($flags);
1067                         }
1068                         push @rout, $r;
1069                 } else {
1070                         if ($call eq $self->{call} || $user->wantroutepc19) {
1071                                 my $new = Route->new($call); # throw away
1072                                 if ($self->in_filter_route($new)) {
1073                                         my $ar = $parent->add($call, $ver, $flags);
1074                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1075                                         push @rout, $ar if $ar;
1076                                         push @pc92out, $r if $h;
1077                                 } else {
1078                                         next;
1079                                 }
1080                         }
1081                 }
1082
1083                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1084                 my $mref = DXMsg::get_busy($call);
1085                 $mref->stop_msg($call) if $mref;
1086
1087                 $user->lastin($main::systime) unless DXChannel::get($call);
1088                 $user->put;
1089         }
1090
1091         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
1092         # but remember there will only be one (pair) these because any extras will be
1093         # thrown away.
1094         if (@rout) {
1095 #               $self->route_pc21($self->{call}, $line, @rout);
1096                 $self->route_pc19($self->{call}, $line, @rout);
1097         }
1098         if (@pc92out && !$pc92_slug_changes) {
1099                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
1100         }
1101 }
1102
1103 # send local configuration
1104 sub handle_20
1105 {
1106         my $self = shift;
1107         my $pcno = shift;
1108         my $line = shift;
1109         my $origin = shift;
1110         my $pc = shift;
1111
1112         if ($self->{do_pc9x} && $self->{state} ne 'init92' && $self->{state} ne 'normal') {
1113                 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
1114                 $self->{do_pc9x} = 0;
1115         }
1116         $self->send_local_config;
1117         $self->send(pc22());
1118         $self->state('normal');
1119         $self->{lastping} = 0;
1120         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1121 }
1122
1123 # delete a cluster from the list
1124 #
1125 # This should never occur for directly connected nodes.
1126 #
1127 sub handle_21
1128 {
1129         my $self = shift;
1130         my $pcno = shift;
1131         my $line = shift;
1132         my $origin = shift;
1133         my $pc = shift;
1134
1135         my $call = uc $pc->[1];
1136
1137         eph_del_regex("^PC1[679].*$call");
1138
1139         # if I get a PC21 from the same callsign as self then ignore it
1140         if ($call eq $self->{call}) {
1141                 dbg("PCPROT: self referencing PC21 from $self->{call}");
1142                 return;
1143         }
1144
1145         # for the above reason and also because of the check for PC21s coming
1146         # in for self->call from outside being ignored further down
1147         # we don't need any isolation code here, because we will never
1148         # act on a PC21 with self->call in it.
1149
1150         my $parent = Route::Node::get($self->{call});
1151         unless ($parent) {
1152                 dbg("PCPROT: my parent $self->{call} has disappeared");
1153                 $self->disconnect;
1154                 return;
1155         }
1156
1157         my @rout;
1158
1159         if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
1160                 my $node = Route::Node::get($call);
1161                 if ($node) {
1162
1163                         if ($node->via_pc92) {
1164                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
1165                                 return;
1166                         }
1167
1168                         my $dxchan = DXChannel::get($call);
1169                         if ($dxchan && $dxchan != $self) {
1170                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
1171                                 return;
1172                         }
1173
1174                         # input filter it
1175                         return unless $self->in_filter_route($node);
1176
1177                         # routing objects, force a PC21 if it is local
1178                         push @rout, $node->del($parent);
1179                         push @rout, $call if $dxchan && @rout == 0;
1180                 }
1181         } else {
1182                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
1183                 return;
1184         }
1185
1186         if (eph_dup($line)) {
1187                 return;
1188         }
1189
1190         if (@rout) {
1191                 $self->route_pc21($origin, $line, @rout);
1192 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
1193         }
1194 }
1195
1196
1197 sub handle_22
1198 {
1199         my $self = shift;
1200         my $pcno = shift;
1201         my $line = shift;
1202         my $origin = shift;
1203         my $pc = shift;
1204
1205         if ($self->{do_pc9x}) {
1206                 if ($self->{state} ne 'init92' && $self->{state} ne 'normal') {
1207                         $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
1208                         $self->{do_pc9x} = 0;
1209                 }
1210         }
1211         $self->{lastping} = 0;
1212         $self->state('normal');
1213         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1214 }
1215
1216 # WWV info
1217 sub handle_23
1218 {
1219         my $self = shift;
1220         my $pcno = shift;
1221         my $line = shift;
1222         my $origin = shift;
1223         my $pc = shift;
1224
1225         # route foreign' pc27s
1226         if ($pcno == 27) {
1227                 if ($pc->[8] ne $main::mycall) {
1228                         $self->route($pc->[8], $line);
1229                         return;
1230                 }
1231         }
1232
1233
1234         # do some de-duping
1235         my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
1236         my $sfi = unpad($pc->[3]);
1237         my $k = unpad($pc->[4]);
1238         my $i = unpad($pc->[5]);
1239         my ($r) = $pc->[6] =~ /R=(\d+)/;
1240         $r = 0 unless $r;
1241         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1242                 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
1243                 return;
1244         }
1245
1246         # global wwv filtering on INPUT
1247         my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
1248         if ($self->{inwwvfilter}) {
1249                 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
1250                 unless ($filter) {
1251                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1252                         return;
1253                 }
1254         }
1255         $pc->[7] =~ s/-\d+$//o;         # remove spotter's ssid
1256         if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
1257                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1258                 return;
1259         }
1260
1261         # note this only takes the first one it gets
1262         Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1263         dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
1264
1265         if (defined &Local::wwv) {
1266                 my $rep;
1267                 eval {
1268                         $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1269                 };
1270                 return if $rep;
1271         }
1272
1273         # DON'T be silly and send on PC27s!
1274         return if $pcno == 27;
1275
1276         # broadcast to the eager world
1277         send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1278 }
1279
1280 # set here status
1281 sub handle_24
1282 {
1283         my $self = shift;
1284         my $pcno = shift;
1285         my $line = shift;
1286         my $origin = shift;
1287         my $pc = shift;
1288
1289         my $call = uc $pc->[1];
1290         my ($nref, $uref);
1291         $nref = Route::Node::get($call);
1292         $uref = Route::User::get($call);
1293         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1294
1295         if (eph_dup($line)) {
1296                 return;
1297         }
1298
1299         $nref->here($pc->[2]) if $nref;
1300         $uref->here($pc->[2]) if $uref;
1301         my $ref = $nref || $uref;
1302         return unless $self->in_filter_route($ref);
1303
1304         $self->route_pc24($origin, $line, $ref, $pc->[3]);
1305 }
1306
1307 # merge request
1308 sub handle_25
1309 {
1310         my $self = shift;
1311         my $pcno = shift;
1312         my $line = shift;
1313         my $origin = shift;
1314         my $pc = shift;
1315
1316         if ($pc->[1] ne $main::mycall) {
1317                 $self->route($pc->[1], $line);
1318                 return;
1319         }
1320         if ($pc->[2] eq $main::mycall) {
1321                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1322                 return;
1323         }
1324
1325         Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1326
1327         # spots
1328         if ($pc->[3] > 0) {
1329                 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1330                 my $in;
1331                 foreach $in (@in) {
1332                         $self->send(pc26(@{$in}[0..4], $pc->[2]));
1333                 }
1334         }
1335
1336         # wwv
1337         if ($pc->[4] > 0) {
1338                 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1339                 my $in;
1340                 foreach $in (@in) {
1341                         $self->send(pc27(@{$in}[0..5], $pc->[2]));
1342                 }
1343         }
1344 }
1345
1346 sub handle_26 {goto &handle_11}
1347 sub handle_27 {goto &handle_23}
1348
1349 # mail/file handling
1350 sub handle_28
1351 {
1352         my $self = shift;
1353         my $pcno = shift;
1354         my $line = shift;
1355         my $origin = shift;
1356         my $pc = shift;
1357
1358         if ($pc->[1] eq $main::mycall) {
1359                 no strict 'refs';
1360                 my $sub = "DXMsg::handle_$pcno";
1361                 &$sub($self, @$pc);
1362         } else {
1363                 $self->route($pc->[1], $line) unless $self->is_clx;
1364         }
1365 }
1366
1367 sub handle_29 {goto &handle_28}
1368 sub handle_30 {goto &handle_28}
1369 sub handle_31 {goto &handle_28}
1370 sub handle_32 {goto &handle_28}
1371 sub handle_33 {goto &handle_28}
1372
1373 sub handle_34
1374 {
1375         my $self = shift;
1376         my $pcno = shift;
1377         my $line = shift;
1378         my $origin = shift;
1379         my $pc = shift;
1380
1381         if (eph_dup($line, $eph_pc34_restime)) {
1382                 return;
1383         } else {
1384                 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1385         }
1386 }
1387
1388 # remote command replies
1389 sub handle_35
1390 {
1391         my $self = shift;
1392         my $pcno = shift;
1393         my $line = shift;
1394         my $origin = shift;
1395         my $pc = shift;
1396
1397         eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1398         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1399 }
1400
1401 sub handle_36 {goto &handle_34}
1402
1403 # database stuff
1404 sub handle_37
1405 {
1406         my $self = shift;
1407         my $pcno = shift;
1408         my $line = shift;
1409         my $origin = shift;
1410         my $pc = shift;
1411
1412         if ($pc->[1] eq $main::mycall) {
1413                 no strict 'refs';
1414                 my $sub = "DXDb::handle_$pcno";
1415                 &$sub($self, @$pc);
1416         } else {
1417                 $self->route($pc->[1], $line) unless $self->is_clx;
1418         }
1419 }
1420
1421 # node connected list from neighbour
1422 sub handle_38
1423 {
1424         my $self = shift;
1425         my $pcno = shift;
1426         my $line = shift;
1427         my $origin = shift;
1428         my $pc = shift;
1429 }
1430
1431 # incoming disconnect
1432 sub handle_39
1433 {
1434         my $self = shift;
1435         my $pcno = shift;
1436         my $line = shift;
1437         my $origin = shift;
1438         my $pc = shift;
1439
1440         if ($pc->[1] eq $self->{call}) {
1441                 $self->disconnect(1);
1442         } else {
1443                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1444         }
1445 }
1446
1447 sub handle_40 {goto &handle_28}
1448
1449 # user info
1450 sub handle_41
1451 {
1452         my $self = shift;
1453         my $pcno = shift;
1454         my $line = shift;
1455         my $origin = shift;
1456         my $pc = shift;
1457
1458         my $call = $pc->[1];
1459         my $sort = $pc->[2];
1460         my $val = $pc->[3];
1461
1462         my $l = "PC41^$call^$sort";
1463         if (eph_dup($l, $eph_info_restime)) {
1464                 return;
1465         }
1466
1467         # input filter if required
1468         #                       my $ref = Route::get($call) || Route->new($call);
1469         #                       return unless $self->in_filter_route($ref);
1470
1471         if ($val eq $sort || $val =~ /^\s*$/) {
1472                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1473                 return;
1474         }
1475
1476         if ($call eq $main::mycall || $call eq $main::myalias) {
1477                 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1478                 return;
1479         }
1480         my $chan = DXChannel::get($call);
1481         if ($chan) {
1482                 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1483                 return;
1484         }
1485
1486         # add this station to the user database, if required
1487         my $user = DXUser::get_current($call);
1488         $user = DXUser->new($call) unless $user;
1489
1490         if ($sort == 1) {
1491                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1492                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1493                         return;
1494                 }
1495                 $user->name($val);
1496         } elsif ($sort == 2) {
1497                 $user->qth($val);
1498         } elsif ($sort == 3) {
1499                 if (is_latlong($val)) {
1500                         my ($lat, $long) = DXBearing::stoll($val);
1501                         $user->lat($lat) if $lat;
1502                         $user->long($long) if $long;
1503                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1504                 } else {
1505                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1506                         return;
1507                 }
1508         } elsif ($sort == 4) {
1509                 $user->homenode($val);
1510         } elsif ($sort == 5) {
1511                 if (is_qra(uc $val)) {
1512                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1513                         $user->lat($lat) if $lat && !$user->lat;
1514                         $user->long($long) if $long && !$user->long;
1515                         $user->qra(uc $val);
1516                 } else {
1517                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1518                         return;
1519                 }
1520         }
1521         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1522         $user->put;
1523
1524         unless ($self->{isolate}) {
1525                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1526         }
1527
1528         #  perhaps this IS what we want after all
1529         #                       $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1530 }
1531
1532 sub handle_42 {goto &handle_28}
1533
1534
1535 # database
1536 sub handle_44 {goto &handle_37}
1537 sub handle_45 {goto &handle_37}
1538 sub handle_46 {goto &handle_37}
1539 sub handle_47 {goto &handle_37}
1540 sub handle_48 {goto &handle_37}
1541
1542 # message and database
1543 sub handle_49
1544 {
1545         my $self = shift;
1546         my $pcno = shift;
1547         my $line = shift;
1548         my $origin = shift;
1549         my $pc = shift;
1550
1551         if (eph_dup($line)) {
1552                 return;
1553         }
1554
1555         if ($pc->[1] eq $main::mycall) {
1556                 DXMsg::handle_49($self, @$pc);
1557         } else {
1558                 $self->route($pc->[1], $line) unless $self->is_clx;
1559         }
1560 }
1561
1562 # keep alive/user list
1563 sub handle_50
1564 {
1565         my $self = shift;
1566         my $pcno = shift;
1567         my $line = shift;
1568         my $origin = shift;
1569         my $pc = shift;
1570
1571         return if (eph_dup($line));
1572
1573         my $call = $pc->[1];
1574
1575         my $node = Route::Node::get($call);
1576         if ($node) {
1577                 return unless $node->call eq $self->{call};
1578                 $node->usercount($pc->[2]) unless $node->users;
1579                 $node->reset_obs;
1580                 $node->PC92C_dxchan($self->call, $pc->[-1]);
1581
1582                 # input filter if required
1583 #               return unless $self->in_filter_route($node);
1584
1585                 unless ($self->{isolate}) {
1586                         DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1587                 }
1588 #               $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1589         }
1590 }
1591
1592 # incoming ping requests/answers
1593 sub handle_51
1594 {
1595         my $self = shift;
1596         my $pcno = shift;
1597         my $line = shift;
1598         my $origin = shift;
1599         my $pc = shift;
1600
1601         my $to = $pc->[1];
1602         my $from = $pc->[2];
1603         my $flag = $pc->[3];
1604
1605         if ($to eq $main::myalias) {
1606                 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1607                 return;
1608         }
1609
1610         # is it for us?
1611         if ($to eq $main::mycall) {
1612                 if ($flag == 1) {
1613                         $self->send(pc51($from, $to, '0'));
1614                 } else {
1615                         DXXml::Ping::handle_ping_reply($self, $from);
1616                 }
1617         } else {
1618                 if (eph_dup($line)) {
1619                         return;
1620                 }
1621                 # route down an appropriate thingy
1622                 $self->route($to, $line);
1623         }
1624 }
1625
1626 sub handle_61 { goto &handle_11; }
1627
1628 # dunno but route it
1629 sub handle_75
1630 {
1631         my $self = shift;
1632         my $pcno = shift;
1633         my $line = shift;
1634         my $origin = shift;
1635         my $pc = shift;
1636
1637         my $call = $pc->[1];
1638         if ($call ne $main::mycall) {
1639                 $self->route($call, $line);
1640         }
1641 }
1642
1643 # WCY broadcasts
1644 sub handle_73
1645 {
1646         my $self = shift;
1647         my $pcno = shift;
1648         my $line = shift;
1649         my $origin = shift;
1650         my $pc = shift;
1651
1652         my $call = $pc->[1];
1653
1654         # do some de-duping
1655         my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1656         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1657                 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1658                 return;
1659         }
1660         $pc = [ map { unpad($_) } @$pc ];
1661         if (WCY::dup($d)) {
1662                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1663                 return;
1664         }
1665
1666         my $wcy = WCY::update($d, @$pc[2..12]);
1667         dbg("WCY: <$pc->[2]> K=$pc->[5] expK=$pc->[6] A=$pc->[4] R=$pc->[7] SFI=$pc->[3] SA=$pc->[8] GMF=$pc->[9] Au=$pc->[10] $pc->[11]\@$pc->[12] route: $origin") if isdbg('progress');
1668
1669         if (defined &Local::wcy) {
1670                 my $rep;
1671                 eval {
1672                         $rep = Local::wcy($self, @$pc[1..12]);
1673                 };
1674                 return if $rep;
1675         }
1676
1677         # broadcast to the eager world
1678         send_wcy_spot($self, $line, $d, @$pc[2..12]);
1679 }
1680
1681 # remote commands (incoming)
1682 sub handle_84
1683 {
1684         my $self = shift;
1685         my $pcno = shift;
1686         my $line = shift;
1687         my $origin = shift;
1688         my $pc = shift;
1689
1690         $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1691 }
1692
1693 # remote command replies
1694 sub handle_85
1695 {
1696         my $self = shift;
1697         my $pcno = shift;
1698         my $line = shift;
1699         my $origin = shift;
1700         my $pc = shift;
1701
1702         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1703 }
1704
1705 # decode a pc92 call: flag call : version : build
1706 sub _decode_pc92_call
1707 {
1708         my $icall = shift;
1709         my @part = split /:/, $icall;
1710         my ($flag, $call) = unpack "A A*", $part[0];
1711         unless (defined $flag && $flag ge '0' && $flag le '7') {
1712                 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1713                 return ();
1714         }
1715         unless ($call && is_callsign($call)) {
1716                 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1717                 return ();
1718         }
1719         my $is_node = $flag & 4;
1720         my $is_extnode = $flag & 2;
1721         my $here = $flag & 1;
1722         my $version = $part[1] || 0;
1723         my $build = $part[2] || 0;
1724         my $ip = $part[3] || '';
1725
1726         # remember that, at this stage, IPV6 addresses have : replaced by ,
1727         if (length $version > 4 && $version =~ /[,\.][\da-f]{1,4}/i) {
1728                 $ip = $version;
1729                 $version = 0;
1730         }
1731         $version =~ s/\D//g;
1732         $version = 0 unless $version && $version =~ /^[0-9]+$/;
1733         $build =~ s/^0\.//;
1734         $build =~ s/\D//g;
1735         $build = 0 unless $build &&  $build =~ /^[0-9]+$/;
1736         if ($ip) {
1737         $ip =~ s/,/:/g;
1738         $ip =~ s/^::ffff://i;
1739                 $ip = '' unless is_ipaddr($ip);
1740     }
1741         dbg("'$icall' = '" . join("', '", $call, $is_node, $is_extnode, $here, $version, $build, $ip) . "'") if isdbg('pc92');
1742         return ($call, $is_node, $is_extnode, $here, $version+0, $build+0, $ip);
1743 }
1744
1745 # decode a pc92 call: flag call : version : build
1746 sub _encode_pc92_call
1747 {
1748         my $ref = shift;
1749
1750         # plain call or value
1751         return $ref unless ref $ref;
1752
1753         my $ext = shift || 0;
1754         my $flag = 0;
1755         my $call = $ref->call;
1756         my $extra = '';
1757         $flag |= $ref->here ? 1 : 0;
1758         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1759                 $flag |= 4;
1760                 my $dxchan = DXChannel::get($call);
1761                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1762                 if (($ext & 1) && $ref->version) {
1763                         my $version = $ref->version || 1.0;
1764                         $version =  $version * 100 + 5300 if $version < 50;
1765                         $extra .= ":" . $version;
1766                 }
1767         }
1768         if (($ext & 2) && $ref->ip) {
1769                 my $ip = $ref->ip;
1770                 $ip =~ s/:/,/g;
1771                 $extra .= ':' . $ip;
1772         }
1773
1774         return "$flag$call$extra";
1775 }
1776
1777 my %things_add;
1778 my %things_del;
1779
1780 sub _add_thingy
1781 {
1782         my $parent = shift;
1783         my $s = shift;
1784         my $dxchan = shift;
1785         my $hops = shift;
1786
1787         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1788         my @rout;
1789
1790         # remove spurious IPV6 prefix on IPV4 addresses
1791         $build ||= 0;
1792         $version ||= 0;
1793
1794         if ($call) {
1795                 my $ncall = $parent->call;
1796                 if ($ncall ne $call) {
1797                         my $user;
1798                         my $r;
1799
1800                         # normalise call, delete any unnormalised calls in the users file.
1801                         # then ignore this thingy
1802                         my $normcall = normalise_call($call);
1803                         if ($normcall ne $call) {
1804                                 next if DXChannel::get($call);
1805                                 $user = DXUser::get($call);
1806                                 dbg("DXProt::_add_thingy call $call normalised to $normcall, deleting spurious user $call");
1807                                 $user->del if $user;
1808                             $call = $normcall; # this is safe because a route add will ignore duplicates
1809                         }
1810                         
1811                         if ($is_node) {
1812                                 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1813                                 $user = check_add_user($call, 'A');
1814                                 @rout = $parent->add($call, $version, Route::here($here), $ip);
1815                                 $r = Route::Node::get($call);
1816                                 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1817                                 if ($version && is_numeric($version) && !$r->K && !$user->K) {
1818                                         my $old = $user->sort;
1819                                         if ($user->is_ak1a && (($version >= 5455 &&  $build > 0) || ($version >= 3000 && $version <= 3500)) ) {
1820                                                 $user->sort('S');
1821                                                 dbg("PCPROT::_add_thingy node $call v: $version b: $build sort ($old) updated to " . $user->sort);
1822                                         } elsif ($user->is_spider && ($version < 3000 || ($version > 4000 && $version < 5455))) {
1823                                                 unless ($version > 0  && $build == 0) {
1824                                                         $user->sort('A');
1825                                                         $build ||= 0;
1826                                                         dbg("PCPROT::_add_thingy node $call v: $version b: $build sort ($old) downgraded to " . $user->sort);
1827                                                 }
1828                                         }
1829                                 }
1830                                 $r->version($user->version) if $user->version;
1831                                 $r->build($user->build) if $user->build;
1832                                 $r->K(1) if $user->K;
1833                         } else {
1834                                 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1835                                 $user = check_add_user($call, 'U', $parent->call);
1836                                 @rout = $parent->add_user($call, Route::here($here), $ip);
1837                                 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1838                                 $r = Route::User::get($call);
1839                         }
1840                         if ($ip) {
1841                                 $r->ip($ip);
1842                                 Log('DXProt', "PC92A $call -> $ip on $ncall");
1843                         }
1844                         if ($pc92_slug_changes && $parent == $main::routeroot) {
1845                                 $things_add{$call} = Route::get($call);
1846                                 delete $things_del{$call};
1847                         }
1848                         $user->close($main::systime, $ip) if $user;             # this just updates lastseen and the connlist list containing the IP address
1849                 } else {                                
1850                         dbgprintring(10) if isdbg('nologchan');
1851                         dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1852                 }
1853         }
1854         
1855         return @rout;
1856 }
1857
1858 sub _del_thingy
1859 {
1860         my $parent = shift;
1861         my $s = shift;
1862         my $dxchan = shift;
1863         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1864         my @rout;
1865         if ($call) {
1866                 my $ref;
1867                 if ($is_node) {
1868                         $ref = Route::Node::get($call);
1869                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1870                         @rout = $ref->del($parent) if $ref;
1871                 } else {
1872                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1873                         $ref = Route::User::get($call);
1874                         if ($ref) {
1875                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1876                                 @rout = $parent->del_user($ref);
1877                         }
1878                 }
1879                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1880                         $things_del{$call} = $ref unless exists $things_add{$call};
1881                         delete $things_add{$call};
1882                 }
1883         }
1884         return @rout;
1885 }
1886
1887 # this will only happen if we are slugging changes and
1888 # there are some changes to be sent, it will create an add or a delete
1889 # or both
1890 sub gen_pc92_changes
1891 {
1892         my @add = values %things_add;
1893         my @del = values %things_del;
1894         return (\@add, \@del);
1895 }
1896
1897 sub clear_pc92_changes
1898 {
1899         %things_add = %things_del = ();
1900         $last_pc92_slug = $main::systime;
1901 }
1902
1903 my $_last_time;
1904 my $_last_occurs;
1905 my $_last_pc9x_id;
1906
1907 sub last_pc9x_id
1908 {
1909         return $_last_pc9x_id;
1910 }
1911
1912 sub gen_pc9x_t
1913 {
1914         if (!$_last_time || $_last_time != $main::systime) {
1915                 $_last_time = $main::systime;
1916                 $_last_occurs = 0;
1917                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1918         } else {
1919                 $_last_occurs++;
1920                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1921         }
1922 }
1923
1924 sub check_pc9x_t
1925 {
1926         my $call = shift;
1927         my $t = shift;
1928         my $pc = shift;
1929         my $create = shift;
1930
1931         # check that the time is between 0 >= $t < 86400
1932         unless ($t >= 0 && $t < 86400) {
1933                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1934                 return undef;
1935         }
1936
1937         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1938         my $now = $main::systime - $main::systime_daystart ;
1939         my $diff = abs($now - $t);
1940         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1941                 my $c = ref $call ? $call->call : $call;
1942                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1943                 return undef;
1944         }
1945
1946         my $parent = ref $call ? $call : Route::Node::get($call);
1947         if ($parent) {
1948                 # we only do this for external calls whose routing table
1949                 # record come and go. The reference for mycall is permanent
1950                 # and not that frequently used, it also never times out, so
1951                 # the id on it is completely unreliable. Besides, only commands
1952                 # originating on this box will go through this code...
1953                 if ($parent->call ne $main::mycall) {
1954                         my $lastid = $parent->lastid;
1955                         if (defined $lastid) {
1956                                 if ($t < $lastid) {
1957                                         # note that this is where we determine whether this pc9x has come in yesterday
1958                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1959                                         # duplicate sentence. To determine this we need to do some module 86400
1960                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1961                                         # low numbers that it is a new sentence.
1962                                         #
1963                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1964                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1965                                         # 86378 respectively in the calculation below).
1966                                         #
1967                                         if ($t+86400-$lastid > $pc9x_past_age) {
1968                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1969                                                 return undef;
1970                                         }
1971                                 } elsif ($t == $lastid) {
1972                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1973                                         return undef;
1974                                 } else {
1975                                         # check that if we have a low number in lastid that yesterday's numbers
1976                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1977                                         if ($lastid+86400-$t < $pc9x_past_age) {
1978                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1979                                                 return undef;
1980                                         }
1981                                 }
1982                         }
1983                 }
1984         } elsif ($create) {
1985                 $parent = Route::Node->new($call);
1986         } else {
1987                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1988                 return undef;
1989         }
1990         if (isdbg('pc92dedupe')) {
1991                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1992                 my $val = $parent->{lastid};
1993                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1994                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1995         }
1996         $parent->lastid($t);
1997
1998         return $parent;
1999 }
2000
2001 sub pc92_handle_first_slot
2002 {
2003         my $self = shift;
2004         my $slot = shift;
2005         my $parent = shift;
2006         my $t = shift;
2007         my $hops = shift;
2008         my $oparent = $parent;
2009
2010         my @radd;
2011
2012         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
2013         if ($call && $is_node) {
2014                 if ($call eq $main::mycall) {
2015                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::mycall ($main::mycall), ignored");
2016                         return;
2017                 }
2018                 if ($call eq $main::myalias) {
2019                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::myalias ($main::myalias), ignored");
2020                         return;
2021                 }
2022                 # this is only accepted from my "self".
2023                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
2024                 # locally connected. Local nodes always take precedence. But we remember the lastid
2025                 # to try to reduce the number of dupe PC92s for this external node.
2026                 if (DXChannel::get($call) && $call ne $self->{call}) {
2027                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
2028                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
2029                         return;
2030                 }
2031                 if ($is_extnode) {
2032                         # reparent to external node (note that we must have received a 'C' or 'A' record
2033                         # from the true parent node for this external before we get one for the this node
2034                         unless ($parent = Route::Node::get($call)) {
2035                                 if ($is_extnode && $oparent) {
2036                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
2037                                         $parent = $radd[0];
2038                                 } else {
2039                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
2040                                         return;
2041                                 }
2042                         }
2043                         $parent = check_pc9x_t($call, $t, 92) || return;
2044                         $parent->via_pc92(1);
2045                         $parent->PC92C_dxchan($self->{call}, $hops);
2046                 }
2047         } else {
2048                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
2049                 return;
2050         }
2051         $parent->here(Route::here($here));
2052         $parent->version($version || $pc19_version) if $version;
2053     $parent->build($build) if $build;
2054         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2055         return ($parent, @radd);
2056 }
2057
2058 # DXSpider routing entries
2059 sub handle_92
2060 {
2061         my $self = shift;
2062         my $pcno = shift;
2063         my $line = shift;
2064         my $origin = shift;
2065         my $pc = shift;
2066
2067         my (@radd, @rdel);
2068
2069         my $pcall = $pc->[1];
2070         my $t = $pc->[2];
2071         my $sort = $pc->[3];
2072         my $hops = $pc->[-1];
2073
2074         # this catches loops of A/Ds
2075 #       if (eph_dup($line, $pc9x_dupe_age)) {
2076 #               return;
2077 #       }
2078
2079         if ($pcall eq $main::mycall) {
2080                 LogDbg('err', "PCPROT: looped back, ignored");
2081                 return;
2082         }
2083
2084         if ($pcall eq $main::myalias) {
2085                 LogDbg('err', "PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored");
2086                 return;
2087         }
2088
2089         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
2090                 if ($self->{isolate}) {
2091                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
2092                         return;
2093                 } elsif (!$self->user->wantpc9x) {
2094                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
2095                         return;
2096                 } else {
2097                         $self->state('init92');
2098                         $self->{do_pc9x} = 1;
2099                         dbg("DXPROT: Do pc9x set on $pcall");
2100                 }
2101         }
2102         unless ($self->{do_pc9x}) {
2103                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2104                 return;
2105         }
2106
2107         # don't create routing entries for D records that don't already exist
2108         # this is what causes all those PC92 loops!
2109         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
2110         my $oparent = $parent;
2111
2112         $parent->do_pc9x(1);
2113         $parent->via_pc92(1);
2114
2115         if ($sort eq 'F' || $sort eq 'R') {
2116
2117                 # this is the route finding section
2118                 # here is where the consequences of the 'find' command
2119                 # are dealt with
2120
2121                 my $from = $pc->[4];
2122                 my $target = $pc->[5];
2123
2124                 if ($sort eq 'F') {
2125                         my $flag;
2126                         my $ref;
2127                         my $dxchan;
2128                         if ($ref = DXChannel::get($target)) {
2129                                 $flag = 1;              # we are directly connected
2130                         } else {
2131                                 $ref = Route::get($target);
2132                                 $dxchan = $ref->dxchan;
2133                                 $flag = 2;
2134                         }
2135                         if ($ref && $flag && $dxchan) {
2136                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
2137                                 return;
2138                         }
2139                 } elsif ($sort eq 'R') {
2140                         if (my $dxchan = DXChannel::get($from)) {
2141                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
2142                         } else {
2143                                 my $ref = Route::get($from);
2144                                 if ($ref) {
2145                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
2146                                         if (@dxchan) {
2147                                                 $_->send($line) for @dxchan;
2148                                         } else {
2149                                                 dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
2150                                         }
2151                                 } else {
2152                                         dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
2153                                 }
2154                         }
2155                         return;
2156                 }
2157
2158         } elsif ($sort eq 'K') {
2159                 $pc92Kin += length $line;
2160
2161                 # remember the last channel we arrived on
2162                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2163
2164                 my @ent = _decode_pc92_call($pc->[4]);
2165
2166                 if (@ent) {
2167                         my $add;
2168
2169                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
2170                         return unless $parent; # dupe
2171                         
2172                         push @radd, $add if $add;
2173                         $parent->reset_obs;
2174                         my $call = $parent->call;
2175                         my $version = $ent[4] || 0;
2176                         my $build = $ent[5] ||  0;
2177                         $build =~ s/^0\.//;
2178                         my $oldbuild = $parent->build || 0;
2179                         my $oldversion = $parent->version || 0;
2180                         my $user = check_add_user($parent->call, 'S');
2181                         my $oldsort = $user->sort // '';
2182
2183                         dbg("PCPROT: PC92 K v: $version ov: $oldversion b: $build ob: $oldbuild pk: " . ($parent->K || '0') . " uk: " . ($user->K || 0)) if isdbg('pc92k');
2184                                 
2185                         if (is_numeric($version) || is_numeric($build)) {
2186                                 my $changed = 0;
2187                                 if (($oldversion ne $version || $build ne $oldbuild)) {
2188                                         dbg("PCPROT: PC92 K node $call updated version: $version (was $oldversion) build: $build (was $oldbuild)");
2189                                         $user->version($parent->version($version));
2190                                         $user->build($parent->build($build));
2191                                         ++$changed;
2192                                 }
2193                                 if ($oldsort ne 'S') {
2194                                         dbg("PCPROT: PC92 K node $call updated sort: $sort (was $oldsort)");
2195                                         $user->sort('S');
2196                                         ++$changed;
2197                                 }
2198                                 unless ($user->K) {
2199                                         dbg("PCPROT: PC92 K node $call updated - marked as PC92 K user");
2200                                         $user->K(1);
2201                                         ++$changed;
2202                                 }
2203                                 $user->put if $changed;
2204                                 $parent->K(1); # mark this as come in on a K
2205                         } else {
2206                                 dbg("DXProt PC92 K version call $call: invalid version: '$version' or build: '$version', ignored");
2207                         }
2208                         dbg("ROUTE: reset obscount on $call now " . $parent->obscount) if isdbg('obscount');
2209                 }
2210         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
2211
2212                 $pc92Ain += length $line if $sort eq 'A';
2213                 $pc92Cin += length $line if $sort eq 'C';
2214                 $pc92Din += length $line if $sort eq 'D';
2215
2216                 # remember the last channel we arrived on
2217                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2218
2219                 # this is the main route section
2220                 # here is where all the routes are created and destroyed
2221
2222                 # cope with missing duplicate node calls in the first slot
2223                 my $me = $pc->[4] || '';
2224                 $me ||= _encode_pc92_call($parent) unless $me ;
2225
2226                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
2227
2228                 if (@ent) {
2229
2230                         # look at the first one which will always be a node of some sort
2231                         # except in the case of 'A' or 'D' in which the $pcall is used
2232                         # otherwise use the node call and update any information
2233                         # that needs to be done.
2234                         my $add;
2235
2236                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
2237                         return unless $parent; # dupe
2238
2239                         shift @ent;
2240                         push @radd, $add if $add;
2241                 }
2242
2243                 # do a pass through removing any references to either mycall
2244                 my @nent;
2245                 for (@ent) {
2246                         my $dxc;
2247                         next unless $_ && @$_;
2248                         if ($_->[0] eq $main::mycall) {
2249                                 dbg("PCPROT: $self->{call} : type $sort $_->[0] refers to me, ignored") if isdbg('route');
2250                                 next;
2251                         }
2252                         if ($_->[0] eq $main::myalias && $_->[1] || $_->[0] eq $main::mycall && $_->[1] == 0) {
2253                                 LogDbg('err',"PCPROT: $self->{call} : type $sort $_->[0] trying to change type to " . $_->[1]?"Node":"User" . ", ignored");
2254                                 next;
2255                         }
2256                         
2257                         push @nent, $_;
2258                 }
2259
2260                 if ($sort eq 'A') {
2261                         for (@nent) {
2262                                 push @radd, _add_thingy($parent, $_, $self, $hops);
2263                         }
2264                 } elsif ($sort eq 'D') {
2265                         for (@nent) {
2266                                 push @rdel, _del_thingy($parent, $_, $self);
2267                         }
2268                 } elsif ($sort eq 'C') {
2269                         my (@nodes, @users);
2270
2271                         # we reset obscounts on config records as well as K records
2272                         $parent->reset_obs;
2273                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2274
2275                         #
2276                         foreach my $r (@nent) {
2277                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
2278                                 if ($r->[0]) {
2279                                         if ($r->[1]) {
2280                                                 push @nodes, $r->[0];
2281                                         } else {
2282                                                 push @users, $r->[0];
2283                                         }
2284                                 } else {
2285                                         dbg("PCPROT: $self->{call} :  pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr') || isdbg('route');
2286                                 }
2287                         }
2288
2289                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
2290
2291                         # add users here
2292                         foreach my $r (@nent) {
2293                                 my $call = $r->[0];
2294                                 if ($call) {
2295                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
2296                                 }
2297                         }
2298                         # del users here
2299                         foreach my $r (@$dnodes) {
2300                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
2301                         }
2302                         foreach my $r (@$dusers) {
2303                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
2304                         }
2305
2306                         # remember this last PC92C for rebroadcast on demand
2307                         $parent->last_PC92C($line);
2308                 } else {
2309                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2310                         return;
2311                 }
2312
2313                 foreach my $r (@rdel) {
2314                         next unless $r;
2315
2316                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2317                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2318                 }
2319                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2320                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2321                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2322                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2323                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2324         }
2325
2326         # broadcast it if we get here (but not if it's an A or D record and pc92_ad_enabled isn't set;
2327         if ($sort eq 'A' || $sort eq 'D') {
2328                 return unless $pc92_ad_enabled;
2329         }
2330         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2331 }
2332
2333 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2334 # might be on two or more nodes at the same time or that there may be more than
2335 # one equal distance neighbour to a node.
2336 #
2337 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2338 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2339 # each and then combined to give a set of dxchans to send the PC9x record down
2340 #
2341 sub find_pc9x_routes
2342 {
2343         my $to = shift;
2344         my $ref = Route::get($to);
2345         my @parent;
2346         my %cand;
2347
2348         if ($ref->isa('Route::User')) {
2349                 my $dxchan = DXChannel::get($to);
2350                 push @parent, $to if $dxchan;
2351                 push @parent, $ref->parents;
2352         } else {
2353                 @parent = $to;
2354         }
2355         foreach my $p (@parent) {
2356                 my $lasthops;
2357                 my @routes = Route::findroutes($p);
2358                 foreach my $r (@routes) {
2359                         $lasthops = $r->[0] unless defined $lasthops;
2360                         if ($r->[0] == $lasthops) {
2361                                 $cand{$r->[1]->call} = $r->[1];
2362                         } else {
2363                                 last;
2364                         }
2365                 }
2366         }
2367         return values %cand;
2368 }
2369
2370 sub handle_93
2371 {
2372         my $self = shift;
2373         my $pcno = shift;
2374         my $line = shift;
2375         my $origin = shift;
2376         my $pc = shift;
2377
2378 #       $self->{do_pc9x} ||= 1;
2379
2380         my $pcall = $pc->[1];                   # this is now checked earlier
2381
2382         # remember that we are converting PC10->PC93 and self will be $main::me if it
2383         # comes from us
2384         unless ($self->{do_pc9x}) {
2385                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2386                 return;
2387         }
2388
2389         my $t = $pc->[2];
2390         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2391
2392         my $to = uc $pc->[3];
2393         my $from = uc $pc->[4];
2394         my $via = uc $pc->[5];
2395         my $text = $pc->[6];
2396         my $onode = uc $pc->[7];
2397         my $ipaddr = $pc->[8];
2398
2399         $onode = undef unless $onode && is_callsign($onode);
2400         $onode //= $pcall;
2401         $ipaddr = undef unless $ipaddr && is_ipaddr($ipaddr);
2402
2403         # this is catch loops caused by bad software ...
2404         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2405                 return;
2406         }
2407
2408         if (isdbg('progress')) {
2409                 my $vs = $via ne '*' ? " via $via" : ''; 
2410                 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2411                 dbg($s);
2412         }
2413
2414         # if this is a 'bad spotter' user then ignore it
2415         my $nossid = $from;
2416         $nossid =~ s/-\d+$//;
2417         if ($badspotter->in($nossid)) {
2418                 dbg($line) if isdbg('nologchan');
2419                 dbg("PCPROT: Bad Spotter, dropped");
2420                 return;
2421         }
2422
2423         # ignore PC93 coming in from outside this node with a target of local
2424         if ($to eq 'LOCAL' && $self != $main::me) {
2425                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2426                 return;
2427         }
2428
2429         # will we allow it at all?
2430         if ($censorpc) {
2431                 my @bad;
2432                 if (@bad = BadWords::check($text)) {
2433                         my $bw = join ', ', @bad;
2434                         dbg($line) if isdbg('nologchan');
2435                         dbg("PCPROT: Badwords: '$bw', dropped");
2436                         return;
2437                 }
2438         }
2439
2440         $self->populate_routing_table($onode, $from, $ipaddr);
2441
2442         # if it is routeable then then treat it like a talk
2443         my $ref = Route::get($to);
2444         if ($ref) {
2445                 my $dxchan;
2446
2447                 # convert to PC10 or local talks where appropriate
2448                 # PC93 capable nodes of the same hop count all get a copy
2449                 # if there is a PC10 node then it will get a copy and that
2450                 # will be it. Hopefully such a node will not figure highly
2451                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2452                 # note that both local and PC93s at the same time are possible if the
2453                 # user on more than one node.
2454                 my @routes = find_pc9x_routes($to);
2455                 my $lasthops;
2456                 foreach $dxchan (@routes) {
2457                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2458                                 if ($dxchan->{do_pc9x}) {
2459                                         $dxchan->send($line);
2460                                 } else {
2461                                         $dxchan->talk($from, $to, $via, $text, $onode);
2462                                 }
2463                         } else {
2464                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2465                         }
2466                 }
2467                 return;
2468
2469         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2470                 # announces
2471                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2472                 my $wx = $to eq 'WX' ? '1' : '0';
2473                 my $local = $via eq 'LOCAL' ? '*' : $via;
2474
2475                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2476                 return if $via eq 'LOCAL';
2477         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2478                 # chat messages really only locally connected users
2479                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2480         }
2481
2482         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2483         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2484 }
2485
2486 # if get here then rebroadcast the thing with its Hop count decremented (if
2487 # there is one). If it has a hop count and it decrements to zero then don't
2488 # rebroadcast it.
2489 #
2490 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2491 #        REBROADCAST!!!!
2492 #
2493
2494 sub handle_default
2495 {
2496         my $self = shift;
2497         my $pcno = shift;
2498         my $line = shift;
2499         my $origin = shift;
2500         my $pc = shift;
2501
2502         unless (eph_dup($line)) {
2503                 if ($pcno >= 90) {
2504                         my $pcall = $pc->[1];
2505                         unless (is_callsign($pcall)) {
2506                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2507                                 return;
2508                         }
2509                         my $t = $pc->[2];
2510                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2511                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2512                 } else {
2513                         unless ($self->{isolate}) {
2514                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2515                         }
2516                 }
2517         }
2518 }
2519
2520 # does what it says on the tin..
2521 sub populate_routing_table
2522 {
2523         my ($self, $node, $user, $ip) = @_;
2524         
2525         my $rn = Route::Node::get($node);
2526         unless ($rn) {
2527                 $rn = Route::Node->new($node);
2528                 dbg("ROUTE $self->{call}: ADD NEW node: $node") if isdbg('pc11');
2529         }
2530
2531         my $ru;
2532         if ($user ne $node) {
2533                 $ru = Route::User::get($user);
2534                 unless ($ru) {
2535                         $rn->add_user($user, 0, undef);
2536                         dbg("ROUTE $self->{call}: ADD NEW user: $user -> $node") if isdbg('pc11');
2537                 }
2538                 $ru = Route::User::get($user);
2539         }
2540         
2541         # Add/Change any IP address info
2542
2543         # as we have a route to a user, if it (or the node) does not exist then create them
2544         # link the user to the node if not already done.
2545         # then add or alter the IP address
2546         if ($ip && is_ipaddr($ip)) {
2547                 my $new = $ip;
2548                 if ($ru) {
2549                         if ($ru->ip ne $new) {
2550                                 if ($ru->ip) {
2551                                         my $old = $ru->ip;
2552                                         $ru->ip($new);
2553                                         dbg("ROUTE $self->{call}: ALTER IP node: $node user: $user old IP: '$old'-> new IP: '$new'") if isdbg('pc11');
2554                                 } else{
2555                                         $ru->ip($new);
2556                                         dbg("ROUTE $self->{call}: NEW IP node: $node user: $user IP: '$new'") if isdbg('pc11');
2557                                 }
2558                         }
2559                 } else {
2560                         dbg("ROUTE $self->{call}: ADD Failed for node $node user $user") if isdbg('pc11');
2561                 }
2562         }
2563 }
2564
2565 1;