--- loncom/auth/lontokacc.pm 2002/07/27 19:06:41 1.2 +++ loncom/auth/lontokacc.pm 2005/02/06 07:23:40 1.12 @@ -1,8 +1,7 @@ # The LearningOnline Network -# Low security Access Handler for Token-based access -# (clearance given by other loncapa host) +# Access Handler for User File Transfers # -# $Id: lontokacc.pm,v 1.2 2002/07/27 19:06:41 www Exp $ +# $Id: lontokacc.pm,v 1.12 2005/02/06 07:23:40 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -30,29 +29,60 @@ package Apache::lontokacc; use strict; -use Apache::Constants qw(:common); +use Apache::Constants qw(:common :remotehost); use Apache::lonnet(); -use Apache::loncommon(); +use Apache::File(); + sub handler { my $r = shift; - &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, - ['token','server']); - my $tmpinfo='no_token'; - if (($ENV{'form.token'}) || ($ENV{'form.server'})) { - $tmpinfo=&Apache::lonnet::unescape( - &Apache::lonnet::reply('tmpget:'.$ENV{'form.token'}, - $ENV{'form.server'})); - if ($tmpinfo eq $r->uri) { - return OK; - } + my $reqhost = $r->get_remote_host(REMOTE_NOLOOKUP); + my $netaddr=inet_aton($reqhost); + ($reqhost) = gethostbyaddr($netaddr,AF_INET); + if (!$reqhost) { + $r->log_reason("Unable to do hostname $reqhost lookup for ".$r->get_remote_host(REMOTE_NOLOOKUP)); + return FORBIDDEN; + } + if ($reqhost eq 'localhost.localdomain') { + return OK; + } + my $readline; + my $lontabdir=$r->dir_config('lonTabDir'); + { + my $fh; + unless ($fh=Apache::File->new("$lontabdir/hosts.tab")) { + $r->log_reason("Could not find host tab file"); + return FORBIDDEN; + } + while ($readline=<$fh>) { + $readline=~s/\s*$//; + my ($id,$domain,$role,$name)=split(/:/,$readline); + if ($name =~ /\Q$reqhost\E/i) { + return OK; + } + } + } - $r->log_reason("Invalid token-based access ".$r->uri.' '.$tmpinfo, - $r->filename); + $r->log_reason("Invalid request for user file transfer from $reqhost", + $r->filename); return FORBIDDEN; } +sub removefile { + my $r=shift; + if ($r->status==200) { + unlink($r->filename); + #&Apache::lonnet::logthis('Unlinking '.$r->filename); + } else { + &Apache::lonnet::logthis('Failed to transfer '.$r->filename); + } +} 1; __END__ + + + + +