Annotation of loncom/auth/lonacc.pm, revision 1.105

1.1       albertel    1: # The LearningOnline Network
                      2: # Cookie Based Access Handler
1.22      www         3: #
1.105   ! raeburn     4: # $Id: lonacc.pm,v 1.104 2007/01/08 15:54:23 raeburn Exp $
1.22      www         5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.25      harris41   28: ###
1.1       albertel   29: 
                     30: package Apache::lonacc;
                     31: 
                     32: use strict;
1.8       www        33: use Apache::Constants qw(:common :http :methods);
1.2       www        34: use Apache::File;
1.6       www        35: use Apache::lonnet;
1.25      harris41   36: use Apache::loncommon();
1.47      www        37: use Apache::lonlocal;
1.86      albertel   38: use Apache::restrictedaccess();
1.103     raeburn    39: use Apache::blockedaccess(); 
1.1       albertel   40: use CGI::Cookie();
1.16      www        41: use Fcntl qw(:flock);
1.85      raeburn    42: use LONCAPA;
1.1       albertel   43: 
1.75      albertel   44: sub cleanup {
                     45:     my ($r)=@_;
                     46:     if (! $r->is_initial_req()) { return DECLINED; }
                     47:     &Apache::lonnet::save_cache();
1.96      albertel   48:     &Apache::lontexconvert::jsMath_reset();
1.75      albertel   49:     return OK;
                     50: }
                     51: 
                     52: sub goodbye {
                     53:     my ($r)=@_;
                     54:     &Apache::lonnet::goodbye();
                     55:     return DONE;
                     56: }
                     57: 
1.76      albertel   58: ###############################################
                     59: 
                     60: sub get_posted_cgi {
                     61:     my ($r) = @_;
                     62: 
                     63:     my $buffer;
                     64:     if ($r->header_in('Content-length')) {
                     65: 	$r->read($buffer,$r->header_in('Content-length'),0);
                     66:     }
                     67:     unless ($buffer=~/^(\-+\w+)\s+Content\-Disposition\:\s*form\-data/si) {
                     68: 	my @pairs=split(/&/,$buffer);
                     69: 	my $pair;
                     70: 	foreach $pair (@pairs) {
                     71: 	    my ($name,$value) = split(/=/,$pair);
                     72: 	    $value =~ tr/+/ /;
                     73: 	    $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                     74: 	    $name  =~ tr/+/ /;
                     75: 	    $name  =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.77      albertel   76: 	    &Apache::loncommon::add_to_env("form.$name",$value);
1.76      albertel   77: 	}
                     78:     } else {
                     79: 	my $contentsep=$1;
                     80: 	my @lines = split (/\n/,$buffer);
                     81: 	my $name='';
                     82: 	my $value='';
                     83: 	my $fname='';
                     84: 	my $fmime='';
                     85: 	my $i;
                     86: 	for ($i=0;$i<=$#lines;$i++) {
                     87: 	    if ($lines[$i]=~/^$contentsep/) {
                     88: 		if ($name) {
                     89: 		    chomp($value);
                     90: 		    if ($fname) {
                     91: 			$env{"form.$name.filename"}=$fname;
                     92: 			$env{"form.$name.mimetype"}=$fmime;
                     93: 		    } else {
                     94: 			$value=~s/\s+$//s;
                     95: 		    }
1.77      albertel   96: 		    &Apache::loncommon::add_to_env("form.$name",$value);
1.76      albertel   97: 		}
                     98: 		if ($i<$#lines) {
                     99: 		    $i++;
                    100: 		    $lines[$i]=~
                    101: 		/Content\-Disposition\:\s*form\-data\;\s*name\=\"([^\"]+)\"/i;
                    102: 		    $name=$1;
                    103: 		    $value='';
                    104: 		    if ($lines[$i]=~/filename\=\"([^\"]+)\"/i) {
                    105: 			$fname=$1;
                    106: 			if 
                    107:                             ($lines[$i+1]=~/Content\-Type\:\s*([\w\-\/]+)/i) {
                    108: 				$fmime=$1;
                    109: 				$i++;
                    110: 			    } else {
                    111: 				$fmime='';
                    112: 			    }
                    113: 		    } else {
                    114: 			$fname='';
                    115: 			$fmime='';
                    116: 		    }
                    117: 		    $i++;
                    118: 		}
                    119: 	    } else {
                    120: 		$value.=$lines[$i]."\n";
                    121: 	    }
                    122: 	}
                    123:     }
                    124: #
                    125: # Digested POSTed values
                    126: #
                    127: # Remember the way this was originally done (GET or POST)
                    128: #
                    129:     $env{'request.method'}=$ENV{'REQUEST_METHOD'};
                    130: #
                    131: # There may also be stuff in the query string
                    132: # Tell subsequent handlers that this was GET, not POST, so they can access query string.
                    133: # Also, unset POSTed content length to cover all tracks.
                    134: #
                    135: 
                    136:     $r->method_number(M_GET);
                    137: 
                    138:     $r->method('GET');
                    139:     $r->headers_in->unset('Content-length');
                    140: }
                    141: 
