$pingint $obscount %pc19list $chatdupeage $chatimportfn
$investigation_int $pc19_version $myprot_version
%nodehops $baddx $badspotter $badnode $censorpc
- $allowzero $decode_dk0wcy $send_opernam @checklist
+ $allowzero $decode_dk0wcy $send_opernam @checklists
$eph_pc15_restime $pc9x_past_age $pc9x_dupe_age
$pc10_dupe_age $pc92_slug_changes $last_pc92_slug
$pc92Ain $pc92Cin $pc92Din $pc92Kin $pc9x_time_tolerance
- $pc92filterdef
+ $pc92filterdef $senderverify
);
$pc9x_dupe_age = 60; # catch loops of circular (usually) D records
$pc10_dupe_age = 45; # just something to catch duplicate PC10->PC93 conversions
-$pc92_slug_changes = 60*5; # slug any changes going outward for this long
-$last_pc92_slug = 0; # the last time we sent out any delayed add or del PC92s
+$pc92_slug_changes = 60*1; # slug any changes going outward for this long
+$last_pc92_slug = time; # the last time we sent out any delayed add or del PC92s
$pc9x_time_tolerance = 15*60; # the time on a pc9x is allowed to be out by this amount
$pc9x_past_age = (122*60)+ # maximum age in the past of a px9x (a config record might be the only
- $pc9x_time_tolerance; # thing a node might send - once an hour and we allow an extra hour for luck)
+$pc9x_time_tolerance; # thing a node might send - once an hour and we allow an extra hour for luck)
# this is actually the partition between "yesterday" and "today" but old.
+
$pc92filterdef = bless ([
# tag, sort, field, priv, special parser
['call', 'c', 0],
['zone', 'nz', 3],
], 'Filter::Cmd');
+our %pc11q;
+# this is a place to park an incoming PC11 in the sure and certain hope that
+# a PC61 will be along soon. This has the side benefit that it will delay a
+# a PC11 for one second - assuming that it is not removed by a PC61 version
# incoming talk commands
sub handle_10
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
# this is to catch loops caused by bad software ...
if (eph_dup($line, $pc10_dupe_age)) {
# will we allow it at all?
if ($censorpc) {
my @bad;
- if (@bad = BadWords::check($_[3])) {
+ if (@bad = BadWords::check($pc->[3])) {
dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
return;
}
# is it for me or one of mine?
my ($from, $to, $via, $call, $dxchan);
- $from = $_[1];
- if ($_[5] gt ' ') {
- $via = $_[2];
- $to = $_[5];
+ $from = $pc->[1];
+ if ($pc->[5] gt ' ') {
+ $via = $pc->[2];
+ $to = $pc->[5];
} else {
- $to = $_[2];
+ $to = $pc->[2];
}
# if this is a 'nodx' node then ignore it
- if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
+ if ($badnode->in($pc->[6]) || ($via && $badnode->in($via))) {
dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
return;
}
# if we are converting announces to talk is it a dup?
if ($ann_to_talk) {
- if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
+ if (AnnTalk::is_talk_candidate($from, $pc->[3]) && AnnTalk::dup($from, $to, $pc->[3])) {
dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
return;
}
}
# convert this to a PC93, coming from mycall with origin set and process it as such
- $main::me->normal(pc93($to, $from, $via, $_[3], $_[6]));
+ $main::me->normal(pc93($to, $from, $via, $pc->[3], $pc->[6]));
}
+my $last;
+
# DX Spot handling
sub handle_11
{
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
# route 'foreign' pc26s
if ($pcno == 26) {
- if ($_[7] ne $main::mycall) {
- $self->route($_[7], $line);
+ if ($pc->[7] ne $main::mycall) {
+ $self->route($pc->[7], $line);
return;
}
}
-# my ($hops) = $_[8] =~ /^H(\d+)/;
+# my ($hops) = $pc->[8] =~ /^H(\d+)/;
# is the spotted callsign blank? This should really be trapped earlier but it
# could break other protocol sentences. Also check for lower case characters.
- if ($_[2] =~ /^\s*$/) {
+ if ($pc->[2] =~ /^\s*$/) {
dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
return;
}
- if ($_[2] =~ /[a-z]/) {
+ if ($pc->[2] =~ /[a-z]/) {
dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
return;
}
# if this is a 'nodx' node then ignore it
- if ($badnode->in($_[7])) {
- dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
+ if ($badnode->in($pc->[7])) {
+ dbg("PCPROT: Bad Node $pc->[7], dropped") if isdbg('chanerr');
return;
}
- # if this is a 'bad spotter' user then ignore it
- my $nossid = $_[6];
+ # if this is a 'bad spotter' or an unknown user then ignore it. BUT if it's got an IP address then allow it through
+ my $nossid = $pc->[6];
$nossid =~ s/-\d+$//;
if ($badspotter->in($nossid)) {
- dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
+ dbg("PCPROT: Bad Spotter $pc->[6], dropped") if isdbg('chanerr');
return;
}
+# unless (is_ipaddr($pc->[8]) || DXUser::get_current($pc->[6])) {
+# dbg("PCPROT: Unknown Spotter $pc->[6], dropped") if isdbg('chanerr');
+# return;
+# }
# convert the date to a unix date
- my $d = cltounix($_[3], $_[4]);
+ my $d = cltounix($pc->[3], $pc->[4]);
# bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
if (!$d || (($pcno == 11 || $pcno == 61) && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
- dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
+ dbg("PCPROT: Spot ignored, invalid date or out of range ($pc->[3] $pc->[4])\n") if isdbg('chanerr');
return;
}
# is it 'baddx'
- if ($baddx->in($_[2]) || BadWords::check($_[2])) {
+ if ($baddx->in($pc->[2]) || BadWords::check($pc->[2])) {
dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
return;
}
# do some de-duping
- $_[5] =~ s/^\s+//; # take any leading blanks off
- $_[2] = unpad($_[2]); # take off leading and trailing blanks from spotted callsign
- if ($_[2] =~ /BUST\w*$/) {
+ $pc->[5] =~ s/^\s+//; # take any leading blanks off
+ $pc->[2] = unpad($pc->[2]); # take off leading and trailing blanks from spotted callsign
+ if ($pc->[2] =~ /BUST\w*$/) {
dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
return;
}
if ($censorpc) {
my @bad;
- if (@bad = BadWords::check($_[5])) {
+ if (@bad = BadWords::check($pc->[5])) {
dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
return;
}
}
- my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $nossid, $_[7], $_[8]);
+ my @spot = Spot::prepare($pc->[1], $pc->[2], $d, $pc->[5], $nossid, $pc->[7], $pc->[8]);
+
# global spot filtering on INPUT
if ($self->{inspotsfilter}) {
my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
}
}
+ # If is a new PC11, store it, releasing the one that is there (if any),
+ # if a PC61 comes along then dump the stored PC11
+ # If there is a different PC11 stored, release that one and store this PC11 instead,
+ my $key = join '|', @spot[0..2,4,7];
+ if (0) {
+
+ if ($pc->[0] eq 'PC11') {
+ my $r = [$main::systime, $key, \@spot, $line, $origin, $pc];
+ if (!$last) {
+ $last = [$main::systime, $key, \@spot, $line, $origin, $pc];
+ dbg("PC11: $origin -> $key stored") if isdbg('pc11');
+ return;
+ } elsif ($key eq $last->[1]) { # same as last one
+ dbg("PC11: $origin -> $key dupe dropped") if isdbg('pc11');
+ return;
+ } else {
+ # it's a different PC11, kick the stored one onward and store this one instead,
+ dbg("PC11: PC11 new $origin -> $key stored, $last->[4] -> $last->[1] passed onward") if isdbg('pc11');
+ @spot = @{$last->[2]};
+ $line = $last->[3];
+ $origin = $last->[4];
+ $pc = $last->[5];
+ $last = $r;
+ }
+ } elsif ($pc->[0] eq 'PC61') {
+ if ($last) {
+ if ($last->[1] eq $key) {
+ # dump $last and proceed with the PC61
+ dbg("PC11: $origin -> $key dropped in favour of PC61") if isdbg('pc11');
+ undef $last;
+ } else {
+ # it's a different spot send out stored pc11
+ dbg("PC11: last $last->[4] -> $last->[1] different PC61 $origin -> $key, send PC11 first ") if isdbg('pc11');
+ $last->[1] = 'new pc61';
+ handle_11($self, 11, $last->[3], $last->[4], $last->[5]);
+ undef $last;
+ dbg("PC11: now process PC61 $origin -> $key") if isdbg('pc11');
+ }
+ }
+ } else {
+ dbg("PC11: Unexpected line '$line' in bagging area (expecting PC61, PC11), ignored");
+ return;
+ }
+
+}
+
# this goes after the input filtering, but before the add
# so that if it is input filtered, it isn't added to the dup
# list. This allows it to come in from a "legitimate" source
if (Spot::dup(@spot[0..4,5])) {
- dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
+ dbg("PCPROT: Duplicate Spot $pc->[0] $key ignored\n") if isdbg('chanerr') || isdbg('dupespot');
return;
}
-
+
# add it
Spot::add(@spot);
+ my $ip = '';
+ $ip ||= $spot[14] if exists $spot[14];
+ if (isdbg('progress')) {
+ my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
+ $sip ||= '';
+ my $d = ztime($spot[2]);
+ my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
+ $s .= $spot[3] ? " '$spot[3]'" : q{ ''};
+ $s .= " route: $origin";
+ dbg($s);
+ }
+
#
# @spot at this point contains:-
# freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
} else {
route(undef, $to, pc34($main::mycall, $to, $cmd));
}
- if ($to ne $_[7]) {
- $to = $_[7];
+ if ($to ne $origin) {
+ $to = $origin;
$node = Route::Node::get($to);
if ($node) {
$dxchan = $node->dxchan;
send_dx_spot($self, $line, @spot) if @spot;
}
+# used to kick outstanding PC11 if required
+sub pc11_process
+{
+
+}
+
# announces
sub handle_12
{
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
# announce duplicate checking
- $_[3] =~ s/^\s+//; # remove leading blanks
+ $pc->[3] =~ s/^\s+//; # remove leading blanks
if ($censorpc) {
my @bad;
- if (@bad = BadWords::check($_[3])) {
+ if (@bad = BadWords::check($pc->[3])) {
dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
return;
}
}
# if this is a 'nodx' node then ignore it
- if ($badnode->in($_[5])) {
+ if ($badnode->in($pc->[5])) {
dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
return;
}
# if this is a 'bad spotter' user then ignore it
- my $nossid = $_[1];
+ my $nossid = $pc->[1];
$nossid =~ s/-\d+$//;
if ($badspotter->in($nossid)) {
dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
my $dxchan;
- if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
- $self->send_chat(0, $line, @_[1..6]);
- } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
+ if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
+ $self->send_chat(0, $line, @$pc[1..6]);
+ } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
# ignore something that looks like a chat line coming in with sysop
# flag - this is a kludge...
- if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
+ if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
return;
}
# here's a bit of fun, convert incoming ann with a callsign in the first word
# or one saying 'to <call>' to a talk if we can route to the recipient
if ($ann_to_talk) {
- my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
+ my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
if ($call) {
my $ref = Route::get($call);
if ($ref) {
$dxchan = $ref->dxchan;
- $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
+ $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
return;
}
}
}
# send it
- $self->send_announce(0, $line, @_[1..6]);
+ $self->send_announce(0, $line, @$pc[1..6]);
} else {
- $self->route($_[2], $line);
+ $self->route($pc->[2], $line);
}
# local processing
if (defined &Local::ann) {
my $r;
eval {
- $r = Local::ann($self, $line, @_[1..6]);
+ $r = Local::ann($self, $line, @$pc[1..6]);
};
return if $r;
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
if (eph_dup($line, $eph_pc15_restime)) {
return;
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
# general checks
my $dxchan;
- my $ncall = $_[1];
+ my $ncall = $pc->[1];
my $newline = "PC16^";
# dos I want users from this channel?
my $i;
my @rout;
- for ($i = 2; $i < $#_; $i++) {
- my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
+ for ($i = 2; $i < $#$pc; $i++) {
+ my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
next unless $call && $conf && defined $here && is_callsign($call);
next if $call eq $main::mycall;
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
+
my $dxchan;
- my $ncall = $_[2];
- my $ucall = $_[1];
+ my $ncall = $pc->[2];
+ my $ucall = $pc->[1];
eph_del_regex("^PC16\\^$ncall.*$ucall");
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
+
$self->state('init');
my $parent = Route::Node::get($self->{call});
# record the type and version offered
- if (my ($version) = $_[1] =~ /DXSpider Version: (\d+\.\d+)/) {
+ if (my ($version) = $pc->[1] =~ /DXSpider Version: (\d+\.?\d+?)/) {
$self->{version} = 53 + $version;
$self->user->version(53 + $version);
$parent->version(0 + $version);
- my ($build) = $_[1] =~ /Build: (\d+(?:\.\d+)?)/;
+ my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
$self->{build} = 0 + $build;
$self->user->build(0 + $build);
$parent->build(0 + $build);
- dbg("DXSpider version $version build $build");
+ dbg("$self->{call} = DXSpider version $version build $build");
unless ($self->is_spider) {
dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
$self->user->sort('S');
$self->user->put;
$self->sort('S');
}
-# $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
+# $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
} else {
- dbg("Unknown software");
+ dbg("$self->{call} = Unknown software ($pc->[1] $pc->[2])");
$self->version(50.0);
- $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
+ $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
$self->user->version($self->version);
}
- if ($_[1] =~ /\bpc9x/) {
+ if ($pc->[1] =~ /\bpc9x/) {
if ($self->{isolate}) {
- dbg("pc9x recognised, but $self->{call} is isolated, using old protocol");
+ dbg("$self->{call} pc9x recognised, but node is isolated, using old protocol");
} elsif (!$self->user->wantpc9x) {
- dbg("pc9x explicitly switched off on $self->{call}, using old protocol");
+ dbg("$self->{call} pc9x explicitly switched off, using old protocol");
} else {
$self->{do_pc9x} = 1;
- dbg("Do px9x set on $self->{call}");
+ dbg("$self->{call} Set do PC9x");
}
}
# add this station to the user database, if required (don't remove SSID from nodes)
my $user = DXUser::get_current($call);
- if (!$user) {
+ unless ($user) {
$user = DXUser->new($call);
$user->priv(1); # I have relented and defaulted nodes
$user->lockout(1);
$user->homenode($call);
$user->node($call);
$user->sort('A');
+ $user->lastin($main::systime); # this make it last longer than just this invocation
+ $user->put; # just to make sure it gets written away!!!
}
return $user;
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
my $i;
my $newline = "PC19^";
# From now on we are only going to believe PC92 data and locally connected
# non-pc92 nodes.
#
- for ($i = 1; $i < $#_-1; $i += 4) {
- my $here = $_[$i];
- my $call = uc $_[$i+1];
- my $conf = $_[$i+2];
- my $ver = $_[$i+3];
+ for ($i = 1; $i < $#$pc-1; $i += 4) {
+ my $here = $pc->[$i];
+ my $call = uc $pc->[$i+1];
+ my $conf = $pc->[$i+2];
+ my $ver = $pc->[$i+3];
next unless defined $here && defined $conf && is_callsign($call);
eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
if ($self->{do_pc9x} && $self->{state} ne 'init92') {
$self->send("Reseting to oldstyle routing because login call not sent in any pc92");
my $pcno = shift;
my $line = shift;
my $origin = shift;
- my $call = uc $_[1];
+ my $pc = shift;
+
+ my $call = uc $pc->[1];
eph_del_regex("^PC1[679].*$call");
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
if ($self->{do_pc9x}) {
if ($self->{state} ne 'init92') {
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
# route foreign' pc27s
if ($pcno == 27) {
- if ($_[8] ne $main::mycall) {
- $self->route($_[8], $line);
+ if ($pc->[8] ne $main::mycall) {
+ $self->route($pc->[8], $line);
return;
}
}
# do some de-duping
- my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
- my $sfi = unpad($_[3]);
- my $k = unpad($_[4]);
- my $i = unpad($_[5]);
- my ($r) = $_[6] =~ /R=(\d+)/;
+ my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
+ my $sfi = unpad($pc->[3]);
+ my $k = unpad($pc->[4]);
+ my $i = unpad($pc->[5]);
+ my ($r) = $pc->[6] =~ /R=(\d+)/;
$r = 0 unless $r;
- if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
- dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
+ if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
+ dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
return;
}
# global wwv filtering on INPUT
- my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
+ my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
if ($self->{inwwvfilter}) {
- my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
+ my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
unless ($filter) {
dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
return;
}
}
- $_[7] =~ s/-\d+$//o; # remove spotter's ssid
- if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
+ $pc->[7] =~ s/-\d+$//o; # remove spotter's ssid
+ if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
return;
}
# note this only takes the first one it gets
- Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
+ Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
+ dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
if (defined &Local::wwv) {
my $rep;
eval {
- $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
+ $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
};
return if $rep;
}
return if $pcno == 27;
# broadcast to the eager world
- send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
+ send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
}
# set here status
my $pcno = shift;
my $line = shift;
my $origin = shift;
- my $call = uc $_[1];
+ my $pc = shift;
+
+ my $call = uc $pc->[1];
my ($nref, $uref);
$nref = Route::Node::get($call);
$uref = Route::User::get($call);
return;
}
- $nref->here($_[2]) if $nref;
- $uref->here($_[2]) if $uref;
+ $nref->here($pc->[2]) if $nref;
+ $uref->here($pc->[2]) if $uref;
my $ref = $nref || $uref;
return unless $self->in_filter_route($ref);
- $self->route_pc24($origin, $line, $ref, $_[3]);
+ $self->route_pc24($origin, $line, $ref, $pc->[3]);
}
# merge request
my $pcno = shift;
my $line = shift;
my $origin = shift;
- if ($_[1] ne $main::mycall) {
- $self->route($_[1], $line);
+ my $pc = shift;
+
+ if ($pc->[1] ne $main::mycall) {
+ $self->route($pc->[1], $line);
return;
}
- if ($_[2] eq $main::mycall) {
+ if ($pc->[2] eq $main::mycall) {
dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
return;
}
- Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
+ Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
# spots
- if ($_[3] > 0) {
- my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
+ if ($pc->[3] > 0) {
+ my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
my $in;
foreach $in (@in) {
- $self->send(pc26(@{$in}[0..4], $_[2]));
+ $self->send(pc26(@{$in}[0..4], $pc->[2]));
}
}
# wwv
- if ($_[4] > 0) {
- my @in = reverse Geomag::search(0, $_[4], time, 1);
+ if ($pc->[4] > 0) {
+ my @in = reverse Geomag::search(0, $pc->[4], time, 1);
my $in;
foreach $in (@in) {
- $self->send(pc27(@{$in}[0..5], $_[2]));
+ $self->send(pc27(@{$in}[0..5], $pc->[2]));
}
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
- if ($_[1] eq $main::mycall) {
+ my $pc = shift;
+
+ if ($pc->[1] eq $main::mycall) {
no strict 'refs';
my $sub = "DXMsg::handle_$pcno";
- &$sub($self, @_);
+ &$sub($self, @$pc);
} else {
- $self->route($_[1], $line) unless $self->is_clx;
+ $self->route($pc->[1], $line) unless $self->is_clx;
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
+
if (eph_dup($line, $eph_pc34_restime)) {
return;
} else {
- $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
+ $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
- eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
- $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
+ my $pc = shift;
+
+ eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
+ $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
}
sub handle_36 {goto &handle_34}
my $pcno = shift;
my $line = shift;
my $origin = shift;
- if ($_[1] eq $main::mycall) {
+ my $pc = shift;
+
+ if ($pc->[1] eq $main::mycall) {
no strict 'refs';
my $sub = "DXDb::handle_$pcno";
- &$sub($self, @_);
+ &$sub($self, @$pc);
} else {
- $self->route($_[1], $line) unless $self->is_clx;
+ $self->route($pc->[1], $line) unless $self->is_clx;
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
}
# incoming disconnect
my $pcno = shift;
my $line = shift;
my $origin = shift;
- if ($_[1] eq $self->{call}) {
+ my $pc = shift;
+
+ if ($pc->[1] eq $self->{call}) {
$self->disconnect(1);
} else {
dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
my $pcno = shift;
my $line = shift;
my $origin = shift;
- my $call = $_[1];
- my $sort = $_[2];
- my $val = $_[3];
+ my $pc = shift;
+
+ my $call = $pc->[1];
+ my $sort = $pc->[2];
+ my $val = $pc->[3];
my $l = "PC41^$call^$sort";
if (eph_dup($l, $eph_info_restime)) {
}
# perhaps this IS what we want after all
- # $self->route_pc41($ref, $call, $sort, $val, $_[4]);
+ # $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
}
sub handle_42 {goto &handle_28}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
if (eph_dup($line)) {
return;
}
- if ($_[1] eq $main::mycall) {
- DXMsg::handle_49($self, @_);
+ if ($pc->[1] eq $main::mycall) {
+ DXMsg::handle_49($self, @$pc);
} else {
- $self->route($_[1], $line) unless $self->is_clx;
+ $self->route($pc->[1], $line) unless $self->is_clx;
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
return if (eph_dup($line));
- my $call = $_[1];
+ my $call = $pc->[1];
my $node = Route::Node::get($call);
if ($node) {
return unless $node->call eq $self->{call};
- $node->usercount($_[2]) unless $node->users;
+ $node->usercount($pc->[2]) unless $node->users;
$node->reset_obs;
- $node->PC92C_dxchan($self->call, $_[-1]);
+ $node->PC92C_dxchan($self->call, $pc->[-1]);
# input filter if required
# return unless $self->in_filter_route($node);
unless ($self->{isolate}) {
DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
}
-# $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
+# $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
- my $to = $_[1];
- my $from = $_[2];
- my $flag = $_[3];
+ my $pc = shift;
+
+ my $to = $pc->[1];
+ my $from = $pc->[2];
+ my $flag = $pc->[3];
if ($to eq $main::myalias) {
dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
my $pcno = shift;
my $line = shift;
my $origin = shift;
- my $call = $_[1];
+ my $pc = shift;
+
+ my $call = $pc->[1];
if ($call ne $main::mycall) {
$self->route($call, $line);
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
- my $call = $_[1];
+ my $pc = shift;
+
+ my $call = $pc->[1];
# do some de-duping
- my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
- if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
- dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
+ my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
+ if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
+ dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
return;
}
- @_ = map { unpad($_) } @_;
+ $pc = [ map { unpad($_) } @$pc ];
if (WCY::dup($d)) {
dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
return;
}
- my $wcy = WCY::update($d, @_[2..12]);
+ my $wcy = WCY::update($d, @$pc[2..12]);
+ 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');
if (defined &Local::wcy) {
my $rep;
eval {
- $rep = Local::wcy($self, @_[1..12]);
+ $rep = Local::wcy($self, @$pc[1..12]);
};
return if $rep;
}
# broadcast to the eager world
- send_wcy_spot($self, $line, $d, @_[2..12]);
+ send_wcy_spot($self, $line, $d, @$pc[2..12]);
}
# remote commands (incoming)
my $pcno = shift;
my $line = shift;
my $origin = shift;
- $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
+ my $pc = shift;
+
+ $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
}
# remote command replies
my $pcno = shift;
my $line = shift;
my $origin = shift;
- $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
+ my $pc = shift;
+
+ $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
}
# decode a pc92 call: flag call : version : build
my $is_extnode = $flag & 2;
my $here = $flag & 1;
my $ip = $part[3];
- $ip ||= $part[1] if $part[1] && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
+ $ip ||= $part[1] if $part[1] && $part[1] !~ /^\d+$/ && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
$ip =~ s/,/:/g if $ip;
return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
}
delete $things_del{$call};
}
} else {
+ dbgprintring(10) if isdbg('nologchan');
dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
}
}
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
my (@radd, @rdel);
- my $pcall = $_[1];
- my $t = $_[2];
- my $sort = $_[3];
- my $hops = $_[-1];
+ my $pcall = $pc->[1];
+ my $t = $pc->[2];
+ my $sort = $pc->[3];
+ my $hops = $pc->[-1];
# this catches loops of A/Ds
# if (eph_dup($line, $pc9x_dupe_age)) {
# here is where the consequences of the 'find' command
# are dealt with
- my $from = $_[4];
- my $target = $_[5];
+ my $from = $pc->[4];
+ my $target = $pc->[5];
if ($sort eq 'F') {
my $flag;
}
} elsif ($sort eq 'R') {
if (my $dxchan = DXChannel::get($from)) {
- handle_pc92_find_reply($dxchan, $pcall, $from, $target, @_[6,7]);
+ handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
} else {
my $ref = Route::get($from);
if ($ref) {
# remember the last channel we arrived on
$parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
- my @ent = _decode_pc92_call($_[4]);
+ my @ent = _decode_pc92_call($pc->[4]);
if (@ent) {
my $add;
# here is where all the routes are created and destroyed
# cope with missing duplicate node calls in the first slot
- my $me = $_[4] || '';
+ my $me = $pc->[4] || '';
$me ||= _encode_pc92_call($parent) unless $me ;
- my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @_[5 .. $#_];
+ my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
if (@ent) {
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
# $self->{do_pc9x} ||= 1;
- my $pcall = $_[1]; # this is now checked earlier
+ my $pcall = $pc->[1]; # this is now checked earlier
# remember that we are converting PC10->PC93 and self will be $main::me if it
# comes from us
return;
}
- my $t = $_[2];
+ my $t = $pc->[2];
my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
- my $to = uc $_[3];
- my $from = uc $_[4];
- my $via = uc $_[5];
- my $text = $_[6];
- my $onode = uc $_[7];
- $onode = $pcall if @_ <= 8;
+ my $to = uc $pc->[3];
+ my $from = uc $pc->[4];
+ my $via = uc $pc->[5];
+ my $text = $pc->[6];
+ my $onode = uc $pc->[7];
+ $onode = $pcall if @$pc <= 8;
# this is catch loops caused by bad software ...
if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
return;
}
+ if (isdbg('progress')) {
+ my $vs = $via ne '*' ? " via $via" : '';
+ my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
+ dbg($s);
+ }
+
# will we allow it at all?
if ($censorpc) {
my @bad;
my $pcno = shift;
my $line = shift;
my $origin = shift;
+ my $pc = shift;
unless (eph_dup($line)) {
if ($pcno >= 90) {
- my $pcall = $_[1];
+ my $pcall = $pc->[1];
unless (is_callsign($pcall)) {
- dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
+ dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
return;
}
- my $t = $_[2];
+ my $t = $pc->[2];
my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
$self->broadcast_route_pc9x($pcall, undef, $line, 0);
} else {