Diff for /loncom/auth/lontokacc.pm between versions 1.13 and 1.16

version 1.13, 2005/02/07 17:04:53 version 1.16, 2006/02/07 19:46:26
Line 37  use IO::Socket; Line 37  use IO::Socket;
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     my $reqhost = $r->get_remote_host(REMOTE_NOLOOKUP);      my $reqhost = $r->get_remote_host(REMOTE_NOLOOKUP);
     my $netaddr=inet_aton($reqhost);      my %iphost=&Apache::lonnet::get_iphost();
     ($reqhost) = gethostbyaddr($netaddr,AF_INET);      my $hostids=$iphost{$reqhost};
     if (!$reqhost) {      if (!$hostids && $reqhost ne '127.0.0.1' ) {
  $r->log_reason("Unable to do hostname $reqhost lookup for ".$r->get_remote_host(REMOTE_NOLOOKUP));   $r->log_reason("Unable to find a host for ".
          $r->get_remote_host(REMOTE_NOLOOKUP));
  return FORBIDDEN;   return FORBIDDEN;
     }      }
     if ($reqhost eq 'localhost.localdomain') {      if ($reqhost eq '127.0.0.1') {
        return OK;         return OK;
     }      }
     my $readline;      my $readline;
Line 57  sub handler { Line 58  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 76  sub removefile { Line 80  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.13  
changed lines
  Added in v.1.16


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