1.94      albertel  142: # handle the case of the single sign on user, at this point $r->user 
                    143: # will be set and valid now need to find the loncapa user info and possibly
                    144: # balance them
                    145: # returns OK if it was a SSO and user was handled
                    146: #         undef if not SSO or no means to hanle the user
                    147: sub sso_login {
                    148:     my ($r,$lonid,$handle) = @_;
                    149: 
                    150:     my $lonidsdir=$r->dir_config('lonIDsDir');
                    151:     if (!($r->user 
                    152: 	  && (!defined($env{'user.name'}) && !defined($env{'user.domain'}))
                    153: 	  && (!$lonid || !-e "$lonidsdir/$handle.id" || $handle eq ''))) {
                    154: 	# not an SSO case or already logged in
                    155: 	return undef;
                    156:     }
                    157: 
1.97      albertel  158:     my ($user) = ($r->user =~ m/([a-zA-Z0-9_\-@.]*)/);
                    159: 
1.94      albertel  160:     my $domain = $r->dir_config('lonDefDomain');
1.97      albertel  161:     my $home=&Apache::lonnet::homeserver($user,$domain);
1.94      albertel  162:     if ($home !~ /(con_lost|no_host|no_such_host)/) {
                    163: 	if ($r->dir_config("lonBalancer") eq 'yes') {
                    164: 	    # login but immeaditly go to switch server to find us a new 
                    165: 	    # machine
1.97      albertel  166: 	    &Apache::lonauth::success($r,$user,$domain,$home,'noredirect');
1.105   ! raeburn   167:             $env{'request.sso.login'} = 1;
1.94      albertel  168: 	    $r->internal_redirect('/adm/switchserver');
1.101     albertel  169: 	    $r->set_handlers('PerlHandler'=> undef);
1.94      albertel  170: 	} else {
                    171: 	    # need to login them in, so generate the need data that
                    172: 	    # migrate expects to do login
                    173: 	    my %info=('ip'        => $r->connection->remote_ip(),
                    174: 		      'domain'    => $domain,
1.97      albertel  175: 		      'username'  => $user,
1.94      albertel  176: 		      'server'    => $r->dir_config('lonHostID'),
                    177: 		      'sso.login' => 1
                    178: 		      );
                    179: 	    my $token = 
                    180: 		&Apache::lonnet::tmpput(\%info,
                    181: 					$r->dir_config('lonHostID'));
                    182: 	    $env{'form.token'} = $token;
                    183: 	    $r->internal_redirect('/adm/migrateuser');
1.101     albertel  184: 	    $r->set_handlers('PerlHandler'=> undef);
1.94      albertel  185: 	}
                    186: 	return OK;
1.98      albertel  187:     } elsif (defined($r->dir_config('lonSSOUserUnknownRedirect'))) {
1.104     raeburn   188:         $r->subprocess_env->set('SSOUserUnknown' => $user);
                    189:         $r->subprocess_env->set('SSOUserDomain' => $domain);
1.98      albertel  190: 	$r->internal_redirect($r->dir_config('lonSSOUserUnknownRedirect'));
1.101     albertel  191: 	$r->set_handlers('PerlHandler'=> undef);
1.94      albertel  192: 	return OK;
                    193:     }
                    194:     return undef;
                    195: }
                    196: 
