Annotation of loncom/auth/lonauth.pm, revision 1.99

1.1       albertel    1: # The LearningOnline Network
                      2: # User Authentication Module
1.27      www         3: #
1.99    ! bisitz      4: # $Id: lonauth.pm,v 1.98 2009/05/27 16:54:52 www Exp $
1.27      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.1       albertel   28: 
                     29: package Apache::lonauth;
                     30: 
1.18      albertel   31: use strict;
1.78      albertel   32: use LONCAPA;
1.1       albertel   33: use Apache::Constants qw(:common);
                     34: use CGI qw(:standard);
1.26      harris41   35: use DynaLoader; # for Crypt::DES version
1.8       www        36: use Crypt::DES;
1.45      matthew    37: use Apache::loncommon();
1.66      albertel   38: use Apache::lonnet;
1.12      www        39: use Apache::lonmenu();
1.90      raeburn    40: use Apache::createaccount;
1.18      albertel   41: use Fcntl qw(:flock);
1.56      www        42: use Apache::lonlocal;
1.85      albertel   43:  
1.1       albertel   44: # ------------------------------------------------------------ Successful login
1.85      albertel   45: sub success {
                     46:     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
                     47: 	$form) = @_;
1.1       albertel   48: 
1.85      albertel   49: # ------------------------------------------------------------ Get cookie ready
                     50:     my $cookie =
                     51: 	&Apache::loncommon::init_user_environment($r, $username, $domain,
                     52: 						  $authhost, $form,
1.86      albertel   53: 						  {'extra_env' => $extra_env,});
1.4       www        54: 
1.69      albertel   55:     my $public=($username eq 'public' && $domain eq 'public');
                     56: 
1.85      albertel   57:     if ($public or $lowerurl eq 'noredirect') { return $cookie; }
1.78      albertel   58: 
1.7       www        59: # -------------------------------------------------------------------- Log this
                     60: 
                     61:     &Apache::lonnet::log($domain,$username,$authhost,
                     62:                          "Login $ENV{'REMOTE_ADDR'}");
1.4       www        63: 
1.14      www        64: # ------------------------------------------------- Check for critical messages
                     65: 
1.21      www        66:     my @what=&Apache::lonnet::dump('critical',$domain,$username);
1.14      www        67:     if ($what[0]) {
1.22      www        68: 	if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
1.21      www        69: 	    $lowerurl='/adm/email?critical=display';
1.14      www        70:         }
                     71:     }
                     72: 
1.5       www        73: # ------------------------------------------------------------ Get cookie ready
1.1       albertel   74:     $cookie="lonID=$cookie; path=/";
1.12      www        75: # -------------------------------------------------------- Menu script and info
1.85      albertel   76:     my $windowinfo=&Apache::lonmenu::open($env{'browser.os'});
1.35      www        77:     my $startupremote=&Apache::lonmenu::startupremote($lowerurl);
1.63      albertel   78:     my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);
1.35      www        79:     my $setflags=&Apache::lonmenu::setflags();
                     80:     my $maincall=&Apache::lonmenu::maincall();
1.99    ! bisitz     81:     my $brcrum = [{'href' => '',
        !            82:                    'text' => 'Successful Login'},];
1.74      albertel   83:     my $start_page=&Apache::loncommon::start_page('Successful Login',
1.99    ! bisitz     84:                                                   $startupremote,
        !            85:                                                   {'no_inline_link' => 1,
        !            86:                                                    'bread_crumbs' => $brcrum,});
1.74      albertel   87:     my $end_page  =&Apache::loncommon::end_page();
                     88: 
1.64      albertel   89:     my $continuelink;
1.98      www        90:     if ($env{'environment.remote'} eq 'off') {
1.64      albertel   91: 	$continuelink="<a href=\"$lowerurl\">".&mt('Continue')."</a>";
                     92:     }
1.5       www        93: # ------------------------------------------------- Output for successful login
                     94: 
1.74      albertel   95:     &Apache::loncommon::content_type($r,'text/html');
                     96:     $r->header_out('Set-cookie' => $cookie);
                     97:     $r->send_http_header;
