Annotation of loncom/auth/lonacc.pm, revision 1.204
1.1 albertel 1: # The LearningOnline Network
2: # Cookie Based Access Handler
1.22 www 3: #
1.204 ! raeburn 4: # $Id: lonacc.pm,v 1.203 2022/06/18 02:10:18 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:
1.121 jms 30: =head1 NAME
31:
32: Apache::lonacc - Cookie Based Access Handler
33:
34: =head1 SYNOPSIS
35:
36: Invoked (for various locations) by /etc/httpd/conf/srm.conf:
37:
38: PerlAccessHandler Apache::lonacc
39:
40: =head1 INTRODUCTION
41:
42: This module enables cookie based authentication and is used
43: to control access for many different LON-CAPA URIs.
44:
45: Whenever the client sends the cookie back to the server,
46: this cookie is handled by either lonacc.pm or loncacc.pm
47: (see srm.conf for what is invoked when). If
48: the cookie is missing or invalid, the user is re-challenged
49: for login information.
50:
51: This is part of the LearningOnline Network with CAPA project
52: described at http://www.lon-capa.org.
53:
54: =head1 HANDLER SUBROUTINE
55:
56: This routine is called by Apache and mod_perl.
57:
58: =over 4
59:
60: =item *
61:
62: transfer profile into environment
63:
64: =item *
65:
66: load POST parameters
67:
68: =item *
69:
70: check access
71:
72: =item *
73:
74: if allowed, get symb, log, generate course statistics if applicable
75:
76: =item *
77:
78: otherwise return error
79:
80: =item *
81:
82: see if public resource
83:
84: =item *
85:
86: store attempted access
87:
88: =back
89:
90: =head1 NOTABLE SUBROUTINES
91:
92: =cut
93:
1.119 jms 94:
1.1 albertel 95: package Apache::lonacc;
96:
97: use strict;
1.8 www 98: use Apache::Constants qw(:common :http :methods);
1.2 www 99: use Apache::File;
1.6 www 100: use Apache::lonnet;
1.25 harris41 101: use Apache::loncommon();
1.47 www 102: use Apache::lonlocal;
1.86 albertel 103: use Apache::restrictedaccess();
1.148 raeburn 104: use Apache::blockedaccess();
1.175 raeburn 105: use Apache::lonprotected();
1.16 www 106: use Fcntl qw(:flock);
1.141 raeburn 107: use LONCAPA qw(:DEFAULT :match);
1.1 albertel 108:
1.75 albertel 109: sub cleanup {
110: my ($r)=@_;
111: if (! $r->is_initial_req()) { return DECLINED; }
112: &Apache::lonnet::save_cache();
113: return OK;
114: }
115:
116: sub goodbye {
117: my ($r)=@_;
118: &Apache::lonnet::goodbye();
119: return DONE;
120: }
121:
1.76 albertel 122: ###############################################
123:
124: sub get_posted_cgi {
1.114 raeburn 125: my ($r,$fields) = @_;
1.76 albertel 126:
127: my $buffer;
128: if ($r->header_in('Content-length')) {
129: $r->read($buffer,$r->header_in('Content-length'),0);
130: }
1.113 albertel 131: my $content_type = $r->header_in('Content-type');
132: if ($content_type !~ m{^multipart/form-data}) {
1.76 albertel 133: my @pairs=split(/&/,$buffer);
134: my $pair;
135: foreach $pair (@pairs) {
136: my ($name,$value) = split(/=/,$pair);
137: $value =~ tr/+/ /;
138: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
139: $name =~ tr/+/ /;
140: $name =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.114 raeburn 141: if (ref($fields) eq 'ARRAY') {
142: next if (!grep(/^\Q$name\E$/,@{$fields}));
143: }
1.77 albertel 144: &Apache::loncommon::add_to_env("form.$name",$value);
1.76 albertel 145: }
146: } else {
1.113 albertel 147: my ($contentsep) = ($content_type =~ /boundary=\"?([^\";,]+)\"?/);
1.76 albertel 148: my @lines = split (/\n/,$buffer);
149: my $name='';
150: my $value='';
151: my $fname='';
152: my $fmime='';
153: my $i;
154: for ($i=0;$i<=$#lines;$i++) {
1.113 albertel 155: if ($lines[$i]=~/^--\Q$contentsep\E/) {
1.76 albertel 156: if ($name) {
1.139 raeburn 157: chomp($value);
158: if (($r->uri eq '/adm/portfolio') &&
159: ($name eq 'uploaddoc')) {
160: if (length($value) == 1) {
161: $value=~s/[\r\n]$//;
162: }
1.202 raeburn 163: }
164: if ($fname =~ /\.(xls|doc|ppt)(x|m)$/i) {
1.154 raeburn 165: $value=~s/[\r\n]$//;
1.139 raeburn 166: }
1.114 raeburn 167: if (ref($fields) eq 'ARRAY') {
168: next if (!grep(/^\Q$name\E$/,@{$fields}));
169: }
1.118 raeburn 170: if ($fname) {
171: if ($env{'form.symb'} ne '') {
172: my $size = (length($value))/(1024.0 * 1024.0);
173: if (&upload_size_allowed($name,$size,$fname) eq 'ok') {
174: $env{"form.$name.filename"}=$fname;
175: $env{"form.$name.mimetype"}=$fmime;
176: &Apache::loncommon::add_to_env("form.$name",$value);
177: }
178: } else {
179: $env{"form.$name.filename"}=$fname;
180: $env{"form.$name.mimetype"}=$fmime;
181: &Apache::loncommon::add_to_env("form.$name",$value);
182: }
183: } else {
184: $value=~s/\s+$//s;
185: &Apache::loncommon::add_to_env("form.$name",$value);
186: }
1.76 albertel 187: }
188: if ($i<$#lines) {
189: $i++;
190: $lines[$i]=~
191: /Content\-Disposition\:\s*form\-data\;\s*name\=\"([^\"]+)\"/i;
192: $name=$1;
193: $value='';
194: if ($lines[$i]=~/filename\=\"([^\"]+)\"/i) {
195: $fname=$1;
196: if
197: ($lines[$i+1]=~/Content\-Type\:\s*([\w\-\/]+)/i) {
198: $fmime=$1;
199: $i++;
200: } else {
201: $fmime='';
202: }
203: } else {
204: $fname='';
205: $fmime='';
206: }
1.162 damieng 207: if ($i<$#lines && $lines[$i+1]=~/^Content\-Type\:\s*([\w\-\/]+)/i) {
208: # TODO: something with $1 !
209: $i++;
210: }
211: if ($i<$#lines && $lines[$i+1]=~/^Content\-transfer\-encoding\:\s*([\w\-\/]+)/i) {
212: # TODO: something with $1 !
213: $i++;
214: }
1.76 albertel 215: $i++;
216: }
217: } else {
218: $value.=$lines[$i]."\n";
219: }
220: }
221: }
222: #
223: # Digested POSTed values
224: #
225: # Remember the way this was originally done (GET or POST)
226: #
227: $env{'request.method'}=$ENV{'REQUEST_METHOD'};
228: #
229: # There may also be stuff in the query string
230: # Tell subsequent handlers that this was GET, not POST, so they can access query string.
231: # Also, unset POSTed content length to cover all tracks.
232: #
233:
234: $r->method_number(M_GET);
235:
236: $r->method('GET');
237: $r->headers_in->unset('Content-length');
238: }
239:
1.121 jms 240: =pod
241:
1.146 raeburn 242: =over
243:
1.121 jms 244: =item upload_size_allowed()
245:
246: Perform size checks for file uploads to essayresponse items in course context.
247:
248: Add form.HWFILESIZE.$part_$id to %env with file size (MB)
249: If file exceeds maximum allowed size, add form.HWFILETOOBIG.$part_$id to %env.
250:
251: =cut
1.118 raeburn 252:
253: sub upload_size_allowed {
254: my ($name,$size,$fname) = @_;
255: if ($name =~ /^HWFILE(\w+)$/) {
256: my $ident = $1;
257: my $item = 'HWFILESIZE'.$ident;
1.122 raeburn 258: my $savesize = sprintf("%.6f",$size);
259: &Apache::loncommon::add_to_env("form.$item",$savesize);
1.118 raeburn 260: my $maxsize= &Apache::lonnet::EXT("resource.$ident.maxfilesize");
261: if (!$maxsize) {
1.123 raeburn 262: $maxsize = 10.0; # FIXME This should become a domain configuration.
1.118 raeburn 263: }
264: if ($size > $maxsize) {
265: my $warn = 'HWFILETOOBIG'.$ident;
266: &Apache::loncommon::add_to_env("form.$warn",$fname);
267: return;
268: }
269: }
270: return 'ok';
271: }
272:
1.121 jms 273: =pod
274:
275: =item sso_login()
276:
277: handle the case of the single sign on user, at this point $r->user
1.150 raeburn 278: will be set and valid; now need to find the loncapa user info, and possibly
1.149 raeburn 279: balance them. If $r->user() is set this means either it was either set by
1.150 raeburn 280: SSO or by checkauthen.pm, if a valid cookie was found. The latter case can
281: be identified by the third arg ($usename), except when lonacc is called in
282: an internal redirect to /adm/switchserver (e.g., load-balancing following
283: successful authentication) -- no cookie set yet. For that particular case
1.203 raeburn 284: simply skip the call to sso_login().
1.149 raeburn 285:
286: returns OK if it was SSO and user was handled.
287: returns undef if not SSO or no means to handle the user.
1.203 raeburn 288:
289: In the case where the session was started from /adm/launch/tiny/$domain/$id,
290: i.e., for a protected link, with launch from another CMS, and user information
291: is accepted from the LTI payload, then, if the user has privileged roles,
292: authentication will be required. If SSO authentication is with a username
293: and/or domain that differ from the username in the LTI payload and domain
294: in the launch URL, then $r->user() will be unset and /adm/relaunch will be
295: called.
1.121 jms 296:
297: =cut
1.117 jms 298:
1.94 albertel 299: sub sso_login {
1.149 raeburn 300: my ($r,$handle,$username) = @_;
1.94 albertel 301:
1.156 raeburn 302: if (($r->user eq '') || ($username ne '') || ($r->user eq 'public:public') ||
1.143 raeburn 303: (defined($env{'user.name'}) && (defined($env{'user.domain'}))
304: && ($handle ne ''))) {
1.94 albertel 305: # not an SSO case or already logged in
306: return undef;
307: }
308:
1.161 raeburn 309: my ($user) = ($r->user =~ m/^($match_username)$/);
310: if ($user eq '') {
311: return undef;
312: }
1.97 albertel 313:
1.126 raeburn 314: my $query = $r->args;
315: my %form;
316: if ($query) {
1.200 raeburn 317: my @items = ('role','symb','iptoken','origurl','ttoken',
318: 'ltoken','linkkey','logtoken','sso');
1.127 raeburn 319: &Apache::loncommon::get_unprocessed_cgi($query,\@items);
320: foreach my $item (@items) {
321: if (defined($env{'form.'.$item})) {
322: $form{$item} = $env{'form.'.$item};
1.126 raeburn 323: }
324: }
325: }
326:
1.145 raeburn 327: my %sessiondata;
328: if ($form{'iptoken'}) {
329: %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
1.158 raeburn 330: my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
331: unless ($sessiondata{'sessionserver'}) {
332: delete($form{'iptoken'});
333: }
1.145 raeburn 334: }
335:
1.203 raeburn 336: my ($linkprot,$linkprotuser,$linkkey,$deeplinkurl);
1.200 raeburn 337:
338: #
339: # If Shibboleth auth is in use, and a dual SSO and non-SSO login page
340: # is in use, then the query string will contain the logtoken item with
341: # a value set to the name of a .tmp file in /home/httpd/perl/tmp
342: # containing the url to display after authentication, and also,
343: # optionally, role and symb, or linkprot or linkkey (deep-link access).
344: #
345: # If Shibboleth auth is in use, but a dual log-in page is not in use,
346: # and the originally requested URL was /tiny/$domain/$id (i.e.,
347: # for deeplinking), then the query string will contain the sso item
348: # with a value set to the name of a .tmp file in /home/httpd/perl/tmp
349: # containing the url to display after authentication, and also,
350: # optionally, linkprot or linkkey (deep-link access).
351: #
352: # Otherwise the query string may contain role and symb, or if the
353: # originally requested URL was /tiny/$domain/$id (i.e. for deeplinking)
354: # then the query string may contain a ttoken item with a value set
355: # to the name of a .tmp file in /home/httpd/perl/tmp containing either
356: # linkprot or linkkey (deep-link access).
357: #
358: # If deep-linked, i.e., the originally requested URL was /tiny/$domain/$id
359: # the linkkey may have originally been sent in POSTed data, which will
360: # have been processed in lontrans.pm
361: #
362:
363: if ($form{'ttoken'}) {
364: my %info = &Apache::lonnet::tmpget($form{'ttoken'});
365: &Apache::lonnet::tmpdel($form{'ttoken'});
366: if ($info{'origurl'}) {
367: $form{'origurl'} = $info{'origurl'};
1.203 raeburn 368: if ($form{'origurl'} =~ m{^/tiny/$match_domain/\w+$}) {
369: $deeplinkurl = $form{'origurl'};
370: }
1.200 raeburn 371: }
372: if ($info{'linkprot'}) {
373: $linkprot = $info{'linkprot'};
1.203 raeburn 374: $linkprotuser = $info{'linkprotuser'};
1.200 raeburn 375: } elsif ($info{'linkkey'} ne '') {
376: $linkkey = $info{'linkkey'};
377: }
378: } elsif ($form{'logtoken'}) {
1.199 raeburn 379: my ($firsturl,@rest);
380: my $lonhost = $r->dir_config('lonHostID');
381: my $tmpinfo = &Apache::lonnet::reply('tmpget:'.$form{'logtoken'},$lonhost);
382: my $delete = &Apache::lonnet::tmpdel($form{'logtoken'});
1.200 raeburn 383: unless (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
384: ($tmpinfo eq 'no_such_host')) {
385: (undef,$firsturl,@rest) = split(/&/,$tmpinfo);
386: if ($firsturl ne '') {
387: $firsturl = &unescape($firsturl);
388: }
389: foreach my $item (@rest) {
390: my ($key,$value) = split(/=/,$item);
391: $form{$key} = &unescape($value);
392: }
393: if ($firsturl =~ m{^/tiny/$match_domain/\w+$}) {
394: $form{'origurl'} = $firsturl;
1.203 raeburn 395: $deeplinkurl = $firsturl;
1.200 raeburn 396: }
397: if ($form{'linkprot'}) {
398: $linkprot = $form{'linkprot'};
1.203 raeburn 399: $linkprotuser = $form{'linkprotuser'};
1.200 raeburn 400: } elsif ($form{'linkkey'} ne '') {
401: $linkkey = $form{'linkkey'};
402: }
403: if ($form{'iptoken'}) {
404: %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
405: my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
406: }
1.199 raeburn 407: }
1.200 raeburn 408: } elsif ($form{'sso'}) {
409: my $lonhost = $r->dir_config('lonHostID');
410: my $info = &Apache::lonnet::reply('tmpget:'.$form{'sso'},$lonhost);
411: &Apache::lonnet::tmpdel($form{'sso'});
412: unless (($info=~/^error/) || ($info eq 'con_lost') ||
413: ($info eq 'no_such_host')) {
414: my ($firsturl,@rest)=split(/\&/,$info);
415: if ($firsturl ne '') {
416: $form{'origurl'} = &unescape($firsturl);
1.203 raeburn 417: if ($form{'origurl'} =~ m{^/tiny/$match_domain/\w+$}) {
418: $deeplinkurl = $form{'origurl'};
419: }
1.200 raeburn 420: }
421: foreach my $item (@rest) {
422: my ($key,$value) = split(/=/,$item);
423: $form{$key} = &unescape($value);
424: }
425: if ($form{'linkprot'}) {
426: $linkprot = $form{'linkprot'};
1.203 raeburn 427: $linkprotuser = $form{'linkprotuser'};
1.200 raeburn 428: } elsif ($form{'linkkey'} ne '') {
429: $linkkey = $form{'linkkey'};
430: }
1.199 raeburn 431: }
1.200 raeburn 432: } elsif ($form{'ltoken'}) {
1.194 raeburn 433: my %link_info = &Apache::lonnet::tmpget($form{'ltoken'});
434: $linkprot = $link_info{'linkprot'};
1.203 raeburn 435: if (($linkprot) && ($link_info{'linkprotuser'} ne '')) {
436: $linkprotuser = $link_info{'linkprotuser'};
437: }
1.194 raeburn 438: my $delete = &Apache::lonnet::tmpdel($form{'ltoken'});
1.200 raeburn 439: delete($form{'ltoken'});
1.203 raeburn 440: if ($form{'origurl'} =~ m{^/tiny/$match_domain/\w+$}) {
441: $deeplinkurl = $form{'origurl'};
442: }
1.200 raeburn 443: } elsif ($form{'linkkey'} ne '') {
1.194 raeburn 444: $linkkey = $form{'linkkey'};
445: }
446:
1.136 raeburn 447: my $domain = $r->dir_config('lonSSOUserDomain');
448: if ($domain eq '') {
449: $domain = $r->dir_config('lonDefDomain');
450: }
1.203 raeburn 451: if (($deeplinkurl) && ($linkprot) && ($linkprotuser ne '')) {
452: unless ($linkprotuser eq $user.':'.$domain) {
453: $r->user();
454: my %data = (
455: origurl => $deeplinkurl,
456: linkprot => $linkprot,
457: linkprotuser => $linkprotuser,
458: );
459: my $token = &Apache::lonnet::tmpput(\%data,$r->dir_config('lonHostID'),'link');
460: unless (($token eq 'con_lost') || ($token eq 'refused') || ($token =~ /^error:/) ||
461: ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
462: $r->internal_redirect('/adm/relaunch?rtoken='.$token);
463: $r->set_handlers('PerlHandler'=> undef);
464: return OK;
465: }
466: }
467: }
1.97 albertel 468: my $home=&Apache::lonnet::homeserver($user,$domain);
1.94 albertel 469: if ($home !~ /(con_lost|no_host|no_such_host)/) {
1.107 albertel 470: &Apache::lonnet::logthis(" SSO authorized user $user ");
1.145 raeburn 471: my ($is_balancer,$otherserver,$hosthere);
472: if ($form{'iptoken'}) {
1.158 raeburn 473: if (($sessiondata{'domain'} eq $domain) &&
474: ($sessiondata{'username'} eq $user)) {
1.145 raeburn 475: $hosthere = 1;
476: }
477: }
478: unless ($hosthere) {
479: ($is_balancer,$otherserver) =
1.165 raeburn 480: &Apache::lonnet::check_loadbalancing($user,$domain,'login');
481: if ($is_balancer) {
1.171 raeburn 482: # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
483: my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);
484: if (($found_server) && ($balancer_cookie =~ /^\Q$domain\E_\Q$user\E_/)) {
485: $otherserver = $found_server;
486: } elsif ($otherserver eq '') {
1.165 raeburn 487: my $lowest_load;
488: ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($domain);
489: if ($lowest_load > 100) {
1.190 raeburn 490: $otherserver = &Apache::lonnet::spareserver($r,$lowest_load,$lowest_load,1,$domain);
1.165 raeburn 491: }
1.171 raeburn 492: if ($otherserver ne '') {
493: my @hosts = &Apache::lonnet::current_machine_ids();
494: if (grep(/^\Q$otherserver\E$/,@hosts)) {
495: $hosthere = $otherserver;
496: }
1.165 raeburn 497: }
498: }
499: }
1.145 raeburn 500: }
1.165 raeburn 501: if (($is_balancer) && (!$hosthere)) {
1.136 raeburn 502: # login but immediately go to switch server to find us a new
1.94 albertel 503: # machine
1.127 raeburn 504: &Apache::lonauth::success($r,$user,$domain,$home,'noredirect');
1.172 raeburn 505: foreach my $item (keys(%form)) {
506: $env{'form.'.$item} = $form{$item};
507: }
1.191 raeburn 508: unless (($form{'symb'}) || ($form{'origurl'})) {
1.172 raeburn 509: unless (($r->uri eq '/adm/roles') || ($r->uri eq '/adm/sso')) {
510: $env{'form.origurl'} = $r->uri;
511: }
512: }
1.194 raeburn 513: if (($r->uri eq '/adm/sso') && ($form{'origurl'} =~ m{^/+tiny/+$match_domain/+\w+$})) {
514: $env{'request.deeplink.login'} = $form{'origurl'};
515: } elsif ($r->uri =~ m{^/+tiny/+$match_domain/+\w+$}) {
516: $env{'request.deeplink.login'} = $r->uri;
517: }
518: if ($env{'request.deeplink.login'}) {
519: if ($linkprot) {
1.197 raeburn 520: $env{'request.linkprot'} = $linkprot;
1.203 raeburn 521: if ($linkprotuser ne '') {
522: $env{'request.linkprotuser'} = $linkprotuser;
523: }
1.194 raeburn 524: } elsif ($linkkey ne '') {
1.197 raeburn 525: $env{'request.linkkey'} = $linkkey;
1.194 raeburn 526: }
527: }
1.105 raeburn 528: $env{'request.sso.login'} = 1;
1.106 raeburn 529: if (defined($r->dir_config("lonSSOReloginServer"))) {
530: $env{'request.sso.reloginserver'} =
531: $r->dir_config('lonSSOReloginServer');
532: }
1.137 raeburn 533: my $redirecturl = '/adm/switchserver';
534: if ($otherserver ne '') {
535: $redirecturl .= '?otherserver='.$otherserver;
536: }
537: $r->internal_redirect($redirecturl);
1.101 albertel 538: $r->set_handlers('PerlHandler'=> undef);
1.94 albertel 539: } else {
540: # need to login them in, so generate the need data that
541: # migrate expects to do login
1.184 raeburn 542: my $ip = &Apache::lonnet::get_requestor_ip($r);
1.147 raeburn 543: my %info=('ip' => $ip,
1.94 albertel 544: 'domain' => $domain,
1.97 albertel 545: 'username' => $user,
1.94 albertel 546: 'server' => $r->dir_config('lonHostID'),
547: 'sso.login' => 1
548: );
1.191 raeburn 549: foreach my $item ('role','symb','iptoken','origurl') {
1.126 raeburn 550: if (exists($form{$item})) {
551: $info{$item} = $form{$item};
1.200 raeburn 552: } elsif ($sessiondata{$item} ne '') {
553: $info{$item} = $sessiondata{$item};
1.126 raeburn 554: }
555: }
1.191 raeburn 556: unless (($info{'symb'}) || ($info{'origurl'})) {
1.152 raeburn 557: unless (($r->uri eq '/adm/roles') || ($r->uri eq '/adm/sso')) {
1.151 raeburn 558: $info{'origurl'} = $r->uri;
559: }
560: }
1.194 raeburn 561: if (($r->uri eq '/adm/sso') && ($form{'origurl'} =~ m{^/+tiny/+$match_domain/+\w+$})) {
562: $info{'deeplink.login'} = $form{'origurl'};
563: } elsif ($r->uri =~ m{^/+tiny/+$match_domain/+\w+$}) {
564: $info{'deeplink.login'} = $r->uri;
565: }
566: if ($info{'deeplink.login'}) {
567: if ($linkprot) {
568: $info{'linkprot'} = $linkprot;
569: } elsif ($linkkey ne '') {
570: $info{'linkkey'} = $linkkey;
571: }
572: }
1.116 raeburn 573: if ($r->dir_config("ssodirecturl") == 1) {
574: $info{'origurl'} = $r->uri;
575: }
1.106 raeburn 576: if (defined($r->dir_config("lonSSOReloginServer"))) {
577: $info{'sso.reloginserver'} =
578: $r->dir_config('lonSSOReloginServer');
579: }
1.165 raeburn 580: if (($is_balancer) && ($hosthere)) {
581: $info{'noloadbalance'} = $hosthere;
582: }
1.203 raeburn 583: my $token = &Apache::lonnet::tmpput(\%info,$r->dir_config('lonHostID'),'sso');
1.94 albertel 584: $env{'form.token'} = $token;
585: $r->internal_redirect('/adm/migrateuser');
1.101 albertel 586: $r->set_handlers('PerlHandler'=> undef);
1.94 albertel 587: }
588: return OK;
1.155 raeburn 589: } else {
1.107 albertel 590: &Apache::lonnet::logthis(" SSO authorized unknown user $user ");
1.115 raeburn 591: my @cancreate;
592: my %domconfig =
593: &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);
594: if (ref($domconfig{'usercreation'}) eq 'HASH') {
595: if (ref($domconfig{'usercreation'}{'cancreate'}) eq 'HASH') {
596: if (ref($domconfig{'usercreation'}{'cancreate'}{'selfcreate'}) eq 'ARRAY') {
597: @cancreate = @{$domconfig{'usercreation'}{'cancreate'}{'selfcreate'}};
598: } elsif (($domconfig{'usercreation'}{'cancreate'}{'selfcreate'} ne 'none') &&
599: ($domconfig{'usercreation'}{'cancreate'}{'selfcreate'} ne '')) {
600: @cancreate = ($domconfig{'usercreation'}{'cancreate'}{'selfcreate'});
601: }
602: }
603: }
1.155 raeburn 604: if ((grep(/^sso$/,@cancreate)) || (defined($r->dir_config('lonSSOUserUnknownRedirect')))) {
605: $r->subprocess_env->set('SSOUserUnknown' => $user);
606: $r->subprocess_env->set('SSOUserDomain' => $domain);
607: if (grep(/^sso$/,@cancreate)) {
1.200 raeburn 608: #FIXME - need to preserve origurl, role and symb, or linkprot or linkkey for use after account
609: # creation
1.155 raeburn 610: $r->set_handlers('PerlHandler'=> [\&Apache::createaccount::handler]);
611: $r->handler('perl-script');
612: } else {
613: $r->internal_redirect($r->dir_config('lonSSOUserUnknownRedirect'));
614: $r->set_handlers('PerlHandler'=> undef);
615: }
616: return OK;
1.115 raeburn 617: }
1.94 albertel 618: }
619: return undef;
620: }
621:
1.1 albertel 622: sub handler {
623: my $r = shift;
624: my $requrl=$r->uri;
1.149 raeburn 625:
626: if ($requrl =~ m{^/res/adm/pages/[^/]+\.(gif|png)$}) {
1.108 raeburn 627: return OK;
628: }
1.70 albertel 629:
1.149 raeburn 630: if (&Apache::lonnet::is_domainimage($requrl)) {
1.124 raeburn 631: return OK;
632: }
633:
1.149 raeburn 634: my %user;
635: my $handle = &Apache::lonnet::check_for_valid_session($r,undef,\%user);
1.93 albertel 636:
1.150 raeburn 637: unless (($requrl eq '/adm/switchserver') && (!$r->is_initial_req())) {
638: my $result = &sso_login($r,$handle,$user{'name'});
639: if (defined($result)) {
640: return $result;
641: }
1.70 albertel 642: }
643:
1.137 raeburn 644: my ($is_balancer,$otherserver);
1.142 raeburn 645:
1.92 albertel 646: if ($handle eq '') {
1.159 raeburn 647: unless ((($requrl eq '/adm/switchserver') && (!$r->is_initial_req())) ||
648: ($requrl =~ m{^/public/$match_domain/$match_courseid/syllabus}) ||
1.196 raeburn 649: ($requrl =~ m{^/adm/help/}) || ($requrl eq '/adm/sso') ||
1.159 raeburn 650: ($requrl =~ m{^/res/$match_domain/$match_username/})) {
1.149 raeburn 651: $r->log_reason("Cookie not valid", $r->filename);
1.142 raeburn 652: }
1.111 albertel 653: } elsif ($handle ne '') {
1.6 www 654:
1.46 www 655: # ------------------------------------------------------ Initialize Environment
1.111 albertel 656: my $lonidsdir=$r->dir_config('lonIDsDir');
1.92 albertel 657: &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
1.47 www 658:
659: # --------------------------------------------------------- Initialize Language
660:
1.92 albertel 661: &Apache::lonlocal::get_language_handle($r);
662:
663: }
1.46 www 664:
1.92 albertel 665: # -------------------------------------------------- Should be a valid user now
666: if ($env{'user.name'} ne '' && $env{'user.domain'} ne '') {
1.46 www 667: # -------------------------------------------------------------- Resource State
1.6 www 668:
1.141 raeburn 669: my ($cdom,$cnum);
670: if ($env{'request.course.id'}) {
671: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
672: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
673: }
1.92 albertel 674: if ($requrl=~/^\/+(res|uploaded)\//) {
675: $env{'request.state'} = "published";
676: } else {
677: $env{'request.state'} = 'unknown';
678: }
679: $env{'request.filename'} = $r->filename;
680: $env{'request.noversionuri'} = &Apache::lonnet::deversion($requrl);
1.157 raeburn 681: my ($suppext,$checkabsolute);
1.129 raeburn 682: if ($requrl =~ m{^/adm/wrapper/ext/}) {
683: my $query = $r->args;
684: if ($query) {
685: my $preserved;
686: foreach my $pair (split(/&/,$query)) {
687: my ($name, $value) = split(/=/,$pair);
1.174 raeburn 688: unless (($name eq 'symb') || ($name eq 'usehttp')) {
1.129 raeburn 689: $preserved .= $pair.'&';
690: }
1.141 raeburn 691: if (($env{'request.course.id'}) && ($name eq 'folderpath')) {
692: if ($value =~ /^supplemental/) {
693: $suppext = 1;
694: }
695: }
1.129 raeburn 696: }
697: $preserved =~ s/\&$//;
698: if ($preserved) {
699: $env{'request.external.querystring'} = $preserved;
700: }
701: }
1.157 raeburn 702: if ($env{'request.course.id'}) {
703: $checkabsolute = 1;
704: }
1.141 raeburn 705: } elsif ($env{'request.course.id'} &&
706: (($requrl =~ m{^/adm/$match_domain/$match_username/aboutme$}) ||
1.166 raeburn 707: ($requrl eq "/public/$cdom/$cnum/syllabus") ||
1.167 raeburn 708: ($requrl =~ m{^/adm/$cdom/$cnum/\d+/ext\.tool$}))) {
1.141 raeburn 709: my $query = $r->args;
710: if ($query) {
711: foreach my $pair (split(/&/,$query)) {
712: my ($name, $value) = split(/=/,$pair);
713: if ($name eq 'folderpath') {
714: if ($value =~ /^supplemental/) {
715: $suppext = 1;
716: }
1.180 raeburn 717: last;
1.141 raeburn 718: }
719: }
720: }
1.157 raeburn 721: if ($requrl =~ m{^/public/$cdom/$cnum/syllabus$}) {
722: $checkabsolute = 1;
723: }
724: }
725: if ($checkabsolute) {
726: my $hostname = $r->hostname();
727: my $lonhost = &Apache::lonnet::host_from_dns($hostname);
728: if ($lonhost) {
1.189 raeburn 729: my $actual = &Apache::lonnet::absolute_url($hostname,1,1);
1.173 raeburn 730: my $exphostname = &Apache::lonnet::hostname($lonhost);
1.157 raeburn 731: my $expected = $Apache::lonnet::protocol{$lonhost}.'://'.$hostname;
732: unless ($actual eq $expected) {
733: $env{'request.use_absolute'} = $expected;
734: }
735: }
1.129 raeburn 736: }
1.6 www 737: # -------------------------------------------------------- Load POST parameters
738:
1.92 albertel 739: &Apache::lonacc::get_posted_cgi($r);
1.6 www 740:
1.137 raeburn 741: # ------------------------------------------------------ Check if load balancer
742:
1.138 raeburn 743: my $checkexempt;
744: if ($env{'user.loadbalexempt'} eq $r->dir_config('lonHostID')) {
745: if ($env{'user.loadbalcheck.time'} + 600 > time) {
1.171 raeburn 746: $checkexempt = 1;
1.138 raeburn 747: }
748: }
1.145 raeburn 749: if ($env{'user.noloadbalance'} eq $r->dir_config('lonHostID')) {
750: $checkexempt = 1;
751: }
1.183 raeburn 752: unless (($checkexempt) || (($requrl eq '/adm/switchserver') && (!$r->is_initial_req()))) {
1.138 raeburn 753: ($is_balancer,$otherserver) =
754: &Apache::lonnet::check_loadbalancing($env{'user.name'},
755: $env{'user.domain'});
1.171 raeburn 756: if ($is_balancer) {
1.183 raeburn 757: # Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer)
758: my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r);
759: if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) {
760: $otherserver = $found_server;
761: }
1.198 raeburn 762: unless ($requrl eq '/adm/switchserver') {
1.183 raeburn 763: $r->set_handlers('PerlResponseHandler'=>
764: [\&Apache::switchserver::handler]);
1.171 raeburn 765: }
766: if ($otherserver ne '') {
767: $env{'form.otherserver'} = $otherserver;
768: }
1.183 raeburn 769: unless (($env{'form.origurl'}) || ($r->uri eq '/adm/roles') ||
770: ($r->uri eq '/adm/switchserver') || ($r->uri eq '/adm/sso')) {
771: $env{'form.origurl'} = $r->uri;
772: }
1.152 raeburn 773: }
1.137 raeburn 774: }
1.169 raeburn 775: if ($requrl=~m{^/+tiny/+$match_domain/+\w+$}) {
1.203 raeburn 776: if ($r->args) {
777: &Apache::loncommon::get_unprocessed_cgi($r->args,['ttoken']);
778: if (defined($env{'form.ttoken'})) {
779: my %info = &Apache::lonnet::tmpget($env{'form.ttoken'});
1.204 ! raeburn 780: if (($info{'origurl'} ne '') && ($info{'origurl'} eq $requrl)) {
! 781: my %data;
! 782: if (($info{'linkprotuser'} ne '') && ($info{'linkprot'}) &&
1.203 raeburn 783: ($info{'linkprotuser'} ne $env{'user.name'}.':'.$env{'user.domain'})) {
1.204 ! raeburn 784: %data = (
1.203 raeburn 785: origurl => $requrl,
786: linkprot => $info{'linkprot'},
787: linkprotuser => $info{'linkprotuser'},
788: );
1.204 ! raeburn 789: } elsif ($info{'ltoken'} ne '') {
! 790: my %ltoken_info = &Apache::lonnet::tmpget($info{'ltoken'});
! 791: if (($ltoken_info{'linkprotuser'} ne '') && ($ltoken_info{'linkprot'}) &&
! 792: ($ltoken_info{'linkprotuser'} ne $env{'user.name'}.':'.$env{'user.domain'})) {
! 793: %data = (
! 794: origurl => $requrl,
! 795: linkprot => $ltoken_info{'linkprot'},
! 796: linkprotuser => $ltoken_info{'linkprotuser'},
! 797: );
! 798: }
! 799: }
! 800: if (keys(%data)) {
! 801: my $delete = &Apache::lonnet::tmpdel($env{'form.ttoken'});
! 802: if ($info{'ltoken'} ne '') {
! 803: my $delete = &Apache::lonnet::tmpdel($info{'ltoken'});
! 804: }
1.203 raeburn 805: my $token =
806: &Apache::lonnet::tmpput(\%data,$r->dir_config('lonHostID'),'retry');
807: unless (($token eq 'con_lost') || ($token eq 'refused') || ($token =~ /^error:/) ||
808: ($token eq 'unknown_cmd') || ($token eq 'no_such_host')) {
809: $r->internal_redirect('/adm/relaunch?rtoken='.$token);
810: $r->set_handlers('PerlHandler'=> undef);
811: return OK;
812: }
813: }
814: }
815: }
816: }
1.178 raeburn 817: if ($env{'user.name'} eq 'public' &&
818: $env{'user.domain'} eq 'public') {
819: $env{'request.firsturl'}=$requrl;
820: return FORBIDDEN;
821: }
1.203 raeburn 822: return OK;
1.169 raeburn 823: }
1.6 www 824: # ---------------------------------------------------------------- Check access
1.92 albertel 825: my $now = time;
1.186 raeburn 826: my ($check_symb,$check_access,$check_block,$access,$poss_symb);
1.177 raeburn 827: if ($requrl !~ m{^/(?:adm|public|(?:prt|zip)spool)/}
1.95 albertel 828: || $requrl =~ /^\/adm\/.*\/(smppg|bulletinboard)(\?|$ )/x) {
1.185 raeburn 829: $check_access = 1;
830: }
1.186 raeburn 831: if ((!$check_access) && ($env{'request.course.id'})) {
832: if (($requrl eq '/adm/viewclasslist') ||
833: ($requrl =~ m{^(/adm/wrapper|)\Q/uploaded/$cdom/$cnum/docs/\E}) ||
834: ($requrl =~ m{^/adm/.*/aboutme$}) ||
835: ($requrl=~m{^/adm/coursedocs/showdoc/}) ||
836: ($requrl=~m{^(/adm/wrapper|)/adm/$cdom/$cnum/\d+/ext\.tool$})) {
837: $check_block = 1;
838: }
839: }
1.185 raeburn 840: if (($env{'request.course.id'}) && (!$suppext)) {
841: $requrl=~/\.(\w+)$/;
842: if ((&Apache::loncommon::fileembstyle($1) eq 'ssi') ||
843: ($requrl=~/^\/adm\/.*\/(aboutme|smppg|bulletinboard)(\?|$ )/x) ||
844: ($requrl=~/^\/adm\/wrapper\//) ||
845: ($requrl=~m|^/adm/coursedocs/showdoc/|) ||
846: ($requrl=~m|\.problem/smpedit$|) ||
847: ($requrl=~/^\/public\/.*\/syllabus$/) ||
848: ($requrl=~/^\/adm\/(viewclasslist|navmaps)$/) ||
849: ($requrl=~/^\/adm\/.*\/aboutme\/portfolio(\?|$)/) ||
850: ($requrl=~m{^/adm/$cdom/$cnum/\d+/ext\.tool$})) {
851: $check_symb = 1;
852: }
853: }
1.186 raeburn 854: if (($check_access) || ($check_block)) {
1.180 raeburn 855: if ($check_symb) {
1.179 raeburn 856: if ($env{'form.symb'}) {
857: $poss_symb=&Apache::lonnet::symbclean($env{'form.symb'});
1.180 raeburn 858: } elsif (($env{'request.course.id'}) && ($r->args ne '')) {
859: my $query = $r->args;
860: foreach my $pair (split(/&/,$query)) {
861: my ($name, $value) = split(/=/,$pair);
1.181 raeburn 862: $name = &unescape($name);
863: $value =~ tr/+/ /;
864: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.180 raeburn 865: if ($name eq 'symb') {
866: $poss_symb = &Apache::lonnet::symbclean($value);
867: last;
868: }
869: }
1.179 raeburn 870: }
871: if ($poss_symb) {
872: my ($possmap,$resid,$url)=&Apache::lonnet::decode_symb($poss_symb);
873: $url = &Apache::lonnet::clutter($url);
1.186 raeburn 874: my $toplevelmap = $env{'course.'.$env{'request.course.id'}.'.url'};
875: unless (($url eq $requrl) && (($possmap eq $toplevelmap) ||
876: (&Apache::lonnet::is_on_map($possmap)))) {
1.179 raeburn 877: undef($poss_symb);
878: }
879: if ($poss_symb) {
880: if ((!$env{'request.role.adv'}) && ($env{'acc.randomout'}) &&
881: ($env{'acc.randomout'}=~/\&\Q$poss_symb\E\&/)) {
882: undef($poss_symb);
1.192 raeburn 883: } elsif ((!$env{'request.role.adv'}) && ($env{'acc.deeplinkout'}) &&
884: ($env{'acc.deeplinkout'}=~/\&\Q$poss_symb\E\&/)) {
885: undef($poss_symb);
1.179 raeburn 886: }
887: }
888: }
889: if ($poss_symb) {
890: $access=&Apache::lonnet::allowed('bre',$requrl,$poss_symb);
891: } else {
892: $access=&Apache::lonnet::allowed('bre',$requrl,'','','','',1);
893: }
894: } else {
1.192 raeburn 895: my $nodeeplinkcheck;
896: if (($check_access) && ($requrl =~ /\.(sequence|page)$/)) {
897: unless ($env{'form.navmap'}) {
898: if ($r->args ne '') {
899: &Apache::loncommon::get_unprocessed_cgi($r->args,['navmap']);
900: unless ($env{'form.navmap'}) {
901: $nodeeplinkcheck = 1;
902: }
903: }
904: }
905: }
1.201 raeburn 906: my $clientip = &Apache::lonnet::get_requestor_ip($r);
907: $access=&Apache::lonnet::allowed('bre',$requrl,'','',$clientip,'','',$nodeeplinkcheck);
1.179 raeburn 908: }
1.186 raeburn 909: }
910: if ($check_block) {
911: if ($access eq 'B') {
912: if ($poss_symb) {
913: if (&Apache::lonnet::symbverify($poss_symb,$requrl)) {
914: $env{'request.symb'} = $poss_symb;
915: }
916: }
917: &Apache::blockedaccess::setup_handler($r);
918: return OK;
919: }
920: } elsif ($check_access) {
1.159 raeburn 921: if ($handle eq '') {
922: unless ($access eq 'F') {
923: if ($requrl =~ m{^/res/$match_domain/$match_username/}) {
924: $r->log_reason("Cookie not valid", $r->filename);
925: }
926: }
927: }
1.92 albertel 928: if ($access eq '1') {
929: $env{'user.error.msg'}="$requrl:bre:0:0:Choose Course";
930: return HTTP_NOT_ACCEPTABLE;
931: }
932: if ($access eq 'A') {
933: &Apache::restrictedaccess::setup_handler($r);
934: return OK;
935: }
1.103 raeburn 936: if ($access eq 'B') {
1.179 raeburn 937: if ($poss_symb) {
938: if (&Apache::lonnet::symbverify($poss_symb,$requrl)) {
939: $env{'request.symb'} = $poss_symb;
940: }
941: }
1.103 raeburn 942: &Apache::blockedaccess::setup_handler($r);
943: return OK;
944: }
1.175 raeburn 945: if ($access eq 'D') {
946: &Apache::lonprotected::setup_handler($r);
947: return OK;
948: }
1.92 albertel 949: if (($access ne '2') && ($access ne 'F')) {
1.130 raeburn 950: if ($requrl =~ m{^/res/}) {
951: $access = &Apache::lonnet::allowed('bro',$requrl);
952: if ($access ne 'F') {
1.132 raeburn 953: if ($requrl eq '/res/lib/templates/simpleproblem.problem/smpedit') {
954: $access = &Apache::lonnet::allowed('bre','/res/lib/templates/simpleproblem.problem');
955: if ($access ne 'F') {
956: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
957: return HTTP_NOT_ACCEPTABLE;
958: }
959: } else {
960: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
961: return HTTP_NOT_ACCEPTABLE;
962: }
1.130 raeburn 963: }
1.160 raeburn 964: } elsif (($handle =~ /^publicuser_\d+$/) && (&Apache::lonnet::is_portfolio_url($requrl))) {
1.198 raeburn 965: my $clientip = &Apache::lonnet::get_requestor_ip($r);
1.160 raeburn 966: if (&Apache::lonnet::allowed('bre',$requrl,undef,undef,$clientip) ne 'F') {
967: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
968: return HTTP_NOT_ACCEPTABLE;
969: }
1.130 raeburn 970: } else {
971: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
972: return HTTP_NOT_ACCEPTABLE;
973: }
1.37 albertel 974: }
1.92 albertel 975: }
976: if ($requrl =~ m|^/prtspool/|) {
977: my $start='/prtspool/'.$env{'user.name'}.'_'.
978: $env{'user.domain'};
979: if ($requrl !~ /^\Q$start\E/) {
980: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
981: return HTTP_NOT_ACCEPTABLE;
1.67 albertel 982: }
1.92 albertel 983: }
1.109 banghart 984: if ($requrl =~ m|^/zipspool/|) {
1.110 banghart 985: my $start='/zipspool/zipout/'.$env{'user.name'}.":".
1.109 banghart 986: $env{'user.domain'};
987: if ($requrl !~ /^\Q$start\E/) {
988: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
989: return HTTP_NOT_ACCEPTABLE;
990: }
991: }
1.92 albertel 992: if ($env{'user.name'} eq 'public' &&
993: $env{'user.domain'} eq 'public' &&
994: $requrl !~ m{^/+(res|public|uploaded)/} &&
995: $requrl !~ m{^/adm/[^/]+/[^/]+/aboutme/portfolio$ }x &&
1.180 raeburn 996: $requrl !~ m{^/adm/blockingstatus/.*$} &&
1.92 albertel 997: $requrl !~ m{^/+adm/(help|logout|restrictedaccess|randomlabel\.png)}) {
998: $env{'request.querystring'}=$r->args;
999: $env{'request.firsturl'}=$requrl;
1000: return FORBIDDEN;
1001: }
1.23 www 1002: # ------------------------------------------------------------- This is allowed
1.92 albertel 1003: if ($env{'request.course.id'}) {
1.24 www 1004: &Apache::lonnet::countacc($requrl);
1.125 raeburn 1005: my $query=$r->args;
1.180 raeburn 1006: if ($check_symb) {
1.23 www 1007: # ------------------------------------- This is serious stuff, get symb and log
1.92 albertel 1008: my $symb;
1009: if ($query) {
1.141 raeburn 1010: &Apache::loncommon::get_unprocessed_cgi($query,['symb','folderpath']);
1.92 albertel 1011: }
1012: if ($env{'form.symb'}) {
1.64 albertel 1013: $symb=&Apache::lonnet::symbclean($env{'form.symb'});
1.187 raeburn 1014: if (($requrl eq '/adm/navmaps') ||
1015: ($requrl =~ m{^/adm/wrapper/}) ||
1016: ($requrl =~ m{^/adm/coursedocs/showdoc/})) {
1017: unless (&Apache::lonnet::symbverify($symb,$requrl)) {
1018: if (&Apache::lonnet::is_on_map($requrl)) {
1019: $symb = &Apache::lonnet::symbread($requrl);
1020: unless (&Apache::lonnet::symbverify($symb,$requrl)) {
1021: undef($symb);
1022: }
1023: }
1024: }
1025: if ($symb) {
1026: if ($requrl eq '/adm/navmaps') {
1027: my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb);
1028: &Apache::lonnet::symblist($map,$murl => [$murl,$mid]);
1029: } elsif (($requrl =~ m{^/adm/wrapper/}) ||
1030: ($requrl =~ m{^/adm/coursedocs/showdoc/})) {
1031: my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb);
1032: if ($map =~ /\.page$/) {
1033: my $mapsymb = &Apache::lonnet::symbread($map);
1.198 raeburn 1034: ($map,$mid,$murl)=&Apache::lonnet::decode_symb($mapsymb);
1.187 raeburn 1035: }
1036: &Apache::lonnet::symblist($map,$murl => [$murl,$mid],
1037: 'last_known' =>[$murl,$mid]);
1038: }
1.176 raeburn 1039: }
1.92 albertel 1040: } elsif ((&Apache::lonnet::symbverify($symb,$requrl)) ||
1.53 albertel 1041: (($requrl=~m|(.*)/smpedit$|) &&
1.134 raeburn 1042: &Apache::lonnet::symbverify($symb,$1)) ||
1043: (($requrl=~m|(.*/aboutme)/portfolio$|) &&
1044: &Apache::lonnet::symbverify($symb,$1))) {
1.92 albertel 1045: my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb);
1.176 raeburn 1046: if (($map =~ /\.page$/) && ($requrl !~ /\.page$/)) {
1047: my $mapsymb = &Apache::lonnet::symbread($map);
1048: ($map,$mid,$murl)=&Apache::lonnet::decode_symb($mapsymb);
1049: }
1.92 albertel 1050: &Apache::lonnet::symblist($map,$murl => [$murl,$mid],
1051: 'last_known' =>[$murl,$mid]);
1.31 www 1052: } else {
1053: $r->log_reason('Invalid symb for '.$requrl.': '.
1.92 albertel 1054: $symb);
1055: $env{'user.error.msg'}=
1056: "$requrl:bre:1:1:Invalid Access";
1057: return HTTP_NOT_ACCEPTABLE;
1058: }
1059: } else {
1.134 raeburn 1060: if ($requrl=~m{^(/adm/.*/aboutme)/portfolio$}) {
1061: $requrl = $1;
1062: }
1.180 raeburn 1063: $symb=&Apache::lonnet::symbread($requrl);
1064: if (&Apache::lonnet::is_on_map($requrl) && $symb) {
1065: my ($encstate,$invalidsymb);
1066: unless (&Apache::lonnet::symbverify($symb,$requrl,\$encstate)) {
1067: $invalidsymb = 1;
1068: #
1.182 raeburn 1069: # If $env{'request.enc'} inconsistent with encryption expected for $symb
1070: # retrieved by lonnet::symbread(), call again to check for an instance of
1071: # $requrl in the course for which expected encryption matches request.enc.
1072: # If symb for different instance passes lonnet::symbverify(), use that as
1073: # the symb for $requrl and call &Apache::lonnet::allowed() for that symb.
1074: # Report invalid symb if there is no other symb. Redirect to /adm/ambiguous
1075: # if multiple possible symbs consistent with request.enc available for $requrl.
1.180 raeburn 1076: #
1.182 raeburn 1077: if (($env{'request.enc'} && !$encstate) || (!$env{'request.enc'} && $encstate)) {
1.180 raeburn 1078: my %possibles;
1079: my $nocache = 1;
1.182 raeburn 1080: my $oldsymb = $symb;
1.180 raeburn 1081: $symb = &Apache::lonnet::symbread($requrl,'','','',\%possibles,$nocache);
1.182 raeburn 1082: if (($symb) && ($symb ne $oldsymb)) {
1.180 raeburn 1083: if (&Apache::lonnet::symbverify($symb,$requrl)) {
1.182 raeburn 1084: my $access=&Apache::lonnet::allowed('bre',$requrl,$symb);
1085: if ($access eq 'B') {
1086: $env{'request.symb'} = $symb;
1087: &Apache::blockedaccess::setup_handler($r);
1088: return OK;
1089: } elsif (($access eq '2') || ($access eq 'F')) {
1090: $invalidsymb = '';
1091: }
1.179 raeburn 1092: }
1.180 raeburn 1093: } elsif (keys(%possibles) > 1) {
1094: $r->internal_redirect('/adm/ambiguous');
1095: return OK;
1.179 raeburn 1096: }
1.180 raeburn 1097: }
1098: if ($invalidsymb) {
1.187 raeburn 1099: if ($requrl eq '/adm/navmaps') {
1.188 raeburn 1100: undef($symb);
1.187 raeburn 1101: } else {
1102: $r->log_reason('Invalid symb for '.$requrl.': '.$symb);
1103: $env{'user.error.msg'}=
1104: "$requrl:bre:1:1:Invalid Access";
1105: return HTTP_NOT_ACCEPTABLE;
1106: }
1.179 raeburn 1107: }
1108: }
1.180 raeburn 1109: }
1110: if ($symb) {
1111: my ($map,$mid,$murl)=
1112: &Apache::lonnet::decode_symb($symb);
1113: if ($requrl eq '/adm/navmaps') {
1114: &Apache::lonnet::symblist($map,$murl =>[$murl,$mid]);
1115: } else {
1116: if (($map =~ /\.page$/) && ($requrl !~ /\.page$/)) {
1117: my $mapsymb = &Apache::lonnet::symbread($map);
1118: ($map,$mid,$murl)=&Apache::lonnet::decode_symb($mapsymb);
1.176 raeburn 1119: }
1.180 raeburn 1120: &Apache::lonnet::symblist($map,$murl =>[$murl,$mid],
1121: 'last_known' =>[$murl,$mid]);
1122: }
1.61 albertel 1123: }
1.92 albertel 1124: }
1125: $env{'request.symb'}=$symb;
1.179 raeburn 1126: if (($env{'request.symbread.cached.'}) && ($env{'request.symbread.cached.'} ne $symb)) {
1127: $env{'request.symbread.cached.'} = $symb;
1128: }
1.92 albertel 1129: &Apache::lonnet::courseacclog($symb);
1130: } else {
1.23 www 1131: # ------------------------------------------------------- This is other content
1.92 albertel 1132: &Apache::lonnet::courseacclog($requrl);
1133: }
1.140 raeburn 1134: if ($requrl =~ m{^/+uploaded/\Q$cdom\E/\Q$cnum\E/(docs|supplemental)/.+\.html?$}) {
1.125 raeburn 1135: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
1136: if ($query) {
1137: &Apache::loncommon::get_unprocessed_cgi($query,['forceedit']);
1138: if ($env{'form.forceedit'}) {
1139: $env{'request.state'} = 'edit';
1140: }
1141: }
1142: }
1.144 raeburn 1143: } elsif ($requrl =~ m{^/+uploaded/\Q$cdom\E/\Q$cnum\E/portfolio/syllabus/.+\.html?$}) {
1144: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
1145: if ($query) {
1146: &Apache::loncommon::get_unprocessed_cgi($query,['forceedit','editmode']);
1147: if (($env{'form.forceedit'}) || ($env{'form.editmode'})) {
1148: $env{'request.state'} = 'edit';
1149: }
1150: }
1151: }
1.125 raeburn 1152: }
1.88 albertel 1153: }
1.92 albertel 1154: return OK;
1.137 raeburn 1155: } else {
1156: my $defdom=$r->dir_config('lonDefDomain');
1157: ($is_balancer,$otherserver) =
1158: &Apache::lonnet::check_loadbalancing(undef,$defdom);
1159: if ($is_balancer) {
1160: $r->set_handlers('PerlResponseHandler'=>
1161: [\&Apache::switchserver::handler]);
1162: if ($otherserver ne '') {
1163: $env{'form.otherserver'} = $otherserver;
1164: }
1165: }
1.92 albertel 1166: }
1.21 www 1167: # -------------------------------------------- See if this is a public resource
1.68 albertel 1168: if ($requrl=~m|^/+adm/+help/+|) {
1.89 albertel 1169: return OK;
1.68 albertel 1170: }
1.90 albertel 1171: # ------------------------------------ See if this is a viewable portfolio file
1.89 albertel 1172: if (&Apache::lonnet::is_portfolio_url($requrl)) {
1.184 raeburn 1173: my $clientip = &Apache::lonnet::get_requestor_ip($r);
1.160 raeburn 1174: my $access=&Apache::lonnet::allowed('bre',$requrl,undef,undef,$clientip);
1.90 albertel 1175: if ($access eq 'A') {
1176: &Apache::restrictedaccess::setup_handler($r);
1177: return OK;
1178: }
1179: if (($access ne '2') && ($access ne 'F')) {
1180: $env{'user.error.msg'}="$requrl:bre:1:1:Access Denied";
1181: return HTTP_NOT_ACCEPTABLE;
1182: }
1.79 raeburn 1183: }
1.87 albertel 1184:
1.34 www 1185: # -------------------------------------------------------------- Not authorized
1186: $requrl=~/\.(\w+)$/;
1.62 albertel 1187: # if ((&Apache::loncommon::fileembstyle($1) eq 'ssi') ||
1188: # ($requrl=~/^\/adm\/(roles|logout|email|menu|remote)/) ||
1189: # ($requrl=~m|^/prtspool/|)) {
1.34 www 1190: # -------------------------- Store where they wanted to go and get login screen
1.64 albertel 1191: $env{'request.querystring'}=$r->args;
1192: $env{'request.firsturl'}=$requrl;
1.34 www 1193: return FORBIDDEN;
1.62 albertel 1194: # } else {
1.34 www 1195: # --------------------------------------------------------------------- Goodbye
1.62 albertel 1196: # return HTTP_BAD_REQUEST;
1197: # }
1.1 albertel 1198: }
1199:
1200: 1;
1201: __END__
1.120 jms 1202:
1.121 jms 1203: =pod
1.120 jms 1204:
1.121 jms 1205: =back
1.120 jms 1206:
1.121 jms 1207: =cut
1.120 jms 1208:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>