1.1       albertel  197: sub handler {
                    198:     my $r = shift;
                    199:     my $requrl=$r->uri;
                    200:     my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
                    201:     my $lonid=$cookies{'lonID'};
                    202:     my $cookie;
1.70      albertel  203:     my $lonidsdir=$r->dir_config('lonIDsDir');
                    204: 
                    205:     my $handle;
1.1       albertel  206:     if ($lonid) {
1.102     albertel  207: 	$handle=&LONCAPA::clean_handle($lonid->value);
1.70      albertel  208:     }
1.93      albertel  209: 
1.99      albertel  210:     my $result = &sso_login($r,$lonid,$handle);
1.100     albertel  211:     if (defined($result)) {
1.94      albertel  212: 	return $result
1.70      albertel  213:     }
                    214: 
1.94      albertel  215: 
1.70      albertel  216:     if ($r->dir_config("lonBalancer") eq 'yes') {
                    217: 	$r->set_handlers('PerlResponseHandler'=>
                    218: 			 [\&Apache::switchserver::handler]);
                    219:     }
1.92      albertel  220:     
                    221:     if ($handle eq '') {
                    222: 	$r->log_reason("Cookie $handle not valid", $r->filename); 
                    223:     } elsif ((-e "$lonidsdir/$handle.id") && ($handle ne '')) {
1.6       www       224: 
1.46      www       225: # ------------------------------------------------------ Initialize Environment
                    226: 
1.92      albertel  227: 	&Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
1.47      www       228: 
                    229: # --------------------------------------------------------- Initialize Language
                    230: 
1.92      albertel  231: 	&Apache::lonlocal::get_language_handle($r);
                    232: 
                    233:     }
1.46      www       234: 
1.92      albertel  235: # -------------------------------------------------- Should be a valid user now
                    236:     if ($env{'user.name'} ne '' && $env{'user.domain'} ne '') {
1.46      www       237: # -------------------------------------------------------------- Resource State
1.6       www       238: 
1.92      albertel  239: 	if ($requrl=~/^\/+(res|uploaded)\//) {
                    240: 	    $env{'request.state'} = "published";
                    241: 	} else {
                    242: 	    $env{'request.state'} = 'unknown';
                    243: 	}
                    244: 	$env{'request.filename'} = $r->filename;
                    245: 	$env{'request.noversionuri'} = &Apache::lonnet::deversion($requrl);
1.6       www       246: # -------------------------------------------------------- Load POST parameters
                    247: 
1.92      albertel  248: 	&Apache::lonacc::get_posted_cgi($r);
1.6       www       249: 
                    250: # ---------------------------------------------------------------- Check access
1.92      albertel  251: 	my $now = time;
1.95      albertel  252: 	if ($requrl !~ m{^/(?:adm|public|prtspool)/}
                    253: 	    || $requrl =~ /^\/adm\/.*\/(smppg|bulletinboard)(\?|$ )/x) {
1.92      albertel  254: 	    my $access=&Apache::lonnet::allowed('bre',$requrl);
                    255: 	    if ($access eq '1') {
                    256: 		$env{'user.error.msg'}="$requrl:bre:0:0:Choose Course";
                    257: 		return HTTP_NOT_ACCEPTABLE; 
                    258: 	    }
                    259: 	    if ($access eq 'A') {
                    260: 		&Apache::restrictedaccess::setup_handler($r);
                    261: 		return OK;
                    262: 	    }
1.103     raeburn   263:             if ($access eq 'B') {
                    264:                 &Apache::blockedaccess::setup_handler($r);
                    265:                 return OK;
                    266:             }
1.92      albertel  267: 	    if (($access ne '2') && ($access ne 'F')) {
                    268: 		$env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
                    269: 		return HTTP_NOT_ACCEPTABLE; 
1.37      albertel  270: 	    }
1.92      albertel  271: 	}
                    272: 	if ($requrl =~ m|^/prtspool/|) {
                    273: 	    my $start='/prtspool/'.$env{'user.name'}.'_'.
                    274: 		$env{'user.domain'};
                    275: 	    if ($requrl !~ /^\Q$start\E/) {
                    276: 		$env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
                    277: 		return HTTP_NOT_ACCEPTABLE;
1.67      albertel  278: 	    }
1.92      albertel  279: 	}
                    280: 	if ($env{'user.name'} eq 'public' && 
                    281: 	    $env{'user.domain'} eq 'public' &&
                    282: 	    $requrl !~ m{^/+(res|public|uploaded)/} &&
                    283: 	    $requrl !~ m{^/adm/[^/]+/[^/]+/aboutme/portfolio$ }x &&
                    284: 	    $requrl !~ m{^/+adm/(help|logout|restrictedaccess|randomlabel\.png)}) {
                    285: 	    $env{'request.querystring'}=$r->args;
                    286: 	    $env{'request.firsturl'}=$requrl;
                    287: 	    return FORBIDDEN;
                    288: 	}
1.23      www       289: # ------------------------------------------------------------- This is allowed
1.92      albertel  290: 	if ($env{'request.course.id'}) {
1.24      www       291: 	    &Apache::lonnet::countacc($requrl);
1.92      albertel  292: 	    $requrl=~/\.(\w+)$/;
                    293: 	    if ((&Apache::loncommon::fileembstyle($1) eq 'ssi') ||
                    294: 		($requrl=~/^\/adm\/.*\/(aboutme|navmaps|smppg|bulletinboard)(\?|$ )/x) ||
                    295: 		($requrl=~/^\/adm\/wrapper\//) ||
                    296: 		($requrl=~m|^/adm/coursedocs/showdoc/|) ||
                    297: 		($requrl=~m|\.problem/smpedit$|) ||
                    298: 		($requrl=~/^\/public\/.*\/syllabus$/)) {
1.23      www       299: # ------------------------------------- This is serious stuff, get symb and log
1.29      www       300: 		my $query=$r->args;
1.92      albertel  301: 		my $symb;
                    302: 		if ($query) {
1.29      www       303: 		    &Apache::loncommon::get_unprocessed_cgi($query,['symb']);
1.92      albertel  304: 		}
                    305: 		if ($env{'form.symb'}) {
1.64      albertel  306: 		    $symb=&Apache::lonnet::symbclean($env{'form.symb'});
1.92      albertel  307: 		    if ($requrl =~ m|^/adm/wrapper/|
1.72      albertel  308: 			|| $requrl =~ m|^/adm/coursedocs/showdoc/|) {
1.92      albertel  309: 			my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb);
                    310: 			&Apache::lonnet::symblist($map,$murl => [$murl,$mid],
1.63      albertel  311: 						  'last_known' =>[$murl,$mid]);
1.92      albertel  312: 		    } elsif ((&Apache::lonnet::symbverify($symb,$requrl)) ||
1.53      albertel  313: 			     (($requrl=~m|(.*)/smpedit$|) &&
                    314: 			      &Apache::lonnet::symbverify($symb,$1))) {
1.92      albertel  315: 			my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb);
                    316: 			&Apache::lonnet::symblist($map,$murl => [$murl,$mid],
                    317: 						  'last_known' =>[$murl,$mid]);
1.31      www       318: 		    } else {
                    319: 			$r->log_reason('Invalid symb for '.$requrl.': '.
1.92      albertel  320: 				       $symb);
                    321: 			$env{'user.error.msg'}=
                    322: 			    "$requrl:bre:1:1:Invalid Access";
                    323: 			return HTTP_NOT_ACCEPTABLE; 
                    324: 		    }
                    325: 		} else {
                    326: 		    $symb=&Apache::lonnet::symbread($requrl);
1.58      albertel  327: 		    if (&Apache::lonnet::is_on_map($requrl) && $symb &&
1.56      albertel  328: 			!&Apache::lonnet::symbverify($symb,$requrl)) {
1.58      albertel  329: 			$r->log_reason('Invalid symb for '.$requrl.': '.$symb);
1.92      albertel  330: 			$env{'user.error.msg'}=
                    331: 			    "$requrl:bre:1:1:Invalid Access";
                    332: 			return HTTP_NOT_ACCEPTABLE; 
1.55      albertel  333: 		    }
1.61      albertel  334: 		    if ($symb) {
1.65      albertel  335: 			my ($map,$mid,$murl)=
                    336: 			    &Apache::lonnet::decode_symb($symb);
1.63      albertel  337: 			&Apache::lonnet::symblist($map,$murl =>[$murl,$mid],
1.92      albertel  338: 						  'last_known' =>[$murl,$mid]);
1.61      albertel  339: 		    }
1.92      albertel  340: 		}
                    341: 		$env{'request.symb'}=$symb;
                    342: 		&Apache::lonnet::courseacclog($symb);
                    343: 	    } else {
1.23      www       344: # ------------------------------------------------------- This is other content
1.92      albertel  345: 		&Apache::lonnet::courseacclog($requrl);    
                    346: 	    }
1.88      albertel  347: 	}
1.92      albertel  348: 	return OK;
                    349:     }