1.1       albertel   98: 
1.58      www        99:     my %lt=&Apache::lonlocal::texthash(
                    100: 				       'wel' => 'Welcome',
1.92      bisitz    101: 				       'mes' => 'Welcome to the Learning<i>Online</i> Network with CAPA. Please wait while your session is being set up.',
                    102: 				       'pro' => 'Login problems?',
1.58      www       103: 				       'log' => 'loginproblems.html',
                    104: 				       );
1.1       albertel  105:     $r->print(<<ENDSUCCESS);
1.74      albertel  106: $start_page
1.35      www       107: $setflags
1.19      www       108: $windowinfo
1.58      www       109: <h1>$lt{'wel'}</h1>
1.92      bisitz    110: $lt{'mes'}<p>
                    111: <a href="/adm/$lt{'log'}">$lt{'pro'}</a></p>
1.63      albertel  112: $remoteinfo
1.35      www       113: $maincall
1.64      albertel  114: $continuelink
1.74      albertel  115: $end_page
1.1       albertel  116: ENDSUCCESS
                    117: }
                    118: 
                    119: # --------------------------------------------------------------- Failed login!
                    120: 
                    121: sub failed {
1.85      albertel  122:     my ($r,$message,$form) = @_;
1.76      albertel  123:     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,
                    124: 						    {'no_inline_link' => 1,});
1.74      albertel  125:     my $end_page   = &Apache::loncommon::end_page();
                    126:     &Apache::loncommon::content_type($r,'text/html');
                    127:     $r->send_http_header;
1.92      bisitz    128:     $r->print(
                    129:        $start_page
                    130:       .'<h1>'.&mt('Sorry ...').'</h1>'
1.95      bisitz    131:       .'<p class="LC_warning">'.&mt($message).'</p>'
1.92      bisitz    132:       .'<p>'.&mt('Please [_1]log in again[_2].'
                    133:                 ,"<a href=\"/adm/login?username=$form->{'uname'}&domain=$form->{'udom'}\">",'</a>')
                    134:       .'</p>'
                    135:       .'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>'
                    136:       .$end_page
                    137:     );
                    138:  }
1.60      www       139: 
1.55      www       140: # ------------------------------------------------------------------ Rerouting!
                    141: 
                    142: sub reroute {
1.74      albertel  143:     my ($r) = @_;
                    144:     &Apache::loncommon::content_type($r,'text/html');
                    145:     $r->send_http_header;
1.92      bisitz    146:     my $msg='<h1>'.&mt('Sorry ...').'</h1>'
                    147:            .&mt('Please [_1]log in again[_2].');
1.74      albertel  148:     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg);
1.55      www       149: }
                    150: 
1.1       albertel  151: # ---------------------------------------------------------------- Main handler
                    152: 
                    153: sub handler {
                    154:     my $r = shift;
1.85      albertel  155:     my $form;
1.55      www       156: # Are we re-routing?
                    157:     if (-e '/home/httpd/html/lon-status/reroute.txt') {
                    158: 	&reroute($r);
                    159: 	return OK;
                    160:     }
1.56      www       161: 
1.57      www       162:     &Apache::lonlocal::get_language_handle($r);
1.1       albertel  163: 
1.59      www       164: # -------------------------------- Prevent users from attempting to login twice
1.89      albertel  165:     my $handle = &Apache::lonnet::check_for_valid_session($r);
                    166:     if ($handle ne '') {
1.59      www       167: # Indeed, a valid token is found
1.89      albertel  168: 	&Apache::loncommon::content_type($r,'text/html');
                    169: 	$r->send_http_header;
                    170: 	my $start_page = 
                    171: 	    &Apache::loncommon::start_page('Already logged in');
                    172: 	my $end_page = 
                    173: 	    &Apache::loncommon::end_page();
1.92      bisitz    174:         $r->print(
                    175:            $start_page
                    176:           .'<h1>'.&mt('You are already logged in!').'</h1>'
1.97      hauer     177:           .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
1.92      bisitz    178:                     ,'<a href="/adm/roles">','</a>','<a href="/adm/logout">','</a>')
                    179:           .'</p>'
                    180:           .'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>'
                    181:           .$end_page
                    182:         );
                    183:         return OK;
1.59      www       184:     }
                    185: 
                    186: # ---------------------------------------------------- No valid token, continue
                    187: 
                    188: 
