Diff for /loncom/auth/lontokacc.pm between versions 1.9 and 1.20

version 1.9, 2003/08/01 17:25:40 version 1.20, 2020/12/18 15:23:03
Line 32  use strict; Line 32  use strict;
 use Apache::Constants qw(:common :remotehost);  use Apache::Constants qw(:common :remotehost);
 use Apache::lonnet();  use Apache::lonnet();
 use Apache::File();  use Apache::File();
   use IO::Socket;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     my $reqhost = $r->get_remote_host(REMOTE_DOUBLE_REV);      my $reqhost = &Apache::lonnet::get_requestor_ip($r,REMOTE_NOLOOKUP,1);
     if (!$reqhost && $r->get_remote_host(REMOTE_NOLOOKUP) eq $r->get_server_name()) {       my @hostids= &Apache::lonnet::get_hosts_from_ip($reqhost);
         $reqhost = $r->get_server_name();       if (!@hostids && $reqhost ne '127.0.0.1' ) {
     }   $r->log_reason("Unable to find a host for ".
     unless ($reqhost) {         $r->get_remote_host(REMOTE_NOLOOKUP));
         $r->log_reason("Spoof request from ". $reqhost);   return FORBIDDEN;
         return FORBIDDEN;  
     }      }
     if ($reqhost eq 'localhost.localdomain') {      if ($reqhost eq '127.0.0.1') {
        return OK;         return OK;
     }      }
     my $readline;      return OK;
     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>) {  
           my ($id,$domain,$role,$name,$ip)=split(/:/,$readline);  
           if ($name =~ /$reqhost/i) {  
              return OK;   
           }  
        }  
   
     }  
     $r->log_reason("Invalid request for user file transfer from $reqhost",   
                    $r->filename);   
     return FORBIDDEN;  
 }  }
   
 sub removefile {  sub removefile {
     my $r=shift;      my $r=shift;
     if ($r->status==200) {      if ($r->status==200) {
         unlink($r->filename);          unlink($r->filename);
  &Apache::lonnet::logthis('Unlinking '.$r->filename);   #&Apache::lonnet::logthis('Unlinking '.$r->filename);
     } else {      } else {
         &Apache::lonnet::logthis('Failed to transfer '.$r->filename);          &Apache::lonnet::logthis('Failed to transfer '.$r->filename);
     }      }
       return OK;
 }  }
 1;  1;
 __END__  __END__

Removed from v.1.9  
changed lines
  Added in v.1.20


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>