Annotation of loncom/auth/lonauth.pm, revision 1.84
1.1 albertel 1: # The LearningOnline Network
2: # User Authentication Module
1.27 www 3: #
1.84 ! albertel 4: # $Id: lonauth.pm,v 1.83 2006/09/19 21:36:24 albertel 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);
35: use CGI::Cookie();
1.26 harris41 36: use DynaLoader; # for Crypt::DES version
1.8 www 37: use Crypt::DES;
1.45 matthew 38: use Apache::loncommon();
1.66 albertel 39: use Apache::lonnet;
1.12 www 40: use Apache::lonmenu();
1.18 albertel 41: use Fcntl qw(:flock);
1.56 www 42: use Apache::lonlocal;
1.83 albertel 43: use GDBM_File;
1.37 www 44: my %FORM;
45:
1.1 albertel 46: # ------------------------------------------------------------ Successful login
47:
48: sub success {
1.80 albertel 49: my ($r, $username, $domain, $authhost, $lowerurl, $extra_env) = @_;
1.1 albertel 50: my $lonids=$r->dir_config('lonIDsDir');
1.4 www 51:
1.69 albertel 52: my $public=($username eq 'public' && $domain eq 'public');
53:
1.4 www 54: # See if old ID present, if so, remove
1.17 www 55:
1.69 albertel 56: my ($filename,$cookie,$userroles);
57: my $now=time;
58:
59: if ($public) {
60: my $max_public=100;
61: my $oldest;
62: my $oldest_time=0;
63: for(my $next=1;$next<=$max_public;$next++) {
64: if (-e $lonids."/publicuser_$next.id") {
65: my $mtime=(stat($lonids."/publicuser_$next.id"))[9];
66: if ($mtime<$oldest_time || !$oldest_time) {
67: $oldest_time=$mtime;
68: $oldest=$next;
69: }
70: } else {
71: $cookie="publicuser_$next";
72: last;
73: }
74: }
75: if (!$cookie) { $cookie="publicuser_$oldest"; }
76: } else {
77: opendir(DIR,$lonids);
78: while ($filename=readdir(DIR)) {
79: if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
80: unlink($lonids.'/'.$filename);
81: }
82: }
83: closedir(DIR);
1.4 www 84:
85: # Give them a new cookie
86:
1.69 albertel 87: $cookie="$username\_$now\_$domain\_$authhost";
88:
1.5 www 89: # Initialize roles
90:
1.79 albertel 91: $userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);
1.69 albertel 92: }
1.7 www 93: # ------------------------------------ Check browser type and MathML capability
1.6 www 94:
1.45 matthew 95: my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
96: $clientunicode,$clientos) = &Apache::loncommon::decode_user_agent($r);
1.6 www 97:
1.40 www 98: # -------------------------------------- Any accessibility options to remember?
99: if (($FORM{'interface'}) && ($FORM{'remember'} eq 'true')) {
1.41 albertel 100: foreach ('imagesuppress','appletsuppress',
101: 'embedsuppress','fontenhance','blackwhite') {
102: if ($FORM{$_} eq 'true') {
103: &Apache::lonnet::put('environment',{$_ => 'on'},
104: $domain,$username);
105: } else {
106: &Apache::lonnet::del('environment',[$_],$domain,$username);
107: }
108: }
109: }
1.11 www 110: # ------------------------------------------------------------- Get environment
111:
1.32 albertel 112: my %userenv=Apache::lonnet::dump('environment',$domain,$username);
113: my ($tmp) = keys(%userenv);
114: if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.73 albertel 115: # default remote control to off
116: if ($userenv{'remote'} ne 'on') { $userenv{'remote'} = 'off'; }
1.78 albertel 117: } else {
118: undef(%userenv);
1.11 www 119: }
1.38 www 120: if (($userenv{'interface'}) && (!$FORM{'interface'})) {
121: $FORM{'interface'}=$userenv{'interface'};
122: }
1.66 albertel 123: $env{'environment.remote'}=$userenv{'remote'};
1.65 albertel 124: if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }
125:
1.54 www 126: # --------------- Do not trust query string to be put directly into environment
127: foreach ('imagesuppress','appletsuppress',
128: 'embedsuppress','fontenhance','blackwhite',
129: 'interface','localpath','localres') {
130: $FORM{$_}=~s/[\n\r\=]//gs;
131: }
1.7 www 132: # --------------------------------------------------------- Write first profile
1.5 www 133:
1.41 albertel 134: {
1.78 albertel 135: my %initial_env =
136: ("user.name" => $username,
137: "user.domain" => $domain,
138: "user.home" => $authhost,
139: "browser.type" => $clientbrowser,
140: "browser.version" => $clientversion,
141: "browser.mathml" => $clientmathml,
142: "browser.unicode" => $clientunicode,
143: "browser.os" => $clientos,
144: "server.domain" => $r->dir_config('lonDefDomain'),
145: "request.course.fn" => '',
146: "request.course.uri" => '',
147: "request.course.sec" => '',
148: "request.role" => 'cm',
149: "request.role.adv" => $env{'user.adv'},
150: "request.host" => $ENV{'REMOTE_ADDR'},);
151:
1.53 www 152: if ($FORM{'localpath'}) {
1.78 albertel 153: $initial_env{"browser.localpath"} = $FORM{'localpath'};
154: $initial_env{"browser.localres"} = $FORM{'localres'};
1.53 www 155: }
1.78 albertel 156:
1.69 albertel 157: if ($public) {
1.78 albertel 158: $initial_env{"environment.remote"} = "off";
1.68 albertel 159: }
1.41 albertel 160: if ($FORM{'interface'}) {
161: $FORM{'interface'}=~s/\W//gs;
1.78 albertel 162: $initial_env{"browser.interface"} = $FORM{'interface'};
1.66 albertel 163: $env{'browser.interface'}=$FORM{'interface'};
1.78 albertel 164: foreach my $option ('imagesuppress','appletsuppress',
165: 'embedsuppress','fontenhance','blackwhite') {
166: if (($FORM{$option} eq 'true') ||
167: ($userenv{$option} eq 'on')) {
168: $initial_env{"browser.$option"} = "on";
1.41 albertel 169: }
1.18 albertel 170: }
1.41 albertel 171: }
1.78 albertel 172:
1.81 albertel 173: $env{'user.environment'} = "$lonids/$cookie.id";
1.83 albertel 174:
175: if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",
176: &GDBM_WRCREAT(),0640)) {
177: &add_to_env(\%disk_env,\%initial_env);
178: &add_to_env(\%disk_env,\%userenv,'environment.');
179: &add_to_env(\%disk_env,$userroles);
180: &add_to_env(\%disk_env,$extra_env);
181: untie(%disk_env);
182: } else {
1.78 albertel 183: &Apache::lonnet::logthis("<font color=blue>WARNING: ".
1.83 albertel 184: 'Could not create environment storage in lonauth: '.$!);
1.78 albertel 185: return 'error: '.$!;
186: }
1.41 albertel 187: }
1.66 albertel 188: $env{'request.role'}='cm';
189: $env{'request.role.adv'}=$env{'user.adv'};
190: $env{'browser.type'}=$clientbrowser;
1.7 www 191: # -------------------------------------------------------------------- Log this
192:
193: &Apache::lonnet::log($domain,$username,$authhost,
194: "Login $ENV{'REMOTE_ADDR'}");
1.4 www 195:
1.14 www 196: # ------------------------------------------------- Check for critical messages
197:
1.21 www 198: my @what=&Apache::lonnet::dump('critical',$domain,$username);
1.14 www 199: if ($what[0]) {
1.22 www 200: if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
1.21 www 201: $lowerurl='/adm/email?critical=display';
1.14 www 202: }
203: }
204:
1.5 www 205: # ------------------------------------------------------------ Get cookie ready
206:
1.70 albertel 207: if ($public or $lowerurl eq 'noredirect') { return $cookie; }
208:
1.1 albertel 209: $cookie="lonID=$cookie; path=/";
1.12 www 210: # -------------------------------------------------------- Menu script and info
1.31 www 211: my $windowinfo=&Apache::lonmenu::open($clientos);
1.35 www 212: my $startupremote=&Apache::lonmenu::startupremote($lowerurl);
1.63 albertel 213: my $remoteinfo=&Apache::lonmenu::load_remote_msg($lowerurl);
1.35 www 214: my $setflags=&Apache::lonmenu::setflags();
215: my $maincall=&Apache::lonmenu::maincall();
1.74 albertel 216: my $start_page=&Apache::loncommon::start_page('Successful Login',
1.76 albertel 217: $startupremote,
218: {'no_inline_link' => 1,});
1.74 albertel 219: my $end_page =&Apache::loncommon::end_page();
220:
1.64 albertel 221: my $continuelink;
1.66 albertel 222: if (($env{'browser.interface'} eq 'textual') ||
223: ($env{'environment.remote'} eq 'off')) {
1.64 albertel 224: $continuelink="<a href=\"$lowerurl\">".&mt('Continue')."</a>";
225: }
1.5 www 226: # ------------------------------------------------- Output for successful login
227:
1.74 albertel 228: &Apache::loncommon::content_type($r,'text/html');
229: $r->header_out('Set-cookie' => $cookie);
230: $r->send_http_header;
1.1 albertel 231:
1.58 www 232: my %lt=&Apache::lonlocal::texthash(
233: 'wel' => 'Welcome',
234: 'mes' => 'Welcome to the Learning<i>Online</i> Network with CAPA. Please wait while your session is being set up',
235: 'pro' => 'Problems',
236: 'log' => 'loginproblems.html',
237: );
1.1 albertel 238: $r->print(<<ENDSUCCESS);
1.74 albertel 239: $start_page
1.35 www 240: $setflags
1.19 www 241: $windowinfo
1.58 www 242: <h1>$lt{'wel'}</h1>
243: $lt{'mes'}.<p>
244: <a href="/adm/$lt{'log'}">$lt{'pro'}?</a></p>
1.63 albertel 245: $remoteinfo
1.35 www 246: $maincall
1.64 albertel 247: $continuelink
1.74 albertel 248: $end_page
1.1 albertel 249: ENDSUCCESS
250: }
251:
1.81 albertel 252: sub add_to_env {
1.82 albertel 253: my ($idf,$env_data,$prefix) = @_;
1.81 albertel 254: while (my ($key,$value) = each(%$env_data)) {
1.83 albertel 255: $idf->{$prefix.$key} = $value;
256: $env{$prefix.$key} = $value;
1.81 albertel 257: }
258: }
259:
1.1 albertel 260: # --------------------------------------------------------------- Failed login!
261:
262: sub failed {
263: my ($r,$message) = @_;
1.76 albertel 264: my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,
265: {'no_inline_link' => 1,});
1.74 albertel 266: my $end_page = &Apache::loncommon::end_page();
267:
268: my %lt=('sorry' => &mt('Sorry ...'),
269: 'please' =>
270: &mt('Please [_1]log in again[_2].',
271: "<a href=\"/adm/login?username=$FORM{'uname'}&domain=$FORM{'udom'}\">",
272: '</a>'),
273: 'problemspage' => &mt('loginproblems.html'),
274: 'problems' => 'Problems',
275: );
276: &Apache::loncommon::content_type($r,'text/html');
277: $r->send_http_header;
1.1 albertel 278:
279: $r->print(<<ENDFAILED);
1.74 albertel 280: $start_page
281: <h1>$lt{'sorry'}</h1>
1.43 www 282: <p><b>$message</b></p>
1.74 albertel 283: <p>$lt{'please'}</p>
1.43 www 284: <p>
1.74 albertel 285: <a href="/adm/$lt{'problemspage'}">$lt{'problems'}</a></p>
286: $end_page
1.1 albertel 287: ENDFAILED
1.60 www 288: }
289:
1.55 www 290: # ------------------------------------------------------------------ Rerouting!
291:
292: sub reroute {
1.74 albertel 293: my ($r) = @_;
294: &Apache::loncommon::content_type($r,'text/html');
295: $r->send_http_header;
296: my $msg='<h1>Sorry ...</h1>
297: Please <a href="/">log in again</a>.';
298: &Apache::loncommon::simple_error_page($r,'Rerouting',$msg);
1.55 www 299: }
300:
1.1 albertel 301: # ---------------------------------------------------------------- Main handler
302:
303: sub handler {
304: my $r = shift;
1.55 www 305:
306: # Are we re-routing?
307: if (-e '/home/httpd/html/lon-status/reroute.txt') {
308: &reroute($r);
309: return OK;
310: }
1.56 www 311:
1.57 www 312: &Apache::lonlocal::get_language_handle($r);
1.1 albertel 313:
1.59 www 314: # -------------------------------- Prevent users from attempting to login twice
315: my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
316: my $lonid=$cookies{'lonID'};
317: my $cookie;
318: if ($lonid) {
319: my $handle=$lonid->value;
320: $handle=~s/\W//g;
321: my $lonidsdir=$r->dir_config('lonIDsDir');
322: if ((-e "$lonidsdir/$handle.id") && ($handle ne '')) {
323: # Indeed, a valid token is found
1.74 albertel 324: &Apache::loncommon::content_type($r,'text/html');
325: $r->send_http_header;
326: my $start_page =
327: &Apache::loncommon::start_page('Already logged in');
328: my $end_page =
329: &Apache::loncommon::end_page();
1.59 www 330: $r->print(<<ENDFAILED);
1.74 albertel 331: $start_page
1.59 www 332: <h1>You are already logged in</h1>
333: <p>Please either <a href="/adm/roles">continue the current session</a> or
334: <a href="/adm/logout">logout</a>.</p>
335: <p>
336: <a href="/adm/loginproblems.html">Problems?</a></p>
1.74 albertel 337: $end_page
1.59 www 338: ENDFAILED
339: return OK;
340: }
341: }
342:
343: # ---------------------------------------------------- No valid token, continue
344:
345:
1.1 albertel 346: my $buffer;
1.84 ! albertel 347: if ($r->header_in('Content-length') > 0) {
! 348: $r->read($buffer,$r->header_in('Content-length'),0);
! 349: }
1.1 albertel 350: my @pairs=split(/&/,$buffer);
1.37 www 351: my $pair; my $name; my $value;
352: undef %FORM;
353: %FORM=();
1.1 albertel 354: foreach $pair (@pairs) {
355: ($name,$value) = split(/=/,$pair);
1.7 www 356: $value =~ tr/+/ /;
357: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.1 albertel 358: $FORM{$name}=$value;
359: }
360:
1.67 www 361: if ((!$FORM{'uname'}) || (!$FORM{'upass0'}) || (!$FORM{'udom'})) {
1.43 www 362: failed($r,'Username, password and domain need to be specified.');
1.1 albertel 363: return OK;
364: }
1.61 www 365:
366: # split user logging in and "su"-user
367:
368: ($FORM{'uname'},$FORM{'suname'})=split(/\:/,$FORM{'uname'});
1.1 albertel 369: $FORM{'uname'} =~ s/\W//g;
1.61 www 370: $FORM{'suname'} =~ s/\W//g;
1.1 albertel 371: $FORM{'udom'} =~ s/\W//g;
372:
373: my $role = $r->dir_config('lonRole');
374: my $domain = $r->dir_config('lonDefDomain');
375: my $prodir = $r->dir_config('lonUsersDir');
376:
1.8 www 377: # ---------------------------------------- Get the information from login token
378:
379: my $tmpinfo=Apache::lonnet::reply('tmpget:'.$FORM{'logtoken'},
380: $FORM{'serverid'});
381:
382: if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost')) {
1.43 www 383: failed($r,'Information needed to verify your login information is missing, inaccessible or expired.');
1.8 www 384: return OK;
1.44 www 385: } else {
1.77 albertel 386: my $reply = &Apache::lonnet::reply('tmpdel:'.$FORM{'logtoken'},
387: $FORM{'serverid'});
388: if ( $reply ne 'ok' ) {
1.44 www 389: &failed($r,'Session could not be opened.');
1.77 albertel 390: &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $FORM{'serverid'}." to get login token");
391: return OK;
1.44 www 392: }
1.8 www 393: }
1.9 www 394: my ($key,$firsturl)=split(/&/,$tmpinfo);
1.8 www 395:
396: my $keybin=pack("H16",$key);
397:
1.26 harris41 398: my $cipher;
399: if ($Crypt::DES::VERSION>=2.03) {
400: $cipher=new Crypt::DES $keybin;
401: }
402: else {
403: $cipher=new DES $keybin;
404: }
1.67 www 405: my $upass='';
406: for (my $i=0;$i<=2;$i++) {
407: my $chunk=
408: $cipher->decrypt(unpack("a8",pack("H16",substr($FORM{'upass'.$i},0,16))));
1.8 www 409:
1.67 www 410: $chunk.=
411: $cipher->decrypt(unpack("a8",pack("H16",substr($FORM{'upass'.$i},16,16))));
1.8 www 412:
1.67 www 413: $chunk=substr($chunk,1,ord(substr($chunk,0,1)));
414: $upass.=$chunk;
415: }
1.8 www 416:
1.1 albertel 417: # ---------------------------------------------------------------- Authenticate
418: my $authhost=Apache::lonnet::authenticate($FORM{'uname'},
1.8 www 419: $upass,
1.1 albertel 420: $FORM{'udom'});
421:
422: # --------------------------------------------------------------------- Failed?
423:
424: if ($authhost eq 'no_host') {
1.43 www 425: failed($r,'Username and/or password could not be authenticated.');
1.1 albertel 426: return OK;
427: }
428:
1.59 www 429: if (($firsturl eq '') ||
430: ($firsturl=~/^\/adm\/(logout|remote)/)) {
1.24 www 431: $firsturl='/adm/roles';
1.7 www 432: }
1.61 www 433: # --------------------------------- Are we attempting to login as somebody else?
434: if ($FORM{'suname'}) {
435: # ------------ see if the original user has enough privileges to pull this stunt
436: if (&Apache::lonnet::privileged($FORM{'uname'},$FORM{'udom'})) {
437: # ---------------------------------------------------- see if the su-user exists
438: unless (&Apache::lonnet::homeserver($FORM{'suname'},$FORM{'udom'})
439: eq 'no_host') {
440: &Apache::lonnet::logthis(&Apache::lonnet::homeserver($FORM{'suname'},$FORM{'udom'}));
441: # ------------------------------ see if the su-user is not too highly privileged
442: unless (&Apache::lonnet::privileged($FORM{'suname'},$FORM{'udom'})) {
443: # -------------------------------------------------------- actually switch users
444: &Apache::lonnet::logperm('User '.$FORM{'uname'}.' at '.$FORM{'udom'}.
445: ' logging in as '.$FORM{'suname'});
446: $FORM{'uname'}=$FORM{'suname'};
447: } else {
448: &Apache::lonnet::logthis('Attempted switch user to privileged user');
449: }
450: }
451: } else {
452: &Apache::lonnet::logthis('Non-privileged user attempting switch user');
453: }
454: }
1.81 albertel 455: if ($r->dir_config("lonBalancer") eq 'yes') {
456: &success($r,$FORM{'uname'},$FORM{'udom'},$authhost,'noredirect');
457: $r->internal_redirect('/adm/switchserver');
458: } else {
459: &success($r,$FORM{'uname'},$FORM{'udom'},$authhost,$firsturl);
460: }
1.1 albertel 461: return OK;
462: }
463:
464: 1;
465: __END__
1.7 www 466:
467:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>