1.1       albertel  189:     my $buffer;
1.84      albertel  190:     if ($r->header_in('Content-length') > 0) {
                    191: 	$r->read($buffer,$r->header_in('Content-length'),0);
                    192:     }
1.85      albertel  193:     my %form;
                    194:     foreach my $pair (split(/&/,$buffer)) {
                    195:        my ($name,$value) = split(/=/,$pair);
1.7       www       196:        $value =~ tr/+/ /;
                    197:        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.85      albertel  198:        $form{$name}=$value;
1.1       albertel  199:     } 
                    200: 
1.85      albertel  201:     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
                    202: 	&failed($r,'Username, password and domain need to be specified.',
                    203: 		\%form);
1.1       albertel  204:         return OK;
                    205:     }
1.61      www       206: 
                    207: # split user logging in and "su"-user
                    208: 
1.85      albertel  209:     ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});
1.87      albertel  210:     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
                    211:     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
                    212:     $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});
1.1       albertel  213: 
                    214:     my $role   = $r->dir_config('lonRole');
                    215:     my $domain = $r->dir_config('lonDefDomain');
                    216:     my $prodir = $r->dir_config('lonUsersDir');
1.93      raeburn   217:     my $contact_name = &mt('LON-CAPA helpdesk');
1.1       albertel  218: 
1.8       www       219: # ---------------------------------------- Get the information from login token
                    220: 
1.85      albertel  221:     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                    222:                                       $form{'serverid'});
1.8       www       223: 
                    224:     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost')) {
1.85      albertel  225: 	&failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
1.8       www       226:         return OK;
1.44      www       227:     } else {
1.85      albertel  228: 	my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
                    229: 					   $form{'serverid'});
1.77      albertel  230:         if ( $reply ne 'ok' ) {
1.85      albertel  231:             &failed($r,'Session could not be opened.',\%form);
                    232: 	    &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
1.77      albertel  233: 	    return OK;
1.44      www       234: 	}
1.8       www       235:     }
1.93      raeburn   236:     if (!&Apache::lonnet::domain($form{'udom'})) {
                    237:         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
                    238:         return OK;
                    239:     }
1.9       www       240:     my ($key,$firsturl)=split(/&/,$tmpinfo);
1.8       www       241: 
                    242:     my $keybin=pack("H16",$key);
                    243: 
1.26      harris41  244:     my $cipher;
                    245:     if ($Crypt::DES::VERSION>=2.03) {
                    246: 	$cipher=new Crypt::DES $keybin;
                    247:     }
                    248:     else {
                    249: 	$cipher=new DES $keybin;
                    250:     }
1.67      www       251:     my $upass='';
                    252:     for (my $i=0;$i<=2;$i++) {
                    253: 	my $chunk=
1.85      albertel  254: 	    $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},0,16))));
1.8       www       255: 
1.67      www       256: 	$chunk.=
1.85      albertel  257: 	    $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},16,16))));
1.8       www       258: 
1.67      www       259: 	$chunk=substr($chunk,1,ord(substr($chunk,0,1)));
                    260: 	$upass.=$chunk;
                    261:     }
1.8       www       262: 
1.1       albertel  263: # ---------------------------------------------------------------- Authenticate
1.91      raeburn   264:     my @cancreate;
1.90      raeburn   265:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
                    266:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                    267:         if (ref($domconfig{'usercreation'}{'cancreate'}) eq 'HASH') {
1.91      raeburn   268:             if (ref($domconfig{'usercreation'}{'cancreate'}{'selfcreate'}) eq 'ARRAY') {
                    269:                 @cancreate = @{$domconfig{'usercreation'}{'cancreate'}{'selfcreate'}};
                    270:             } elsif (($domconfig{'usercreation'}{'cancreate'}{'selfcreate'} ne 'none') && 
                    271:                      ($domconfig{'usercreation'}{'cancreate'}{'selfcreate'} ne '')) {
                    272:                 @cancreate = ($domconfig{'usercreation'}{'cancreate'}{'selfcreate'});
1.90      raeburn   273:             }
                    274:         }
                    275:     }
                    276:     my $defaultauth;
