Diff for /loncom/auth/lontokacc.pm between versions 1.7 and 1.14

version 1.7, 2002/10/21 19:15:10 version 1.14, 2005/02/10 22:30:56
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 Data::Dumper;  use IO::Socket;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     my $reqhost = $r->get_remote_host(REMOTE_DOUBLE_REV);      my $reqhost = $r->get_remote_host(REMOTE_NOLOOKUP);
     if (!$reqhost && $r->get_remote_host(REMOTE_NOLOOKUP) eq $r->get_server_name()) {       my %iphost=&Apache::lonnet::get_iphost();
         $reqhost = $r->get_server_name();       my $hostids=$iphost{$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;
     }      }
     unless ($reqhost) {      if ($reqhost eq '127.0.0.1') {
         $r->log_reason("Spoof request from ". $reqhost);  
         return FORBIDDEN;  
     }  
     if ($reqhost eq 'localhost.localdomain') {  
        $r->register_cleanup(\&removefile);  
        return OK;         return OK;
     }      }
     my $readline;      my $readline;
Line 57  sub handler { Line 56  sub handler {
           return FORBIDDEN;            return FORBIDDEN;
        }         }
        while ($readline=<$fh>) {         while ($readline=<$fh>) {
           my ($id,$domain,$role,$name,$ip)=split(/:/,$readline);     $readline=~s/\s*$//;
           if ($name =~ /$reqhost/i) {     my ($id,$domain,$role,$name)=split(/:/,$readline);
              $r->register_cleanup(\&removefile);      foreach my $hostid (@{$hostids}) {
              return OK;          if ($name =~ /^\Q$hostid\E$/i) {
           }     return OK; 
          }
      }
        }         }
   
     }      }
Line 74  sub removefile { Line 75  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);
     }      }

Removed from v.1.7  
changed lines
  Added in v.1.14


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