version 1.159.2.5.2.3, 2019/02/06 15:14:10
|
version 1.159.2.8.2.7, 2020/10/26 01:19:53
|
Line 332 sub sso_login {
|
Line 332 sub sso_login {
|
($is_balancer,$otherserver) = |
($is_balancer,$otherserver) = |
&Apache::lonnet::check_loadbalancing($user,$domain,'login'); |
&Apache::lonnet::check_loadbalancing($user,$domain,'login'); |
if ($is_balancer) { |
if ($is_balancer) { |
if ($otherserver eq '') { |
# Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer) |
|
my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r); |
|
if (($found_server) && ($balancer_cookie =~ /^\Q$domain\E_\Q$user\E_/)) { |
|
$otherserver = $found_server; |
|
} elsif ($otherserver eq '') { |
my $lowest_load; |
my $lowest_load; |
($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($domain); |
($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($domain); |
if ($lowest_load > 100) { |
if ($lowest_load > 100) { |
$otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$domain); |
$otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$domain); |
} |
} |
} |
if ($otherserver ne '') { |
if ($otherserver ne '') { |
my @hosts = &Apache::lonnet::current_machine_ids(); |
my @hosts = &Apache::lonnet::current_machine_ids(); |
if (grep(/^\Q$otherserver\E$/,@hosts)) { |
if (grep(/^\Q$otherserver\E$/,@hosts)) { |
$hosthere = $otherserver; |
$hosthere = $otherserver; |
} |
} |
} |
} |
} |
} |
} |
Line 505 sub handler {
|
Line 509 sub handler {
|
my $preserved; |
my $preserved; |
foreach my $pair (split(/&/,$query)) { |
foreach my $pair (split(/&/,$query)) { |
my ($name, $value) = split(/=/,$pair); |
my ($name, $value) = split(/=/,$pair); |
unless ($name eq 'symb') { |
unless (($name eq 'symb') || ($name eq 'usehttp')) { |
$preserved .= $pair.'&'; |
$preserved .= $pair.'&'; |
} |
} |
if (($env{'request.course.id'}) && ($name eq 'folderpath')) { |
if (($env{'request.course.id'}) && ($name eq 'folderpath')) { |
Line 524 sub handler {
|
Line 528 sub handler {
|
} |
} |
} elsif ($env{'request.course.id'} && |
} elsif ($env{'request.course.id'} && |
(($requrl =~ m{^/adm/$match_domain/$match_username/aboutme$}) || |
(($requrl =~ m{^/adm/$match_domain/$match_username/aboutme$}) || |
($requrl =~ m{^/public/$cdom/$cnum/syllabus$}) || |
($requrl =~ m{^/public/$cdom/$cnum/syllabus$}))) { |
($requrl =~ m{^/adm/$cdom/$cnum/\d+/ext\.tool$}))) { |
|
my $query = $r->args; |
my $query = $r->args; |
if ($query) { |
if ($query) { |
foreach my $pair (split(/&/,$query)) { |
foreach my $pair (split(/&/,$query)) { |
Line 534 sub handler {
|
Line 537 sub handler {
|
if ($value =~ /^supplemental/) { |
if ($value =~ /^supplemental/) { |
$suppext = 1; |
$suppext = 1; |
} |
} |
|
last; |
} |
} |
} |
} |
} |
} |
Line 562 sub handler {
|
Line 566 sub handler {
|
my $checkexempt; |
my $checkexempt; |
if ($env{'user.loadbalexempt'} eq $r->dir_config('lonHostID')) { |
if ($env{'user.loadbalexempt'} eq $r->dir_config('lonHostID')) { |
if ($env{'user.loadbalcheck.time'} + 600 > time) { |
if ($env{'user.loadbalcheck.time'} + 600 > time) { |
$checkexempt = 1; |
$checkexempt = 1; |
} |
} |
} |
} |
if ($env{'user.noloadbalance'} eq $r->dir_config('lonHostID')) { |
if ($env{'user.noloadbalance'} eq $r->dir_config('lonHostID')) { |
$checkexempt = 1; |
$checkexempt = 1; |
} |
} |
unless ($checkexempt) { |
unless (($checkexempt) || (($requrl eq '/adm/switchserver') && (!$r->is_initial_req()))) { |
($is_balancer,$otherserver) = |
($is_balancer,$otherserver) = |
&Apache::lonnet::check_loadbalancing($env{'user.name'}, |
&Apache::lonnet::check_loadbalancing($env{'user.name'}, |
$env{'user.domain'}); |
$env{'user.domain'}); |
} |
if ($is_balancer) { |
if ($is_balancer) { |
# Check if browser sent a LON-CAPA load balancer cookie (and this is a balancer) |
$r->set_handlers('PerlResponseHandler'=> |
my ($found_server,$balancer_cookie) = &Apache::lonnet::check_for_balancer_cookie($r); |
[\&Apache::switchserver::handler]); |
if (($found_server) && ($balancer_cookie =~ /^\Q$env{'user.domain'}\E_\Q$env{'user.name'}\E_/)) { |
if ($otherserver ne '') { |
$otherserver = $found_server; |
$env{'form.otherserver'} = $otherserver; |
} |
} |
unless ($requrl eq '/adm/switchserver') { |
unless (($env{'form.origurl'}) || ($r->uri eq '/adm/roles') || |
$r->set_handlers('PerlResponseHandler'=> |
($r->uri eq '/adm/switchserver') || ($r->uri eq '/adm/sso')) { |
[\&Apache::switchserver::handler]); |
$env{'form.origurl'} = $r->uri; |
} |
|
if ($otherserver ne '') { |
|
$env{'form.otherserver'} = $otherserver; |
|
} |
|
unless (($env{'form.origurl'}) || ($r->uri eq '/adm/roles') || |
|
($r->uri eq '/adm/switchserver') || ($r->uri eq '/adm/sso')) { |
|
$env{'form.origurl'} = $r->uri; |
|
} |
} |
} |
} |
} |
if ($requrl=~m{^/+tiny/+$match_domain/+\w+$}) { |
if ($requrl=~m{^/+tiny/+$match_domain/+\w+$}) { |
return OK; |
if ($env{'user.name'} eq 'public' && |
|
$env{'user.domain'} eq 'public') { |
|
$env{'request.firsturl'}=$requrl; |
|
return FORBIDDEN; |
|
} else { |
|
return OK; |
|
} |
} |
} |
|
|
# ---------------------------------------------------------------- Check access |
# ---------------------------------------------------------------- Check access |
my $now = time; |
my $now = time; |
if ($requrl !~ m{^/(?:adm|public|prtspool)/} |
my $check_symb; |
|
if ($requrl !~ m{^/(?:adm|public|(?:prt|zip)spool)/} |
|| $requrl =~ /^\/adm\/.*\/(smppg|bulletinboard)(\?|$ )/x) { |
|| $requrl =~ /^\/adm\/.*\/(smppg|bulletinboard)(\?|$ )/x) { |
my $access=&Apache::lonnet::allowed('bre',$requrl); |
my ($access,$poss_symb); |
|
if (($env{'request.course.id'}) && (!$suppext)) { |
|
$requrl=~/\.(\w+)$/; |
|
if ((&Apache::loncommon::fileembstyle($1) eq 'ssi') || |
|
($requrl=~/^\/adm\/.*\/(aboutme|smppg|bulletinboard)(\?|$ )/x) || |
|
($requrl=~/^\/adm\/wrapper\//) || |
|
($requrl=~m|^/adm/coursedocs/showdoc/|) || |
|
($requrl=~m|\.problem/smpedit$|) || |
|
($requrl=~/^\/public\/.*\/syllabus$/) || |
|
($requrl=~/^\/adm\/(viewclasslist|navmaps)$/) || |
|
($requrl=~/^\/adm\/.*\/aboutme\/portfolio(\?|$)/) || |
|
($requrl=~m{^/adm/$cdom/$cnum/\d+/ext\.tool$})) { |
|
$check_symb = 1; |
|
} |
|
} |
|
if ($check_symb) { |
|
if ($env{'form.symb'}) { |
|
$poss_symb=&Apache::lonnet::symbclean($env{'form.symb'}); |
|
} elsif (($env{'request.course.id'}) && ($r->args ne '')) { |
|
my $query = $r->args; |
|
foreach my $pair (split(/&/,$query)) { |
|
my ($name, $value) = split(/=/,$pair); |
|
$name = &unescape($name); |
|
$value =~ tr/+/ /; |
|
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg; |
|
if ($name eq 'symb') { |
|
$poss_symb = &Apache::lonnet::symbclean($value); |
|
last; |
|
} |
|
} |
|
} |
|
if ($poss_symb) { |
|
my ($possmap,$resid,$url)=&Apache::lonnet::decode_symb($poss_symb); |
|
$url = &Apache::lonnet::clutter($url); |
|
unless (($url eq $requrl) && (&Apache::lonnet::is_on_map($possmap))) { |
|
undef($poss_symb); |
|
} |
|
if ($poss_symb) { |
|
if ((!$env{'request.role.adv'}) && ($env{'acc.randomout'}) && |
|
($env{'acc.randomout'}=~/\&\Q$poss_symb\E\&/)) { |
|
undef($poss_symb); |
|
} |
|
} |
|
} |
|
if ($poss_symb) { |
|
$access=&Apache::lonnet::allowed('bre',$requrl,$poss_symb); |
|
} else { |
|
$access=&Apache::lonnet::allowed('bre',$requrl,'','','','',1); |
|
} |
|
} else { |
|
$access=&Apache::lonnet::allowed('bre',$requrl); |
|
} |
if ($handle eq '') { |
if ($handle eq '') { |
unless ($access eq 'F') { |
unless ($access eq 'F') { |
if ($requrl =~ m{^/res/$match_domain/$match_username/}) { |
if ($requrl =~ m{^/res/$match_domain/$match_username/}) { |
Line 609 sub handler {
|
Line 678 sub handler {
|
return OK; |
return OK; |
} |
} |
if ($access eq 'B') { |
if ($access eq 'B') { |
|
if ($poss_symb) { |
|
if ($requrl=~m{^(/adm/.*/aboutme)/portfolio$}) { |
|
$requrl = $1; |
|
} |
|
if (&Apache::lonnet::symbverify($poss_symb,$requrl)) { |
|
$env{'request.symb'} = $poss_symb; |
|
} |
|
} |
&Apache::blockedaccess::setup_handler($r); |
&Apache::blockedaccess::setup_handler($r); |
return OK; |
return OK; |
} |
} |
Line 659 sub handler {
|
Line 736 sub handler {
|
$env{'user.domain'} eq 'public' && |
$env{'user.domain'} eq 'public' && |
$requrl !~ m{^/+(res|public|uploaded)/} && |
$requrl !~ m{^/+(res|public|uploaded)/} && |
$requrl !~ m{^/adm/[^/]+/[^/]+/aboutme/portfolio$ }x && |
$requrl !~ m{^/adm/[^/]+/[^/]+/aboutme/portfolio$ }x && |
$requrl !~ m{^/adm/blockingstatus/.*$} && |
$requrl !~ m{^/adm/blockingstatus/.*$} && |
$requrl !~ m{^/+adm/(help|logout|restrictedaccess|randomlabel\.png)}) { |
$requrl !~ m{^/+adm/(help|logout|restrictedaccess|randomlabel\.png)}) { |
$env{'request.querystring'}=$r->args; |
$env{'request.querystring'}=$r->args; |
$env{'request.firsturl'}=$requrl; |
$env{'request.firsturl'}=$requrl; |
Line 668 sub handler {
|
Line 745 sub handler {
|
# ------------------------------------------------------------- This is allowed |
# ------------------------------------------------------------- This is allowed |
if ($env{'request.course.id'}) { |
if ($env{'request.course.id'}) { |
&Apache::lonnet::countacc($requrl); |
&Apache::lonnet::countacc($requrl); |
$requrl=~/\.(\w+)$/; |
|
my $query=$r->args; |
my $query=$r->args; |
if ((&Apache::loncommon::fileembstyle($1) eq 'ssi') || |
if ($check_symb) { |
($requrl=~/^\/adm\/.*\/(aboutme|smppg|bulletinboard)(\?|$ )/x) || |
|
($requrl=~/^\/adm\/wrapper\//) || |
|
($requrl=~m|^/adm/coursedocs/showdoc/|) || |
|
($requrl=~m|\.problem/smpedit$|) || |
|
($requrl=~/^\/public\/.*\/syllabus$/) || |
|
($requrl=~/^\/adm\/(viewclasslist|navmaps)$/) || |
|
($requrl=~/^\/adm\/.*\/aboutme\/portfolio(\?|$)/) || |
|
($requrl=~m{^/adm/$cdom/$cnum/\d+/ext\.tool$})) { |
|
# ------------------------------------- This is serious stuff, get symb and log |
# ------------------------------------- This is serious stuff, get symb and log |
my $symb; |
my $symb; |
if ($query) { |
if ($query) { |
Line 686 sub handler {
|
Line 754 sub handler {
|
} |
} |
if ($env{'form.symb'}) { |
if ($env{'form.symb'}) { |
$symb=&Apache::lonnet::symbclean($env{'form.symb'}); |
$symb=&Apache::lonnet::symbclean($env{'form.symb'}); |
if ($requrl =~ m|^/adm/wrapper/| |
if ($requrl eq '/adm/navmaps') { |
|
my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb); |
|
&Apache::lonnet::symblist($map,$murl => [$murl,$mid]); |
|
} elsif ($requrl =~ m|^/adm/wrapper/| |
|| $requrl =~ m|^/adm/coursedocs/showdoc/|) { |
|| $requrl =~ m|^/adm/coursedocs/showdoc/|) { |
my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb); |
my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb); |
|
if ($map =~ /\.page$/) { |
|
my $mapsymb = &Apache::lonnet::symbread($map); |
|
($map,$mid,$murl)=&Apache::lonnet::decode_symb($mapsymb); |
|
} |
&Apache::lonnet::symblist($map,$murl => [$murl,$mid], |
&Apache::lonnet::symblist($map,$murl => [$murl,$mid], |
'last_known' =>[$murl,$mid]); |
'last_known' =>[$murl,$mid]); |
} elsif ((&Apache::lonnet::symbverify($symb,$requrl)) || |
} elsif ((&Apache::lonnet::symbverify($symb,$requrl)) || |
Line 697 sub handler {
|
Line 772 sub handler {
|
(($requrl=~m|(.*/aboutme)/portfolio$|) && |
(($requrl=~m|(.*/aboutme)/portfolio$|) && |
&Apache::lonnet::symbverify($symb,$1))) { |
&Apache::lonnet::symbverify($symb,$1))) { |
my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb); |
my ($map,$mid,$murl)=&Apache::lonnet::decode_symb($symb); |
|
if (($map =~ /\.page$/) && ($requrl !~ /\.page$/)) { |
|
my $mapsymb = &Apache::lonnet::symbread($map); |
|
($map,$mid,$murl)=&Apache::lonnet::decode_symb($mapsymb); |
|
} |
&Apache::lonnet::symblist($map,$murl => [$murl,$mid], |
&Apache::lonnet::symblist($map,$murl => [$murl,$mid], |
'last_known' =>[$murl,$mid]); |
'last_known' =>[$murl,$mid]); |
} else { |
} else { |
Line 710 sub handler {
|
Line 789 sub handler {
|
if ($requrl=~m{^(/adm/.*/aboutme)/portfolio$}) { |
if ($requrl=~m{^(/adm/.*/aboutme)/portfolio$}) { |
$requrl = $1; |
$requrl = $1; |
} |
} |
unless ($suppext) { |
$symb=&Apache::lonnet::symbread($requrl); |
$symb=&Apache::lonnet::symbread($requrl); |
if (&Apache::lonnet::is_on_map($requrl) && $symb) { |
if (&Apache::lonnet::is_on_map($requrl) && $symb && |
my ($encstate,$invalidsymb); |
!&Apache::lonnet::symbverify($symb,$requrl)) { |
unless (&Apache::lonnet::symbverify($symb,$requrl,\$encstate)) { |
$r->log_reason('Invalid symb for '.$requrl.': '.$symb); |
$invalidsymb = 1; |
$env{'user.error.msg'}= |
# |
"$requrl:bre:1:1:Invalid Access"; |
# If $env{'request.enc'} inconsistent with encryption expected for $symb |
return HTTP_NOT_ACCEPTABLE; |
# retrieved by lonnet::symbread(), call again to check for an instance of |
} |
# $requrl in the course for which expected encryption matches request.enc. |
if ($symb) { |
# If symb for different instance passes lonnet::symbverify(), use that as |
my ($map,$mid,$murl)= |
# the symb for $requrl and call &Apache::lonnet::allowed() for that symb. |
&Apache::lonnet::decode_symb($symb); |
# Report invalid symb if there is no other symb. Redirect to /adm/ambiguous |
&Apache::lonnet::symblist($map,$murl =>[$murl,$mid], |
# if multiple possible symbs consistent with request.enc available for $requrl. |
'last_known' =>[$murl,$mid]); |
# |
} |
if (($env{'request.enc'} && !$encstate) || (!$env{'request.enc'} && $encstate)) { |
|
my %possibles; |
|
my $nocache = 1; |
|
my $oldsymb = $symb; |
|
$symb = &Apache::lonnet::symbread($requrl,'','','',\%possibles,$nocache); |
|
if (($symb) && ($symb ne $oldsymb)) { |
|
if (&Apache::lonnet::symbverify($symb,$requrl)) { |
|
my $access=&Apache::lonnet::allowed('bre',$requrl,$symb); |
|
if ($access eq 'B') { |
|
$env{'request.symb'} = $symb; |
|
&Apache::blockedaccess::setup_handler($r); |
|
return OK; |
|
} elsif (($access eq '2') || ($access eq 'F')) { |
|
$invalidsymb = ''; |
|
} |
|
} |
|
} elsif (keys(%possibles) > 1) { |
|
$r->internal_redirect('/adm/ambiguous'); |
|
return OK; |
|
} |
|
} |
|
if ($invalidsymb) { |
|
$r->log_reason('Invalid symb for '.$requrl.': '.$symb); |
|
$env{'user.error.msg'}= |
|
"$requrl:bre:1:1:Invalid Access"; |
|
return HTTP_NOT_ACCEPTABLE; |
|
} |
|
} |
|
} |
|
if ($symb) { |
|
my ($map,$mid,$murl)= |
|
&Apache::lonnet::decode_symb($symb); |
|
if ($requrl eq '/adm/navmaps') { |
|
&Apache::lonnet::symblist($map,$murl =>[$murl,$mid]); |
|
} else { |
|
if (($map =~ /\.page$/) && ($requrl !~ /\.page$/)) { |
|
my $mapsymb = &Apache::lonnet::symbread($map); |
|
($map,$mid,$murl)=&Apache::lonnet::decode_symb($mapsymb); |
|
} |
|
&Apache::lonnet::symblist($map,$murl =>[$murl,$mid], |
|
'last_known' =>[$murl,$mid]); |
|
} |
} |
} |
} |
} |
$env{'request.symb'}=$symb; |
$env{'request.symb'}=$symb; |
|
if (($env{'request.symbread.cached.'}) && ($env{'request.symbread.cached.'} ne $symb)) { |
|
$env{'request.symbread.cached.'} = $symb; |
|
} |
&Apache::lonnet::courseacclog($symb); |
&Apache::lonnet::courseacclog($symb); |
} else { |
} else { |
# ------------------------------------------------------- This is other content |
# ------------------------------------------------------- This is other content |