X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProtHandle.pm;h=49c54734401670f054851d18ba65cefe6d9617d5;hb=fa226048f56571a9d1b88f261b1d26b4cd596a49;hp=6929316421c16ccbbd30d2bbfdf2a86c698fdf25;hpb=ca1c90a3fc9cdc6f701f1edcf8892551e9f0ec92;p=spider.git diff --git a/perl/DXProtHandle.pm b/perl/DXProtHandle.pm index 69293164..49c54734 100644 --- a/perl/DXProtHandle.pm +++ b/perl/DXProtHandle.pm @@ -36,6 +36,9 @@ use DXCIDR; use strict; use warnings qw(all); +no warnings qw(uninitialized); + + use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime $last_hour $last10 %eph %pings %rcmds $ann_to_talk @@ -254,17 +257,6 @@ sub handle_11 } } - # we check IP addresses for PC61 - if (@$pc > 8 && is_ipaddr($pc->[8])) { - my $ip = $pc->[8]; - $ip =~ s/,/:/g; - $ip =~ s/^::ffff://; - if (DXCIDR::find($ip)) { - dbg($line) if isdbg('nologchan'); - dbg("PCPROT: $ip in badip list, dropped"); - return; - } - } # this is where we decide to delay PC11s in the hope that a PC61 will be along soon. @@ -277,8 +269,8 @@ sub handle_11 if ($pc11_saved) { if ($key eq $pc11_saved->[0]) { ++$pc11_to_61; - my $percent = int($pc11_to_61 * 100 / $pc11_rx); - dbg("recurse: $recurse saved PC11 spot $key dumped, better pc61 received ($percent\%) pc61: $pc61_rx pc11: $pc11_rx -> pc61: $pc11_to_61 ") if isdbg("pc11"); + my $percent = $pc11_rx ? $pc11_to_61 * 100 / $pc11_rx : 0; + dbg(sprintf("recurse: $recurse saved PC11 spot $key dumped, better pc61 received pc61: $pc61_rx pc11: $pc11_rx -> pc61: $pc11_to_61 (%0.1f%%)", $percent)) if isdbg("pc11"); undef $pc11_saved; } } @@ -288,7 +280,7 @@ sub handle_11 ++$pc11_rx; if ($pc11_saved) { - if ($key eq $pc11_saved->[0]) { + if ($key eq $pc11_saved->[0] ) { dbg("recurse: $recurse saved PC11 spot $key, dupe pc11 received and dumped") if isdbg("pc11"); return; # because it's a dup } @@ -300,8 +292,8 @@ sub handle_11 $pcno = 61; # now turn this into a PC61 $spot[14] = $r->ip; ++$rpc11_to_61; - my $percent = int($rpc11_to_61 * 100 / $pc11_rx); - dbg("recurse: $recurse PC11 spot $key promoted to pc61 ($percent\%) ip $spot[14] pc61: $pc61_rx pc11: $pc11_rx -> pc61 $pc11_to_61") if isdbg("pc11"); + my $percent = $pc11_rx ? $rpc11_to_61 * 100 / $pc11_rx : 0; + dbg(sprintf("recurse: $recurse PC11 spot $key promoted to pc61 ip $spot[14] pc61: $pc61_rx pc11: $pc11_rx -> pc61 $pc11_to_61 (%0.1f%%)", $percent)) if isdbg("pc11"); undef $pc11_saved; } @@ -322,13 +314,14 @@ sub handle_11 } } else { - dbg("recurse: $recurse PC61 spot $key passed onward pc61: $pc61_rx pc11: $pc11_rx -> pc61 $pc11_to_61") if isdbg("pc11"); + my $count = $pc11_to_61+$rpc11_to_61; + my $percent = $pc11_rx ? $count*100 / $pc11_rx : 0; + dbg(sprintf("recurse: $recurse PC61 spot $key passed onward pc61: $pc61_rx pc11: $pc11_rx -> pc61: $count (%0.1f%%)", $percent)) if isdbg("pc11"); $recurse = 0; undef $pc11_saved; } } - # this goes after the input filtering, but before the add # so that if it is input filtered, it isn't added to the dup @@ -338,6 +331,18 @@ sub handle_11 return; } + # we check IP addresses for PC61 - this will also dedupe PC11 copies + if (@$pc > 8 && is_ipaddr($pc->[8])) { + my $ip = $pc->[8]; + $ip =~ s/,/:/g; + $ip =~ s/^::ffff://; + if (DXCIDR::find($ip)) { + dbg($line) if isdbg('nologchan'); + dbg("PCPROT: $ip in badip list, dropped"); + return; + } + } + # here we verify the spotter is currently connected to the node it says it is one. AKA email sender verify # but without the explicit probe to the node. We are relying on "historical" information, but it very likely