X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=a6b4270fc9dd652a1536512acbe94352ce2045bc;hb=refs%2Fheads%2Fnewprot;hp=60b0f1e6be9eec8c6ca340f5d871be739e0b45ea;hpb=1256794cae0d863c829011df3f87dc1fb70f977d;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 60b0f1e6..a6b4270f 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -43,8 +43,7 @@ $main::build += $VERSION; $main::branch += $BRANCH; 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 - $pingint $obscount + $last_hour $last10 %eph %rcmds $ann_to_talk %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck $allowzero $decode_dk0wcy $send_opernam @checklist); @@ -52,7 +51,6 @@ $pc11_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc11 $pc23_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc23 $last_hour = time; # last time I did an hourly periodic update -%pings = (); # outstanding ping requests outbound %rcmds = (); # outstanding rcmd requests outbound %nodehops = (); # node specific hop control $censorpc = 1; # Do a BadWords::check on text fields and reject things @@ -66,8 +64,6 @@ $rspfcheck = 1; $eph_restime = 180; $eph_info_restime = 60*60; $eph_pc34_restime = 30; -$pingint = 5*60; -$obscount = 2; @checklist = ( @@ -258,9 +254,9 @@ sub start # ping neighbour node stuff my $ping = $user->pingint; - $ping = $pingint unless defined $ping; + $ping = $DXChannel::pingint unless defined $ping; $self->{pingint} = $ping; - $self->{nopings} = $user->nopings || $obscount; + $self->{nopings} = $user->nopings || $DXChannel::obscount; $self->{pingtime} = [ ]; $self->{pingave} = 999; $self->{metric} ||= 100; @@ -514,9 +510,9 @@ sub normal # send the rcmd but we aren't interested in the replies... my $dxchan = $node->dxchan; if ($dxchan && $dxchan->is_clx) { - route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd)); + DXChannel::route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd)); } else { - route(undef, $to, pc34($main::mycall, $to, $cmd)); + DXChannel::route(undef, $to, pc34($main::mycall, $to, $cmd)); } if ($to ne $field[7]) { $to = $field[7]; @@ -524,9 +520,9 @@ sub normal if ($node) { $dxchan = $node->dxchan; if ($dxchan && $dxchan->is_clx) { - route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd)); + DXChannel::route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd)); } else { - route(undef, $to, pc34($main::mycall, $to, $cmd)); + DXChannel::route(undef, $to, pc34($main::mycall, $to, $cmd)); } } } @@ -649,10 +645,15 @@ sub normal return; } + my ($hops) = $field[-1] =~ /H(\d+)/; + my $thing = Thingy::Route->new(fromnode => $ncall, fromdxchan => $self, pcline=>$line, hops=>$hops); + + # input filter if required return unless $self->in_filter_route($parent); my $i; + my @list; my @rout; for ($i = 2; $i < $#field; $i++) { my ($call, $conf, $here) = $field[$i] =~ /^(\S+) (\S) (\d)/o; @@ -671,33 +672,14 @@ sub normal next; } - $r = Route::User::get($call); my $flags = Route::here($here)|Route::conf($conf); - - if ($r) { - if ($r->flags != $flags) { - $r->flags($flags); - push @rout, $r; - } - $r->addparent($parent); - } else { - push @rout, $parent->add_user($call, $flags); - } - - # add this station to the user database, if required - $call =~ s/-\d+$//o; # remove ssid for users - my $user = DXUser->get_current($call); - $user = DXUser->new($call) if !$user; - $user->homenode($parent->call) if !$user->homenode; - $user->node($parent->call); - $user->lastin($main::systime) unless DXChannel->get($call); - $user->put; + $r = Route::User::new($call, $ncall, $flags); + push @list, $r; } - - # queue up any messages (look for privates only) - DXMsg::queue_msg(1) if $self->state eq 'normal'; - $self->route_pc16($parent, @rout) if @rout; + $thing->list(\@list); + $thing->add; + $thing->route; return; } @@ -789,14 +771,19 @@ sub normal # new routing list my @rout; - my $parent = Route::Node::get($self->{call}); + my $ncall = $self->{call}; + my $parent = Route::Node::get($ncall); unless ($parent) { - dbg("DXPROT: my parent $self->{call} has disappeared"); + dbg("DXPROT: my parent $ncall has disappeared"); $self->disconnect; return; } + my ($hops) = $field[-1] =~ /H(\d+)/; + my $thing = Thingy::Route->new(fromnode=>$ncall, fromdxchan => $self, pcline=>$line, hops=>$hops); + # parse the PC19 + my @list; for ($i = 1; $i < $#field-1; $i += 4) { my $here = $field[$i]; my $call = uc $field[$i+1]; @@ -819,59 +806,15 @@ sub normal next; } - # update it if required - my $r = Route::Node::get($call); - my $flags = Route::here($here)|Route::conf($conf); - if ($r) { - my $ar; - if ($call ne $parent->call) { - if ($self->in_filter_route($r)) { - $ar = $parent->add($call, $ver, $flags); - push @rout, $ar if $ar; - } else { - next; - } - } - if ($r->version ne $ver || $r->flags != $flags) { - $r->version($ver); - $r->flags($flags); - push @rout, $r unless $ar; - } - } else { - if ($call eq $self->{call}) { - dbg("DXPROT: my channel route for $call has disappeared"); - next; - }; - - my $new = Route->new($call); # throw away - if ($self->in_filter_route($new)) { - my $r = $parent->add($call, $ver, $flags); - push @rout, $r; - } else { - next; - } - } - - # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect) - my $mref = DXMsg::get_busy($call); - $mref->stop_msg($call) if $mref; - - # add this station to the user database, if required (don't remove SSID from nodes) - my $user = DXUser->get_current($call); - if (!$user) { - $user = DXUser->new($call); - $user->sort('A'); - $user->priv(1); # I have relented and defaulted nodes - $user->lockout(1); - $user->homenode($call); - $user->node($call); - } - $user->lastin($main::systime) unless DXChannel->get($call); - $user->put; + # decide whether we want this or not? + my $r = Route::Node->new($call, $ver, $flags); + push @list, $r if $call ne $ncall && $self->in_filter_route($r); + } + if (@list) { + $thing->list(\@list); + $thing->add; + $thing->route; } - - - $self->route_pc19(@rout) if @rout; return; } @@ -1169,40 +1112,7 @@ sub normal $self->send(pc51($from, $to, '0')); } else { # it's a reply, look in the ping list for this one - my $ref = $pings{$from}; - if ($ref) { - my $tochan = DXChannel->get($from); - while (@$ref) { - my $r = shift @$ref; - my $dxchan = DXChannel->get($r->{call}); - next unless $dxchan; - my $t = tv_interval($r->{t}, [ gettimeofday ]); - if ($dxchan->is_user) { - my $s = sprintf "%.2f", $t; - my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t; - $dxchan->send($dxchan->msg('pingi', $from, $s, $ave)) - } elsif ($dxchan->is_node) { - if ($tochan) { - my $nopings = $tochan->user->nopings || 2; - push @{$tochan->{pingtime}}, $t; - shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6; - - # cope with a missed ping, this means you must set the pingint large enough - if ($t > $tochan->{pingint} && $t < 2 * $tochan->{pingint} ) { - $t -= $tochan->{pingint}; - } - - # calc smoothed RTT a la TCP - if (@{$tochan->{pingtime}} == 1) { - $tochan->{pingave} = $t; - } else { - $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6); - } - $tochan->{nopings} = $nopings; # pump up the timer - } - } - } - } + $self->handlepingreply($from); } } else { if (eph_dup($line)) { @@ -1303,7 +1213,7 @@ sub process } foreach $dxchan (@dxchan) { - next unless $dxchan->is_node(); + next unless $dxchan->is_op(); next if $dxchan == $main::me; # send the pc50 or PC90 @@ -1314,7 +1224,7 @@ sub process if ($dxchan->{nopings} <= 0) { $dxchan->disconnect; } else { - addping($main::mycall, $dxchan->call); + $dxchan->addping($main::mycall, $dxchan->call); $dxchan->{nopings} -= 1; $dxchan->{lastping} = $t; } @@ -1343,7 +1253,6 @@ sub process # some active measures # - sub send_dx_spot { my $self = shift; @@ -1616,41 +1525,6 @@ sub send_local_config } } -# -# route a message down an appropriate interface for a callsign -# -# is called route(to, pcline); -# -sub route -{ - my ($self, $call, $line) = @_; - - if (ref $self && $call eq $self->{call}) { - dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr'); - return; - } - - # always send it down the local interface if available - my $dxchan = DXChannel->get($call); - unless ($dxchan) { - my $cl = Route::get($call); - $dxchan = $cl->dxchan if $cl; - if (ref $dxchan) { - if (ref $self && $dxchan eq $self) { - dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr'); - return; - } - } - } - if ($dxchan) { - my $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name - if ($routeit) { - $dxchan->send($routeit) unless $dxchan == $main::me; - } - } else { - dbg("PCPROT: No route available, dropped") if isdbg('chanerr'); - } -} # # obtain the hops from the list for this callsign and pc no @@ -1709,20 +1583,6 @@ sub load_hops return (); } - -# add a ping request to the ping queues -sub addping -{ - my ($from, $to) = @_; - my $ref = $pings{$to} || []; - my $r = {}; - $r->{call} = $from; - $r->{t} = [ gettimeofday ]; - route(undef, $to, pc51($to, $main::mycall, 1)); - push @$ref, $r; - $pings{$to} = $ref; -} - sub process_rcmd { my ($self, $tonode, $fromnode, $user, $cmd) = @_; @@ -1812,9 +1672,9 @@ sub addrcmd my $ref = Route::Node::get($to); my $dxchan = $ref->dxchan; if ($dxchan && $dxchan->is_clx) { - route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd)); + DXChannel::route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd)); } else { - route(undef, $to, pc34($main::mycall, $to, $cmd)); + DXChannel::route(undef, $to, pc34($main::mycall, $to, $cmd)); } } @@ -1850,9 +1710,6 @@ sub disconnect $self->route_pc21(@rout) if @rout; } - # remove outstanding pings - delete $pings{$call}; - # I was the last node visited $self->user->node($main::mycall); @@ -2004,6 +1861,19 @@ sub in_filter_route return $filter; } +# add a ping request to the ping queues +sub addping +{ + my ($self, $from, $to) = @_; + my $ref = $DXChannel::pings{$to} || []; + my $r = {}; + $r->{call} = $from; + $r->{t} = [ gettimeofday ]; + DXChannel::route(undef, $to, pc51($to, $main::mycall, 1)); + push @$ref, $r; + $DXCHannel::pings{$to} = $ref; +} + sub eph_dup { my $s = shift;