Diff for /loncom/auth/lonracc.pm between versions 1.7 and 1.12

version 1.7, 2002/10/29 18:34:33 version 1.12, 2004/04/26 00:07:29
Line 25 Line 25
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
 # (lonacc: Cookie Based Access Handler  
 # 5/21/99,5/22,5/29,5/31,6/15 Gerd Kortemeyer)  
 # 6/16,6/18,7/3,  
 # 6/30/00 Gerd Kortemeyer  
   
 package Apache::lonracc;  package Apache::lonracc;
   
Line 60  sub handler { Line 56  sub handler {
        $r->log_reason("Spoof request from ".$ENV{'REMOTE_ADDR'});         $r->log_reason("Spoof request from ".$ENV{'REMOTE_ADDR'});
        return FORBIDDEN;         return FORBIDDEN;
     }      }
       if ($reqhost eq 'localhost.localdomain') {
          return OK;
       }
     my $readline;      my $readline;
     my $lontabdir=$r->dir_config('lonTabDir');      my $lontabdir=$r->dir_config('lonTabDir');
     {      {
Line 68  sub handler { Line 67  sub handler {
           $r->log_reason("Could not find host tab file");            $r->log_reason("Could not find host tab file");
           return FORBIDDEN;            return FORBIDDEN;
        }         }
          my $return;
          my @ids=();
        while ($readline=<$fh>) {         while ($readline=<$fh>) {
           my ($id,$domain,$role,$name,$ip)=split(/:/,$readline);            my ($id,$domain,$role,$name,$ip)=split(/:/,$readline);
           if ($name =~ /$reqhost/i) {            if ($name =~ /$reqhost/i) {
               my $filename=$r->filename;                my $filename=$r->filename;
                 my $uri =$r->uri;
               if ((-e "$filename.$id") ||                if ((-e "$filename.$id") ||
   &subscribed($filename,$id) ||    &subscribed($filename,$id) ||
   ($filename=~/\.meta$/)) {    ($filename=~/\.meta$/) ||
                     ($uri=~m|^/raw/uploaded|)) {
          return OK;           return OK;
               } else {                } 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->log_reason("Invalid request for file transfer from $reqhost", 
                    $r->filename);                      $r->filename); 

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


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