1.21      www       350: # -------------------------------------------- See if this is a public resource
1.68      albertel  351:     if ($requrl=~m|^/+adm/+help/+|) {
1.89      albertel  352:  	return OK;
1.68      albertel  353:     }
1.90      albertel  354: # ------------------------------------ See if this is a viewable portfolio file
1.89      albertel  355:     if (&Apache::lonnet::is_portfolio_url($requrl)) {
1.90      albertel  356: 	my $access=&Apache::lonnet::allowed('bre',$requrl);
                    357: 	if ($access eq 'A') {
                    358: 	    &Apache::restrictedaccess::setup_handler($r);
                    359: 	    return OK;
                    360: 	}
                    361: 	if (($access ne '2') && ($access ne 'F')) {
                    362: 	    $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
                    363: 	    return HTTP_NOT_ACCEPTABLE;
                    364: 	}
1.79      raeburn   365:     }
1.87      albertel  366: 
1.34      www       367: # -------------------------------------------------------------- Not authorized
                    368:     $requrl=~/\.(\w+)$/;
1.62      albertel  369: #    if ((&Apache::loncommon::fileembstyle($1) eq 'ssi') ||
                    370: #        ($requrl=~/^\/adm\/(roles|logout|email|menu|remote)/) ||
                    371: #        ($requrl=~m|^/prtspool/|)) {
