Diff for /loncom/auth/lontokacc.pm between versions 1.11 and 1.18

version 1.11, 2005/02/05 22:20:56 version 1.18, 2007/03/02 23:43:29
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_HOST);      my $reqhost = $r->get_remote_host(REMOTE_NOLOOKUP);
     if ($reqhost eq 'localhost.localdomain') {      my @hostids= &Apache::lonnet::get_hosts_from_ip($reqhost);
       if (!@hostids && $reqhost ne '127.0.0.1' ) {
    $r->log_reason("Unable to find a host for ".
          $r->get_remote_host(REMOTE_NOLOOKUP));
    return FORBIDDEN;
       }
       if ($reqhost eq '127.0.0.1') {
        return OK;         return OK;
     }      }
     my $readline;      my $readline;
Line 51  sub handler { Line 57  sub handler {
        while ($readline=<$fh>) {         while ($readline=<$fh>) {
    $readline=~s/\s*$//;     $readline=~s/\s*$//;
    my ($id,$domain,$role,$name)=split(/:/,$readline);     my ($id,$domain,$role,$name)=split(/:/,$readline);
    if ($name =~ /\Q$reqhost\E/i) {     foreach my $hostid (@hostids) {
        return OK;          my $hostname=&Apache::lonnet::hostname($hostid);
          if ($name =~ /^\Q$hostname\E$/i) {
      return OK; 
          }
    }     }
        }         }
   
     }      }
     $r->log_reason("Invalid request for user file transfer from $reqhost",       $r->log_reason("Invalid request for user file transfer from $reqhost (".join(",",@hostids).")", 
                    $r->filename);                      $r->filename); 
     return FORBIDDEN;      return FORBIDDEN;
 }  }
Line 70  sub removefile { Line 79  sub removefile {
     } 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.11  
changed lines
  Added in v.1.18


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