Annotation of loncom/auth/lonauth.pm, revision 1.23
1.1 albertel 1: # The LearningOnline Network
2: # User Authentication Module
1.2 www 3: # 5/21/99,5/22,5/25,5/26,5/27,5/29,6/2,6/11,6/14,6/15
1.4 www 4: # 16/11,12/16,
1.9 www 5: # 1/14,2/24,2/28,2/29,3/7,5/29,5/30,5/31,6/1,6/5,6/29,
1.19 www 6: # 7/1,7/10,10/2,10/5,10/9,10/26,10/30,11/10,
7: # 05/28,05/29 Gerd Kortemeyer
1.20 harris41 8: # 07/24 Scott Harrison
1.22 www 9: # 07/28,08/03 Gerd Kortemeyer
1.23 ! harris41 10: # 8/15 Scott Harrison
1.1 albertel 11:
12: package Apache::lonauth;
13:
1.18 albertel 14: use strict;
1.1 albertel 15: use Apache::Constants qw(:common);
16: use Apache::File;
17: use CGI qw(:standard);
18: use CGI::Cookie();
1.8 www 19: use Crypt::DES;
1.1 albertel 20: use Apache::lonnet();
1.12 www 21: use Apache::lonmenu();
1.18 albertel 22: use Fcntl qw(:flock);
1.1 albertel 23: # ------------------------------------------------------------ Successful login
24:
25: sub success {
1.6 www 26: my ($r, $username, $domain, $authhost,$lowerurl) = @_;
1.1 albertel 27: my $lonids=$r->dir_config('lonIDsDir');
1.4 www 28:
29: # See if old ID present, if so, remove
1.17 www 30:
31: my $filename;
32: opendir(DIR,$lonids);
33: while ($filename=readdir(DIR)) {
34: if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
35: unlink($lonids.'/'.$filename);
36: }
1.4 www 37: }
1.17 www 38: closedir(DIR);
1.4 www 39:
40: # Give them a new cookie
41:
1.17 www 42: my $cookie;
1.5 www 43: my $now=time;
44: $cookie="$username\_$now\_$domain\_$authhost";
45:
46: # Initialize roles
47:
48: my $userroles=Apache::lonnet::rolesinit($domain,$username,$authhost);
49:
1.7 www 50: # ------------------------------------ Check browser type and MathML capability
1.6 www 51:
52: my @browsertype=split(/\&/,$r->dir_config("lonBrowsDet"));
53: my %mathcap=split(/\&/,$r->dir_config("lonMathML"));
54: my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
55: my $i;
56: my $clientbrowser='unknown';
57: my $clientversion='0';
58: my $clientmathml='';
59: for ($i=0;$i<=$#browsertype;$i++) {
60: my ($bname,$match,$notmatch,$vreg,$minv)=split(/\:/,$browsertype[$i]);
61: if (($httpbrowser=~/$match/i) && ($httpbrowser!~/$notmatch/i)) {
62: $clientbrowser=$bname;
63: $httpbrowser=~/$vreg/i;
64: $clientversion=$1;
65: $clientmathml=($clientversion>=$minv);
66: }
67: }
68: my $clientos='unknown';
69: if (($httpbrowser=~/linux/i) ||
70: ($httpbrowser=~/unix/i) ||
71: ($httpbrowser=~/ux/i) ||
72: ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
73: if (($httpbrowser=~/vax/i) ||
74: ($httpbrowser=~/vms/i)) { $clientos='vms'; }
75: if ($httpbrowser=~/next/i) { $clientos='next'; }
76: if (($httpbrowser=~/mac/i) ||
77: ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
1.10 www 78: if ($httpbrowser=~/win/i) { $clientos='win'; }
1.6 www 79:
1.11 www 80: # ------------------------------------------------------------- Get environment
81:
82: my $userenv=Apache::lonnet::reply("dump:$domain:$username:environment",
83: $authhost);
84: if (($userenv eq 'con_lost') ||
85: ($userenv =~ /^error\:/)) {
86: $userenv='';
87: }
88: $userenv=~s/\&/\nenvironment\./g;
89: if ($userenv ne '') {
90: $userenv='environment.'.$userenv;
91: }
1.7 www 92: # --------------------------------------------------------- Write first profile
1.5 www 93:
94: {
1.1 albertel 95: my $idf=Apache::File->new(">$lonids/$cookie.id");
1.18 albertel 96: unless (flock($idf,LOCK_EX)) {
97: &Apache::lonnet::logthis("<font color=blue>WARNING: ".
1.19 www 98: 'Could not obtain exclusive lock in lonauth: '.$!);
1.18 albertel 99: $idf->close();
100: return 'error: '.$!;
101: }
1.11 www 102: if ($userenv ne '') { print $idf "$userenv\n"; }
1.4 www 103: print $idf "user.name=$username\n";
104: print $idf "user.domain=$domain\n";
105: print $idf "user.home=$authhost\n";
1.6 www 106: print $idf "browser.type=$clientbrowser\n";
107: print $idf "browser.version=$clientversion\n";
108: print $idf "browser.mathml=$clientmathml\n";
109: print $idf "browser.os=$clientos\n";
1.15 www 110: print $idf "request.course.fn=\n";
111: print $idf "request.course.uri=\n";
112: print $idf "request.course.sec=\n";
1.16 www 113: print $idf "request.role=cm\n";
114: print $idf "request.host=$ENV{'HTTP_HOST'}\n";
1.11 www 115: if ($userroles ne '') { print $idf "$userroles"; }
1.18 albertel 116: $idf->close();
1.1 albertel 117: }
1.19 www 118: $ENV{'request.role'}='cm';
1.7 www 119: # -------------------------------------------------------------------- Log this
120:
121: &Apache::lonnet::log($domain,$username,$authhost,
122: "Login $ENV{'REMOTE_ADDR'}");
1.4 www 123:
1.14 www 124: # ------------------------------------------------- Check for critical messages
125:
1.21 www 126: my @what=&Apache::lonnet::dump('critical',$domain,$username);
1.14 www 127: if ($what[0]) {
1.22 www 128: if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
1.21 www 129: $lowerurl='/adm/email?critical=display';
1.14 www 130: }
131: }
132:
1.5 www 133: # ------------------------------------------------------------ Get cookie ready
134:
1.1 albertel 135: $cookie="lonID=$cookie; path=/";
1.12 www 136: # -------------------------------------------------------- Menu script and info
137: my $windowinfo=&Apache::lonmenu::open();
1.19 www 138: # ------------------------------------------------------------- Info for Remote
139: my $configmenu=&Apache::lonmenu::rawconfig();
1.5 www 140: # ------------------------------------------------- Output for successful login
141:
1.1 albertel 142: $r->send_cgi_header(<<ENDHEADER);
143: Content-type: text/html
144: Set-cookie: $cookie
145:
146: ENDHEADER
147: $r->print(<<ENDSUCCESS);
148: <html>
149: <head>
1.4 www 150: <title>Successful Login to the LearningOnline Network with CAPA</title>
1.19 www 151: <script>
152:
153: // --------------------------------------------- Checks if server frame defined
154:
155: function checkdef() {
156: if ((menuloaded==0) && (tim==0)) { setTimeout('checkdef()',100); }
157: }
158:
159: // ---------------------------------------------------------- The wait function
160:
161: function wait() {
162: if ((menuloaded==1) || (tim==1)) {
163: if (tim==0) {
164: clearTimeout(canceltim);
165: $configmenu
166: window.location='$lowerurl';
167: } else {
168: alert("Remote Control Timed Out.");
169: }
170: } else {
171: setTimeout('wait();',100);
172: }
173: }
174:
175: function main() {
1.23 ! harris41 176: canceltim=setTimeout('tim=1;',80000);
1.19 www 177: checkdef();
178: wait();
179: }
180:
181: </script>
1.1 albertel 182: </head>
1.20 harris41 183: <body bgcolor="#FFFFFF">
1.19 www 184: <script>
185: menuloaded=0;
186: tim=0;
187: </script>
188: $windowinfo
1.6 www 189: <h1>Welcome!</h1>
1.20 harris41 190: <script>
191: main();
192: </script>
1.6 www 193: </body>
1.1 albertel 194: </html>
195: ENDSUCCESS
196: }
197:
198: # --------------------------------------------------------------- Failed login!
199:
200: sub failed {
201: my ($r,$message) = @_;
202: $r->send_cgi_header(<<ENDFHEADER);
203: Content-type: text/html
204:
205: ENDFHEADER
206: $r->print(<<ENDFAILED);
207: <html>
208: <head>
1.4 www 209: <title>Unsuccessful Login to the LearningOnline Network with CAPA</title>
1.1 albertel 210: </head>
211: <html>
212: <body bgcolor="#FFFFFF">
213: <h1>Sorry ...</h1>
1.4 www 214: <h2>$message to use the Learning<i>Online</i> Network with CAPA</h2>
1.1 albertel 215: </body>
216: </html>
217: ENDFAILED
218: }
219:
220: # ---------------------------------------------------------------- Main handler
221:
222: sub handler {
223: my $r = shift;
224:
225: my $buffer;
226: $r->read($buffer,$r->header_in('Content-length'));
227: my @pairs=split(/&/,$buffer);
228: my $pair; my $name; my $value; my %FORM;
229: foreach $pair (@pairs) {
230: ($name,$value) = split(/=/,$pair);
1.7 www 231: $value =~ tr/+/ /;
232: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.1 albertel 233: $FORM{$name}=$value;
234: }
235:
236: if ((!$FORM{'uname'}) || (!$FORM{'upass'}) || (!$FORM{'udom'})) {
237: failed($r,'Username, password and domain need to be specified');
238: return OK;
239: }
240: $FORM{'uname'} =~ s/\W//g;
241: $FORM{'udom'} =~ s/\W//g;
242:
243: my $role = $r->dir_config('lonRole');
244: my $domain = $r->dir_config('lonDefDomain');
245: my $prodir = $r->dir_config('lonUsersDir');
246:
1.8 www 247: # ---------------------------------------- Get the information from login token
248:
249: my $tmpinfo=Apache::lonnet::reply('tmpget:'.$FORM{'logtoken'},
250: $FORM{'serverid'});
251:
252: if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost')) {
253: failed($r,'Login token missing, inaccessible or expired');
254: return OK;
255: }
256:
1.9 www 257: my ($key,$firsturl)=split(/&/,$tmpinfo);
1.8 www 258:
259: my $keybin=pack("H16",$key);
260:
261: my $cipher=new DES $keybin;
262:
263: my $upass=$cipher->decrypt(
264: unpack("a8",pack("H16",substr($FORM{'upass'},0,16))));
265:
266: $upass.=$cipher->decrypt(
267: unpack("a8",pack("H16",substr($FORM{'upass'},16,16))));
268:
269: $upass=substr($upass,1,ord(substr($upass,0,1)));
270:
1.1 albertel 271: # ---------------------------------------------------------------- Authenticate
272: my $authhost=Apache::lonnet::authenticate($FORM{'uname'},
1.8 www 273: $upass,
1.1 albertel 274: $FORM{'udom'});
275:
276: # --------------------------------------------------------------------- Failed?
277:
278: if ($authhost eq 'no_host') {
279: failed($r,'Username and/or password could not be authenticated');
280: return OK;
281: }
282:
1.13 www 283: if (($firsturl eq '') || ($firsturl eq '/adm/logout')) {
1.8 www 284: $firsturl='/res/adm/pages/index.html';
1.7 www 285: }
1.1 albertel 286:
1.8 www 287: success($r,$FORM{'uname'},$FORM{'udom'},$authhost,$firsturl);
1.1 albertel 288: return OK;
289: }
290:
291: 1;
292: __END__
1.7 www 293:
294:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>