--- loncom/auth/lonracc.pm 2002/10/21 19:15:10 1.6 +++ loncom/auth/lonracc.pm 2003/05/27 18:31:31 1.10 @@ -1,7 +1,7 @@ # The LearningOnline Network # Access Handler for File Transfers # -# $Id: lonracc.pm,v 1.6 2002/10/21 19:15:10 bowersj2 Exp $ +# $Id: lonracc.pm,v 1.10 2003/05/27 18:31:31 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -56,7 +56,7 @@ sub handler { if (!$reqhost && $r->get_remote_host(REMOTE_NOLOOKUP) eq $r->get_server_name()) { $reqhost = $r->get_server_name(); } - unless ($reqhost) + unless ($reqhost) { $r->log_reason("Spoof request from ".$ENV{'REMOTE_ADDR'}); return FORBIDDEN; } @@ -68,6 +68,8 @@ sub handler { $r->log_reason("Could not find host tab file"); return FORBIDDEN; } + my $return; + my @ids=(); while ($readline=<$fh>) { my ($id,$domain,$role,$name,$ip)=split(/:/,$readline); if ($name =~ /$reqhost/i) { @@ -77,12 +79,15 @@ sub handler { ($filename=~/\.meta$/)) { return OK; } else { - $r->log_reason("$id not subscribed", $r->filename); - return FORBIDDEN; + $return=FORBIDDEN; + push(@ids,$id); } } } - + if ($return == FORBIDDEN) { + $r->log_reason(join(':',@ids)." not subscribed", $r->filename); + return FORBIDDEN; + } } $r->log_reason("Invalid request for file transfer from $reqhost", $r->filename);