Diff for /loncom/auth/lonauth.pm between versions 1.83 and 1.139

version 1.83, 2006/09/19 21:36:24 version 1.139, 2016/02/17 19:15:40
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # User Authentication Module  # User Authentication Module
 #  #
 # $Id$  # $Id$
 #  #
 # Copyright Michigan State University Board of Trustees  # Copyright Michigan State University Board of Trustees
 #  #
 # This file is part of the LearningOnline Network with CAPA (LON-CAPA).  # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
 #  #
 # LON-CAPA is free software; you can redistribute it and/or modify  # LON-CAPA is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by  # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or  # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  # (at your option) any later version.
 #  #
 # LON-CAPA is distributed in the hope that it will be useful,  # LON-CAPA is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.  # GNU General Public License for more details.
 #  #
 # You should have received a copy of the GNU General Public License  # You should have received a copy of the GNU General Public License
 # along with LON-CAPA; if not, write to the Free Software  # along with LON-CAPA; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #  #
 # /home/httpd/html/adm/gpl.txt  # /home/httpd/html/adm/gpl.txt
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
   
 package Apache::lonauth;  package Apache::lonauth;
   
 use strict;  use strict;
 use LONCAPA;  use LONCAPA;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use CGI::Cookie();  use DynaLoader; # for Crypt::DES version
 use DynaLoader; # for Crypt::DES version  use Crypt::DES;
 use Crypt::DES;  use Apache::loncommon();
 use Apache::loncommon();  use Apache::lonnet;
 use Apache::lonnet;  use Apache::lonmenu();
 use Apache::lonmenu();  use Apache::createaccount;
 use Fcntl qw(:flock);  use Fcntl qw(:flock);
 use Apache::lonlocal;  use Apache::lonlocal;
 use GDBM_File;  use Apache::File();
 my %FORM;  use HTML::Entities;
    
 # ------------------------------------------------------------ Successful login  # ------------------------------------------------------------ Successful login
   sub success {
 sub success {      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env) = @_;   $form) = @_;
     my $lonids=$r->dir_config('lonIDsDir');  
   # ------------------------------------------------------------ Get cookie ready
     my $public=($username eq 'public' && $domain eq 'public');      my $cookie =
    &Apache::loncommon::init_user_environment($r, $username, $domain,
 # See if old ID present, if so, remove    $authhost, $form,
     {'extra_env' => $extra_env,});
     my ($filename,$cookie,$userroles);  
     my $now=time;      my $public=($username eq 'public' && $domain eq 'public');
   
     if ($public) {      if ($public or $lowerurl eq 'noredirect') { return $cookie; }
  my $max_public=100;  
  my $oldest;  # -------------------------------------------------------------------- Log this
  my $oldest_time=0;  
  for(my $next=1;$next<=$max_public;$next++) {      &Apache::lonnet::log($domain,$username,$authhost,
     if (-e $lonids."/publicuser_$next.id") {                           "Login $ENV{'REMOTE_ADDR'}");
  my $mtime=(stat($lonids."/publicuser_$next.id"))[9];  
  if ($mtime<$oldest_time || !$oldest_time) {  # ------------------------------------------------- Check for critical messages
     $oldest_time=$mtime;  
     $oldest=$next;      my @what=&Apache::lonnet::dump('critical',$domain,$username);
  }      if ($what[0]) {
     } else {   if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
  $cookie="publicuser_$next";      $lowerurl='/adm/email?critical=display';
  last;          }
     }      }
  }  
  if (!$cookie) { $cookie="publicuser_$oldest"; }  # ------------------------------------------------------------ Get cookie ready
     } else {      $cookie="lonID=$cookie; path=/";
  opendir(DIR,$lonids);  # -------------------------------------------------------- Menu script and info
  while ($filename=readdir(DIR)) {      my $destination = $lowerurl;
     if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {  
  unlink($lonids.'/'.$filename);      if (defined($form->{role})) {
     }          my $envkey = 'user.role.'.$form->{role};
  }          my $now=time;
  closedir(DIR);          my $then=$env{'user.login.time'};
           my $refresh=$env{'user.refresh.time'};
 # Give them a new cookie          my $update=$env{'user.update.time'};
           if (!$update) {
  $cookie="$username\_$now\_$domain\_$authhost";              $update = $then;
               }
 # Initialize roles          if (exists($env{$envkey})) {
               my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
  $userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
     }                                           \$trolecode,\$tstatus,\$tstart,\$tend);
 # ------------------------------------ Check browser type and MathML capability              if ($tstatus eq 'is') {
                   $destination  .= ($destination =~ /\?/) ? '&' : '?';
     my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
         $clientunicode,$clientos) = &Apache::loncommon::decode_user_agent($r);                  $destination .= 'selectrole=1&'.$newrole.'=1';
               }
 # -------------------------------------- Any accessibility options to remember?          }
     if (($FORM{'interface'}) && ($FORM{'remember'} eq 'true')) {      }
  foreach ('imagesuppress','appletsuppress',      if (defined($form->{symb})) {
  'embedsuppress','fontenhance','blackwhite') {          my $destsymb = $form->{symb};
     if ($FORM{$_} eq 'true') {          $destination  .= ($destination =~ /\?/) ? '&' : '?';
  &Apache::lonnet::put('environment',{$_ => 'on'},          if ($destsymb =~ /___/) {
      $domain,$username);              # FIXME Need to deal with encrypted symbs and urls as needed.
     } else {              my ($map,$resid,$desturl)=split(/___/,$destsymb);
  &Apache::lonnet::del('environment',[$_],$domain,$username);              $desturl = &Apache::lonnet::clutter($desturl);
     }              $desturl = &HTML::Entities::encode($desturl,'"<>&');
  }              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     }              $destination .= 'destinationurl='.$desturl.
 # ------------------------------------------------------------- Get environment                              '&destsymb='.$destsymb;
           } else {
     my %userenv=Apache::lonnet::dump('environment',$domain,$username);              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my ($tmp) = keys(%userenv);              $destination .= 'destinationurl='.$destsymb;
     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {          }
  # default remote control to off      }
  if ($userenv{'remote'} ne 'on') { $userenv{'remote'} = 'off'; }      if ($destination =~ m{^/adm/roles}) {
     } else {          $destination  .= ($destination =~ /\?/) ? '&' : '?';
  undef(%userenv);          $destination .= 'source=login';
     }      }
     if (($userenv{'interface'}) && (!$FORM{'interface'})) {  
  $FORM{'interface'}=$userenv{'interface'};      my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');
     }      my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';
     $env{'environment.remote'}=$userenv{'remote'};      my $brcrum = [{'href' => '',
     if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }                     'text' => 'Successful Login'},];
       my $start_page=&Apache::loncommon::start_page('Successful Login',
 # --------------- Do not trust query string to be put directly into environment                                                    $header,
     foreach ('imagesuppress','appletsuppress',                                                    {'bread_crumbs' => $brcrum,});
      'embedsuppress','fontenhance','blackwhite',      my $end_page  =&Apache::loncommon::end_page();
      'interface','localpath','localres') {  
  $FORM{$_}=~s/[\n\r\=]//gs;   my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';
     }  # ------------------------------------------------- Output for successful login
 # --------------------------------------------------------- Write first profile  
       &Apache::loncommon::content_type($r,'text/html');
     {      $r->header_out('Set-cookie' => $cookie);
  my %initial_env =       $r->send_http_header;
     ("user.name"          => $username,  
      "user.domain"        => $domain,      my %lt=&Apache::lonlocal::texthash(
      "user.home"          => $authhost,         'wel' => 'Welcome',
      "browser.type"       => $clientbrowser,         'pro' => 'Login problems?',
      "browser.version"    => $clientversion,         );
      "browser.mathml"     => $clientmathml,      my $loginhelp = &loginhelpdisplay($domain);
      "browser.unicode"    => $clientunicode,      if ($loginhelp) {
      "browser.os"         => $clientos,          $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
      "server.domain"      => $r->dir_config('lonDefDomain'),      }
      "request.course.fn"  => '',  
      "request.course.uri" => '',      my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
      "request.course.sec" => '',      $r->print(<<ENDSUCCESS);
      "request.role"       => 'cm',  $start_page
      "request.role.adv"   => $env{'user.adv'},  $windowinfo
      "request.host"       => $ENV{'REMOTE_ADDR'},);  <h1>$lt{'wel'}</h1>
   $welcome
         if ($FORM{'localpath'}) {  $loginhelp
     $initial_env{"browser.localpath"}  = $FORM{'localpath'};  $continuelink
     $initial_env{"browser.localres"}   = $FORM{'localres'};  $end_page
         }  ENDSUCCESS
       return;
  if ($public) {  }
     $initial_env{"environment.remote"} = "off";  
  }  # --------------------------------------------------------------- Failed login!
  if ($FORM{'interface'}) {  
     $FORM{'interface'}=~s/\W//gs;  sub failed {
     $initial_env{"browser.interface"} = $FORM{'interface'};      my ($r,$message,$form) = @_;
     $env{'browser.interface'}=$FORM{'interface'};      (undef,undef,undef,my $clientmathml,my $clientunicode) =
     foreach my $option ('imagesuppress','appletsuppress',          &Apache::loncommon::decode_user_agent();
  'embedsuppress','fontenhance','blackwhite') {      my $args = {};
  if (($FORM{$option} eq 'true') ||      if ($clientunicode && !$clientmathml) {
     ($userenv{$option} eq 'on')) {          $args = {'browser.unicode' => 1};
     $initial_env{"browser.$option"} = "on";      }
  }  
     }      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
  }      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
       my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
  $env{'user.environment'} = "$lonids/$cookie.id";      if (&Apache::lonnet::domain($udom,'description') eq '') {
           undef($udom);
  if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",      }
  &GDBM_WRCREAT(),0640)) {      my $retry = '/adm/login';
     &add_to_env(\%disk_env,\%initial_env);      if ($uname eq $form->{'uname'}) {
     &add_to_env(\%disk_env,\%userenv,'environment.');          $retry .= '?username='.$uname;
     &add_to_env(\%disk_env,$userroles);      }
     &add_to_env(\%disk_env,$extra_env);      if ($udom) {
     untie(%disk_env);          $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
  } else {      }
     &Apache::lonnet::logthis("<font color=blue>WARNING: ".      if (exists($form->{role})) {
    'Could not create environment storage in lonauth: '.$!);          my $role = &Apache::loncommon::cleanup_html($form->{role});
     return 'error: '.$!;          if ($role ne '') {
  }              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
     }          }
     $env{'request.role'}='cm';      }
     $env{'request.role.adv'}=$env{'user.adv'};      if (exists($form->{symb})) {
     $env{'browser.type'}=$clientbrowser;          my $symb = &Apache::loncommon::cleanup_html($form->{symb});
 # -------------------------------------------------------------------- Log this          if ($symb ne '') {
               $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
     &Apache::lonnet::log($domain,$username,$authhost,          }
                          "Login $ENV{'REMOTE_ADDR'}");      }
       my $end_page = &Apache::loncommon::end_page();
 # ------------------------------------------------- Check for critical messages      &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
     my @what=&Apache::lonnet::dump('critical',$domain,$username);      my @actions =
     if ($what[0]) {           (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {      my $loginhelp = &loginhelpdisplay($udom);
     $lowerurl='/adm/email?critical=display';      if ($loginhelp) {
         }          push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
     }      }
       #FIXME: link to helpdesk might be added here
 # ------------------------------------------------------------ Get cookie ready  
       $r->print(
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }         $start_page
         .'<h2>'.&mt('Sorry ...').'</h2>'
     $cookie="lonID=$cookie; path=/";        .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
 # -------------------------------------------------------- Menu script and info        .&Apache::lonhtmlcommon::actionbox(\@actions)
     my $windowinfo=&Apache::lonmenu::open($clientos);        .$end_page
     my $startupremote=&Apache::lonmenu::startupremote($lowerurl);      );
     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);   }
     my $setflags=&Apache::lonmenu::setflags();  
     my $maincall=&Apache::lonmenu::maincall();  # ------------------------------------------------------------------ Rerouting!
     my $start_page=&Apache::loncommon::start_page('Successful Login',  
   $startupremote,  sub reroute {
   {'no_inline_link' => 1,});      my ($r) = @_;
     my $end_page  =&Apache::loncommon::end_page();      &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
     my $continuelink;      my $msg='<b>'.&mt('Sorry ...').'</b><br />'
     if (($env{'browser.interface'} eq 'textual') ||             .&mt('Please [_1]log in again[_2].');
         ($env{'environment.remote'} eq 'off')) {      &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
  $continuelink="<a href=\"$lowerurl\">".&mt('Continue')."</a>";  }
     }  
 # ------------------------------------------------- Output for successful login  # ---------------------------------------------------------------- Main handler
   
     &Apache::loncommon::content_type($r,'text/html');  sub handler {
     $r->header_out('Set-cookie' => $cookie);      my $r = shift;
     $r->send_http_header;      my $londocroot = $r->dir_config('lonDocRoot');
       my $form;
     my %lt=&Apache::lonlocal::texthash(  # Are we re-routing?
        'wel' => 'Welcome',      if (-e "$londocroot/lon-status/reroute.txt") {
        'mes' => 'Welcome to the Learning<i>Online</i> Network with CAPA. Please wait while your session is being set up',   &reroute($r);
        'pro' => 'Problems',   return OK;
        'log' => 'loginproblems.html',      }
        );  
     $r->print(<<ENDSUCCESS);      &Apache::lonlocal::get_language_handle($r);
 $start_page  
 $setflags  # -------------------------------- Prevent users from attempting to login twice
 $windowinfo      my $handle = &Apache::lonnet::check_for_valid_session($r);
 <h1>$lt{'wel'}</h1>      if ($handle ne '') {
 $lt{'mes'}.<p>          my $lonidsdir=$r->dir_config('lonIDsDir');
 <a href="/adm/$lt{'log'}">$lt{'pro'}?</a></p>          if ($handle=~/^publicuser\_/) {
 $remoteinfo  # For "public user" - remove it, we apparently really want to login
 $maincall              unlink($r->dir_config('lonIDsDir')."/$handle.id");
 $continuelink          } else {
 $end_page  # Indeed, a valid token is found
 ENDSUCCESS              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
 }      &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
 sub add_to_env {      my $start_page =
     my ($idf,$env_data,$prefix) = @_;          &Apache::loncommon::start_page('Already logged in');
     while (my ($key,$value) = each(%$env_data)) {      my $end_page =
  $idf->{$prefix.$key} = $value;          &Apache::loncommon::end_page();
  $env{$prefix.$key}   = $value;              my $dest = '/adm/roles';
     }              if ($env{'form.firsturl'} ne '') {
 }                  $dest = $env{'form.firsturl'};
               }
 # --------------------------------------------------------------- Failed login!              $r->print(
                  $start_page
 sub failed {                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     my ($r,$message) = @_;                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
     {'no_inline_link' => 1,});                .'</p>'
     my $end_page   = &Apache::loncommon::end_page();                .$end_page
               );
     my %lt=('sorry'  => &mt('Sorry ...'),              return OK;
     'please' =>           }
     &mt('Please [_1]log in again[_2].',      }
  "<a href=\"/adm/login?username=$FORM{'uname'}&domain=$FORM{'udom'}\">",  
  '</a>'),  # ---------------------------------------------------- No valid token, continue
     'problemspage' => &mt('loginproblems.html'),  
     'problems'     => 'Problems',  
     );      my $buffer;
     &Apache::loncommon::content_type($r,'text/html');      if ($r->header_in('Content-length') > 0) {
     $r->send_http_header;   $r->read($buffer,$r->header_in('Content-length'),0);
       }
     $r->print(<<ENDFAILED);      my %form;
 $start_page      foreach my $pair (split(/&/,$buffer)) {
 <h1>$lt{'sorry'}</h1>         my ($name,$value) = split(/=/,$pair);
 <p><b>$message</b></p>         $value =~ tr/+/ /;
 <p>$lt{'please'}</p>         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 <p>         $form{$name}=$value;
 <a href="/adm/$lt{'problemspage'}">$lt{'problems'}</a></p>      }
 $end_page  
 ENDFAILED      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
 }   &failed($r,'Username, password and domain need to be specified.',
    \%form);
 # ------------------------------------------------------------------ Rerouting!          return OK;
       }
 sub reroute {  
     my ($r) = @_;  # split user logging in and "su"-user
     &Apache::loncommon::content_type($r,'text/html');  
     $r->send_http_header;      ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});
     my $msg='<h1>Sorry ...</h1>      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
              Please <a href="/">log in again</a>.';      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg);      $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});
 }  
       my $role   = $r->dir_config('lonRole');
 # ---------------------------------------------------------------- Main handler      my $domain = $r->dir_config('lonDefDomain');
       my $prodir = $r->dir_config('lonUsersDir');
 sub handler {      my $contact_name = &mt('LON-CAPA helpdesk');
     my $r = shift;  
   # ---------------------------------------- Get the information from login token
 # Are we re-routing?  
     if (-e '/home/httpd/html/lon-status/reroute.txt') {      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
  &reroute($r);                                        $form{'serverid'});
  return OK;  
     }      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
           ($tmpinfo eq 'no_such_host')) {
     &Apache::lonlocal::get_language_handle($r);   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
           return OK;
 # -------------------------------- Prevent users from attempting to login twice      } else {
     my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
     my $lonid=$cookies{'lonID'};     $form{'serverid'});
     my $cookie;          if ( $reply ne 'ok' ) {
     if ($lonid) {              &failed($r,'Session could not be opened.',\%form);
  my $handle=$lonid->value;      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
         $handle=~s/\W//g;      return OK;
         my $lonidsdir=$r->dir_config('lonIDsDir');   }
         if ((-e "$lonidsdir/$handle.id") && ($handle ne '')) {      }
 # Indeed, a valid token is found  
     &Apache::loncommon::content_type($r,'text/html');      if (!&Apache::lonnet::domain($form{'udom'})) {
     $r->send_http_header;          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
     my $start_page =           return OK;
  &Apache::loncommon::start_page('Already logged in');      }
     my $end_page =   
  &Apache::loncommon::end_page();      my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
     $r->print(<<ENDFAILED);      if ($rolestr) {
 $start_page          $rolestr = &unescape($rolestr);
 <h1>You are already logged in</h1>      }
 <p>Please either <a href="/adm/roles">continue the current session</a> or      if ($symbstr) {
 <a href="/adm/logout">logout</a>.</p>          $symbstr= &unescape($symbstr);
 <p>      }
 <a href="/adm/loginproblems.html">Problems?</a></p>      if ($iptokenstr) {
 $end_page          $iptokenstr = &unescape($iptokenstr);
 ENDFAILED      }
            return OK;      if ($rolestr =~ /^role=/) {
  }          (undef,$form{'role'}) = split('=',$rolestr);
     }      }
       if ($symbstr =~ /^symb=/) {
 # ---------------------------------------------------- No valid token, continue          (undef,$form{'symb'}) = split('=',$symbstr);
       }
       if ($iptokenstr =~ /^iptoken=/) {
     my $buffer;          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
     $r->read($buffer,$r->header_in('Content-length'),0);      }
     my @pairs=split(/&/,$buffer);  
     my $pair; my $name; my $value;      my $upass = $ENV{HTTPS} ? $form{'upass0'}
     undef %FORM;          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
     %FORM=();  
     foreach $pair (@pairs) {  # ---------------------------------------------------------------- Authenticate
        ($name,$value) = split(/=/,$pair);  
        $value =~ tr/+/ /;      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;      my ($cancreate,$statustocreate) =
        $FORM{$name}=$value;          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
     }       my $defaultauth;
       if (ref($cancreate) eq 'ARRAY') {
     if ((!$FORM{'uname'}) || (!$FORM{'upass0'}) || (!$FORM{'udom'})) {          if (grep(/^login$/,@{$cancreate})) {
  failed($r,'Username, password and domain need to be specified.');              $defaultauth = 1;
         return OK;          }
     }      }
       my $clientcancheckhost = 1;
 # split user logging in and "su"-user      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                                                 $form{'udom'},$defaultauth,
     ($FORM{'uname'},$FORM{'suname'})=split(/\:/,$FORM{'uname'});                                                $clientcancheckhost);
     $FORM{'uname'} =~ s/\W//g;     
     $FORM{'suname'} =~ s/\W//g;  # --------------------------------------------------------------------- Failed?
     $FORM{'udom'}  =~ s/\W//g;  
       if ($authhost eq 'no_host') {
     my $role   = $r->dir_config('lonRole');   &failed($r,'Username and/or password could not be authenticated.',
     my $domain = $r->dir_config('lonDefDomain');   \%form);
     my $prodir = $r->dir_config('lonUsersDir');          return OK;
       } elsif ($authhost eq 'no_account_on_host') {
 # ---------------------------------------- Get the information from login token          if ($defaultauth) {
               my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$FORM{'logtoken'},              unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
                                       $FORM{'serverid'});                  return OK;
               }
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost')) {              my $start_page =
  failed($r,'Information needed to verify your login information is missing, inaccessible or expired.');                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
         return OK;              my $lonhost = $r->dir_config('lonHostID');
     } else {              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
  my $reply = &Apache::lonnet::reply('tmpdel:'.$FORM{'logtoken'},              my $contacts =
    $FORM{'serverid'});                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
         if ( $reply ne 'ok' ) {                                                          $form{'udom'},$origmail);
             &failed($r,'Session could not be opened.');              my ($contact_email) = split(',',$contacts);
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $FORM{'serverid'}." to get login token");              my $output =
     return OK;                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
  }                                                         $domdesc,'',$lonhost,
     }                                                         $contact_email,$contact_name,
     my ($key,$firsturl)=split(/&/,$tmpinfo);                                                         undef,$statustocreate);
               &Apache::loncommon::content_type($r,'text/html');
     my $keybin=pack("H16",$key);              $r->send_http_header;
               &Apache::createaccount::print_header($r,$start_page);
     my $cipher;              $r->print('<h3>'.&mt('Account creation').'</h3>'.
     if ($Crypt::DES::VERSION>=2.03) {                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
  $cipher=new Crypt::DES $keybin;                        $output.&Apache::loncommon::end_page());
     }              return OK;
     else {          } else {
  $cipher=new DES $keybin;              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
     }              return OK;
     my $upass='';          }
     for (my $i=0;$i<=2;$i++) {      }
  my $chunk=  
     $cipher->decrypt(unpack("a8",pack("H16",substr($FORM{'upass'.$i},0,16))));      if (($firsturl eq '') ||
    ($firsturl=~/^\/adm\/(logout|remote)/)) {
  $chunk.=   $firsturl='/adm/roles';
     $cipher->decrypt(unpack("a8",pack("H16",substr($FORM{'upass'.$i},16,16))));      }
   
  $chunk=substr($chunk,1,ord(substr($chunk,0,1)));      my $hosthere;
  $upass.=$chunk;      if ($form{'iptoken'}) {
     }          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
           my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
 # ---------------------------------------------------------------- Authenticate          if (($sessiondata{'domain'} eq $form{'udom'}) &&
     my $authhost=Apache::lonnet::authenticate($FORM{'uname'},              ($sessiondata{'username'} eq $form{'uname'})) {
                                               $upass,              $hosthere = 1;
                                               $FORM{'udom'});          }
           }
 # --------------------------------------------------------------------- Failed?  
   # --------------------------------- Are we attempting to login as somebody else?
     if ($authhost eq 'no_host') {      if ($form{'suname'}) {
  failed($r,'Username and/or password could not be authenticated.');  # ------------ see if the original user has enough privileges to pull this stunt
         return OK;   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {
     }  # ---------------------------------------------------- see if the su-user exists
       unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})
     if (($firsturl eq '') ||    eq 'no_host') {
  ($firsturl=~/^\/adm\/(logout|remote)/)) {   &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));
  $firsturl='/adm/roles';  # ------------------------------ see if the su-user is not too highly privileged
     }   unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {
 # --------------------------------- Are we attempting to login as somebody else?  # -------------------------------------------------------- actually switch users
     if ($FORM{'suname'}) {      &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.
 # ------------ see if the original user has enough privileges to pull this stunt   ' logging in as '.$form{'suname'});
  if (&Apache::lonnet::privileged($FORM{'uname'},$FORM{'udom'})) {      $form{'uname'}=$form{'suname'};
 # ---------------------------------------------------- see if the su-user exists   } else {
     unless (&Apache::lonnet::homeserver($FORM{'suname'},$FORM{'udom'})      &Apache::lonnet::logthis('Attempted switch user to privileged user');
  eq 'no_host') {   }
  &Apache::lonnet::logthis(&Apache::lonnet::homeserver($FORM{'suname'},$FORM{'udom'}));      }
 # ------------------------------ see if the su-user is not too highly privileged   } else {
  unless (&Apache::lonnet::privileged($FORM{'suname'},$FORM{'udom'})) {      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
 # -------------------------------------------------------- actually switch users   }
     &Apache::lonnet::logperm('User '.$FORM{'uname'}.' at '.$FORM{'udom'}.      }
  ' logging in as '.$FORM{'suname'});  
     $FORM{'uname'}=$FORM{'suname'};      my ($is_balancer,$otherserver);
  } else {  
     &Apache::lonnet::logthis('Attempted switch user to privileged user');      unless ($hosthere) {
  }          ($is_balancer,$otherserver) =
     }              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'});
  } else {      }
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');  
  }      if ($is_balancer) {
     }          if (!$otherserver) {
     if ($r->dir_config("lonBalancer") eq 'yes') {              ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
  &success($r,$FORM{'uname'},$FORM{'udom'},$authhost,'noredirect');          }
  $r->internal_redirect('/adm/switchserver');          if ($otherserver) {
     } else {              &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
  &success($r,$FORM{'uname'},$FORM{'udom'},$authhost,$firsturl);                       \%form);
     }              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
     return OK;              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
 }                  $switchto .= '&origurl='.$firsturl;
               }
 1;              if ($form{'role'}) {
 __END__                  $switchto .= '&role='.$form{'role'};
               }
               if ($form{'symb'}) {
                   $switchto .= '&symb='.$form{'symb'};
               }
               $r->internal_redirect($switchto);
           } else {
               $r->print(&noswitch());
           }
           return OK;
       } else {
           if (!&check_can_host($r,\%form,$authhost)) {
               my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
               if ($otherserver) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                            \%form);
                   my $switchto = '/adm/switchserver?otherserver='.$otherserver;
                   if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
                       $switchto .= '&origurl='.$firsturl;
                   }
                   if ($form{'role'}) {
                       $switchto .= '&role='.$form{'role'};
                   }
                   if ($form{'symb'}) {
                       $switchto .= '&symb='.$form{'symb'};
                   }
                   $r->internal_redirect($switchto);
               } else {
                   $r->print(&noswitch());
               }
               return OK;
           }
   
   # ------------------------------------------------------- Do the load balancing
   
   # ---------------------------------------------------------- Determine own load
           my $loadlim = $r->dir_config('lonLoadLim');
           my $loadavg;
           {
               my $loadfile=Apache::File->new('/proc/loadavg');
               $loadavg=<$loadfile>;
           }
           $loadavg =~ s/\s.*//g;
           my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
           my $userloadpercent=&Apache::lonnet::userload();
   
   # ---------------------------------------------------------- Are we overloaded?
           if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
               my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
               if (!$unloaded) {
                   ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
               }
               if ($unloaded) {
                   &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
                            undef,\%form);
                   $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
                   return OK;
               }
           }
           &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                    \%form);
           return OK;
       }
   }
   
   sub check_can_host {
       my ($r,$form,$authhost,$domdesc) = @_;
       return unless (ref($form) eq 'HASH');
       my $canhost = 1;
       my $lonhost = $r->dir_config('lonHostID');
       my $udom = $form->{'udom'};
       my @intdoms;
       my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
       if (ref($internet_names) eq 'ARRAY') {
           @intdoms = @{$internet_names};
       }
       my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
       my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
       unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
           my $machine_dom = &Apache::lonnet::host_domain($lonhost);
           my $hostname = &Apache::lonnet::hostname($lonhost);
           my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
           my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
           my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
           my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
           my $loncaparev;
           if ($authhost eq 'no_account_on_host') {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
           } else {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
           }
           $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
                                                        $udomdefaults{'remotesessions'},
                                                        $defdomdefaults{'hostedsessions'});
       }
       unless ($canhost) {
           if ($authhost eq 'no_account_on_host') {
               my $checkloginvia = 1;
               my ($login_host,$hostname) =
                   &Apache::lonnet::choose_server($udom,$checkloginvia);
               &Apache::loncommon::content_type($r,'text/html');
               $r->send_http_header;
               if ($login_host ne '') {
                   my $protocol = $Apache::lonnet::protocol{$login_host};
                   $protocol = 'http' if ($protocol ne 'https');
                   my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
                   $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
                             '<h3>'.&mt('Account creation').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
                             '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
                             &Apache::loncommon::end_page());
               } else {
                   $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                             '<h3>'.&mt('Account creation unavailable').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.
                             &Apache::loncommon::end_page());
               }
           } else {
               &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
                        $form);
               my ($otherserver) = &Apache::lonnet::choose_server($udom);
               $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
           }
       }
       return $canhost;
   }
   
   sub noswitch {
       my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                    '<h3>'.&mt('Session unavailable').'</h3>'.
                    &mt('This LON-CAPA server is unable to host your session.').'<br />'.
                    '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
                    &Apache::loncommon::end_page();
       return $result;
   }
   
   sub loginhelpdisplay {
       my ($authdomain) = @_;
       my $login_help = 1;
       my $lang = &Apache::lonlocal::current_language();
       if ($login_help) {
           my $dom = $authdomain;
           if ($dom eq '') {
               $dom = &Apache::lonnet::default_login_domain();
           }
           my %domconfhash = &Apache::loncommon::get_domainconf($dom);
           my $loginhelp_url;
           if ($lang) {
               $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
               if ($loginhelp_url ne '') {
                   return $loginhelp_url;
               }
           }
           $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
           if ($loginhelp_url ne '') {
               return $loginhelp_url;
           } else {
               return '/adm/loginproblems.html';
           }
       }
       return;
   }
   
   1;
   __END__
   
   

Removed from v.1.83  
changed lines
  Added in v.1.139


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