1.91      raeburn   277:     if (grep(/^login$/,@cancreate)) {
1.90      raeburn   278:         $defaultauth = 1;
                    279:     }
                    280:     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
                    281:                                               $form{'udom'},$defaultauth);
1.1       albertel  282:     
                    283: # --------------------------------------------------------------------- Failed?
                    284: 
                    285:     if ($authhost eq 'no_host') {
1.85      albertel  286: 	&failed($r,'Username and/or password could not be authenticated.',
                    287: 		\%form);
1.1       albertel  288:         return OK;
1.90      raeburn   289:     } elsif ($authhost eq 'no_account_on_host') {
                    290:         my %domconfig = 
                    291:             &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
1.91      raeburn   292:         if (grep(/^login$/,@cancreate)) {
1.90      raeburn   293:             my $start_page = 
                    294:                 &Apache::loncommon::start_page('Create a user account in LON-CAPA',
                    295:                                                '',{'no_inline_link'   => 1,});
                    296:             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
1.93      raeburn   297:             my $lonhost = $r->dir_config('lonHostID');
                    298:             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                    299:             my $contacts = 
                    300:                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                    301:                                                         $form{'udom'},$origmail);
                    302:             my ($contact_email) = split(',',$contacts); 
1.94      raeburn   303:             my $output = &Apache::createaccount::username_check($form{'uname'}, 
                    304:                                                                 $form{'udom'},$domdesc,'',
                    305:                                                                 $lonhost,$contact_email,$contact_name);
1.90      raeburn   306:             &Apache::loncommon::content_type($r,'text/html');
                    307:             $r->send_http_header;
                    308:             &Apache::createaccount::print_header($r,$start_page);
1.94      raeburn   309:             $r->print('<h3>'.&mt('Account creation').'</h3>'.
                    310:                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                    311:                       $output.&Apache::loncommon::end_page());
1.90      raeburn   312:             return OK;
                    313:         } else {
                    314:             &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);
                    315:             return OK;
                    316:         }
1.1       albertel  317:     }
                    318: 
1.59      www       319:     if (($firsturl eq '') || 
                    320: 	($firsturl=~/^\/adm\/(logout|remote)/)) {
1.24      www       321: 	$firsturl='/adm/roles';
1.7       www       322:     }
1.61      www       323: # --------------------------------- Are we attempting to login as somebody else?
1.85      albertel  324:     if ($form{'suname'}) {
1.61      www       325: # ------------ see if the original user has enough privileges to pull this stunt
1.85      albertel  326: 	if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {
1.61      www       327: # ---------------------------------------------------- see if the su-user exists
1.85      albertel  328: 	    unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})
1.61      www       329: 		eq 'no_host') {
1.85      albertel  330: 		&Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));
1.61      www       331: # ------------------------------ see if the su-user is not too highly privileged
1.85      albertel  332: 		unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {
1.61      www       333: # -------------------------------------------------------- actually switch users
1.85      albertel  334: 		    &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.
                    335: 			' logging in as '.$form{'suname'});
                    336: 		    $form{'uname'}=$form{'suname'};
1.61      www       337: 		} else {
                    338: 		    &Apache::lonnet::logthis('Attempted switch user to privileged user');
                    339: 		}
                    340: 	    }
                    341: 	} else {
                    342: 	    &Apache::lonnet::logthis('Non-privileged user attempting switch user');
                    343: 	}
                    344:     }
1.85      albertel  345: 
1.81      albertel  346:     if ($r->dir_config("lonBalancer") eq 'yes') {
1.85      albertel  347: 	&success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                    348: 		 \%form);
1.81      albertel  349: 	$r->internal_redirect('/adm/switchserver');
                    350:     } else {
1.85      albertel  351: 	&success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                    352: 		 \%form);
1.81      albertel  353:     }
1.1       albertel  354:     return OK;
                    355: }
                    356: 
                    357: 1;
                    358: __END__
1.7       www       359: 
                    360: 

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