1.34      www       372: # -------------------------- Store where they wanted to go and get login screen
1.64      albertel  373: 	$env{'request.querystring'}=$r->args;
                    374: 	$env{'request.firsturl'}=$requrl;
1.34      www       375:        return FORBIDDEN;
1.62      albertel  376: #   } else {
1.34      www       377: # --------------------------------------------------------------------- Goodbye
1.62      albertel  378: #       return HTTP_BAD_REQUEST;
                    379: #   }
1.1       albertel  380: }
                    381: 
                    382: 1;
                    383: __END__
1.25      harris41  384: 
                    385: =head1 NAME
                    386: 
                    387: Apache::lonacc - Cookie Based Access Handler
                    388: 
                    389: =head1 SYNOPSIS
                    390: 
                    391: Invoked (for various locations) by /etc/httpd/conf/srm.conf:
                    392: 
                    393:  PerlAccessHandler       Apache::lonacc
                    394: 
                    395: =head1 INTRODUCTION
                    396: 
                    397: This module enables cookie based authentication and is used
                    398: to control access for many different LON-CAPA URIs.
                    399: 
                    400: Whenever the client sends the cookie back to the server, 
                    401: this cookie is handled by either lonacc.pm or loncacc.pm
                    402: (see srm.conf for what is invoked when).  If
                    403: the cookie is missing or invalid, the user is re-challenged
                    404: for login information.
                    405: 
                    406: This is part of the LearningOnline Network with CAPA project
                    407: described at http://www.lon-capa.org.
                    408: 
                    409: =head1 HANDLER SUBROUTINE
                    410: 
                    411: This routine is called by Apache and mod_perl.
                    412: 
                    413: =over 4
                    414: 
                    415: =item *
                    416: 
                    417: transfer profile into environment
                    418: 
                    419: =item *
                    420: 
                    421: load POST parameters
                    422: 
                    423: =item *
                    424: 
                    425: check access
                    426: 
                    427: =item *
                    428: 
                    429: if allowed, get symb, log, generate course statistics if applicable
                    430: 
                    431: =item *
                    432: 
                    433: otherwise return error
                    434: 
                    435: =item *
                    436: 
                    437: see if public resource
                    438: 
                    439: =item *
                    440: 
                    441: store attempted access
                    442: 
                    443: =back
                    444: 
                    445: =cut

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