1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
|
<?php
/*
* Identity Provider Example -- Single Sing On
*
* Copyright (C) 2004 Entr'ouvert
* http://lasso.entrouvert.org
*
* Authors: Christophe Nowicki <cnowicki@easter-eggs.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once 'HTML/QuickForm.php';
require_once 'Log.php';
require_once 'DB.php';
$config = unserialize(file_get_contents('config.inc'));
// connect to the data base
$db = &DB::connect($config['dsn']);
if (DB::isError($db))
die("Could not connect to the database");
// create logger
$conf['db'] = $db;
$logger = &Log::factory($config['log_handler'], 'log', $_SERVER['PHP_SELF'], $conf);
session_start();
lasso_init();
// Create Lasso Server
$server_dump = file_get_contents($config['server_dump_filename']);
$server = LassoServer::newFromDump($server_dump);
// HTTP Basic Authentification
if ($config['auth_type'] == 'auth_basic')
{
if (!isset($_SERVER['PHP_AUTH_USER']))
{
sendHTTPBasicAuth();
$db->disconnect();
exit;
}
else
{
$login = new LassoLogin($server);
// init login
updateDumpsFromSession($login);
initFromAuthnRequest($login);
// User must *NOT* Authenticate with the IdP
if (!$login->mustAuthenticate())
{
$user_id = authentificateUser($db, $_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
if (!$user_id)
{
$logger->log("User must not authenticate, username and password are not available", PEAR_LOG_CRIT);
die("Unknown User");
}
$array = getIdentityDumpAndSessionDumpFromUserID($db, $user_id);
if (empty($array))
{
$logger->log("User must no authenticate, but I don't find session and identity dump in the database", PEAR_LOG_CRIT);
die("Could not get Identity and Session Dump");
}
$login->setIdentityFromDump($array['identity_dump']);
$login->setSessionFromDump($array['session_dump']);
doneSingleSignOn($db, $login, $user_id);
$db->disconnect();
exit;
}
// Check Login and Password
if (!($user_id = authentificateUser($db, $_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW'])))
{
sendHTTPBasicAuth();
$db->disconnect();
exit;
}
else
{
$array = getIdentityDumpAndSessionDumpFromUserID($db, $user_id);
$is_first_sso = (empty($array) ? TRUE : FALSE);
if (!$is_first_sso)
{
$login->setIdentityFromDump($array['identity_dump']);
$login->setSessionFromDump($array['session_dump']);
}
doneSingleSignOn($db, $login, $user_id, $is_first_sso);
}
$db->disconnect();
}
exit;
}
// HTML Form Authentification
// Create the form
$form = new HTML_QuickForm('frm');
$form->addElement('header', null, 'Single Sing On Login');
$form->addElement('text', 'username', 'Username:', array('size' => 50, 'maxlength' => 255));
$form->addElement('password', 'password', 'Password:', array('size' => 50, 'maxlength' => 255));
$form->addElement('submit', null, 'Ok');
$form->addRule('username', 'Please enter the Username', 'required', null, 'client');
$form->addRule('password', 'Please enter the Password', 'required', null, 'client');
/*
*
*/
function sendHTTPBasicAuth()
{
global $logger;
header('WWW-Authenticate: Basic realm="Lasso Identity Provider One"');
header('HTTP/1.0 401 Unauthorized');
echo "Acces Denied";
$logger->log("User from '" . $_SERVER['REMOTE_ADDR'] . "' pressed the cancel button during HTTP basic authentication request", PEAR_LOG_NOTICE);
}
/*
* Update Identity dump
*/
function updateIdentityDump($db, $user_id, $identity_dump)
{
global $logger;
$query = "UPDATE users SET identity_dump=".$db->quoteSmart($identity_dump);
$query .= " WHERE user_id='$user_id'";
$res =& $db->query($query);
if (DB::isError($res))
{
$logger->log("DB Error :" . $db->getMessage(), PEAR_LOG_CRIT);
$logger->log("DB Error :" . $db->getDebugInfo(), PEAR_LOG_DEBUG);
die("Internal Server Error");
}
}
/*
* Update Session dump
*/
function updateSessionDump($db, $user_id, $session_dump)
{
global $logger;
$query = "UPDATE users SET session_dump=".$db->quoteSmart($session_dump);
$query .= " WHERE user_id='$user_id'";
$res =& $db->query($query);
if (DB::isError($res))
{
$logger->log("DB Error :" . $db->getMessage(), PEAR_LOG_CRIT);
$logger->log("DB Error :" . $db->getDebugInfo(), PEAR_LOG_DEBUG);
die("Internal Server Error");
}
}
/*
* Save the Assertion Artifact in the database
*/
function saveAssertionArtifact($db, $artifact, $assertion)
{
global $logger;
$assertion_dump = $assertion->dump();
if (empty($assertion_dump))
{
$logger->log("assertion dump is empty", PEAR_LOG_ALERT);
die("assertion dump is empty");
}
// Save assertion
$query = "INSERT INTO assertions (assertion, response_dump, created) VALUES ";
$query .= "('".$artifact."',".$db->quoteSmart($assertion_dump).", NOW())";
$res =& $db->query($query);
if (DB::isError($res))
{
$logger->log("DB Error :" . $db->getMessage(), PEAR_LOG_CRIT);
$logger->log("DB Error :" . $db->getDebugInfo(), PEAR_LOG_DEBUG);
die("Internal Server Error");
}
}
/*
* Update Session and Identity Dump from PHP Session variables
*/
function updateDumpsFromSession(&$login)
{
global $logger;
// Get session and identity dump if there are available
if (!empty($_SESSION['session_dump']))
{
$logger->log("Update user's session dump", PEAR_LOG_DEBUG);
$login->setSessionFromDump($_SESSION['session_dump']);
}
if (!empty($_SESSION['identity_dump']))
{
$logger->log("Update user's identity dump", PEAR_LOG_DEBUG);
$login->setIdentityFromDump($_SESSION['identity_dump']);
}
}
/*
* Init Lasso login from AuthnRequestMsg
*/
function initFromAuthnRequest(&$login)
{
switch ($_SERVER['REQUEST_METHOD'])
{
case 'GET':
$login->initFromAuthnRequestMsg($_SERVER['QUERY_STRING'], lassoHttpMethodRedirect);
break;
case 'POST':
die("methode POST not implemented"); // TODO
break;
default:
die("Unknown request method");
}
}
/*
* This function authentificate the user against the Postgres Database
*/
function authentificateUser($db, $username, $password)
{
global $logger;
$query = "SELECT user_id FROM users WHERE username=".$db->quoteSmart($username);
$query .= " AND password=".$db->quoteSmart($password);
$res =& $db->query($query);
if (DB::isError($res))
{
$logger->log("DB Error :" . $db->getMessage(), PEAR_LOG_CRIT);
$logger->log("DB Error :" . $db->getDebugInfo(), PEAR_LOG_DEBUG);
die($res->getMessage());
}
if ($res->numRows())
{
$row = $res->fetchRow();
return ($row[0]);
}
return (0);
}
/*
* Get UserID from the NameIdentifier
* return user_id or 0 if not found
*/
function getUserIDFromNameIdentifier($db, $nameidentifier)
{
$query = "SELECT user_id FROM nameidentifiers WHERE name_identifier='$nameidentifier'";
// echo $query;
$res =& $db->query($query);
if (DB::isError($res))
{
$logger->log("DB Error :" . $db->getMessage(), PEAR_LOG_CRIT);
$logger->log("DB Error :" . $db->getDebugInfo(), PEAR_LOG_DEBUG);
die($res->getMessage());
}
// UserID not found
if (!$res->numRows())
return (0);
$row = $res->fetchRow();
return ($row[0]);
}
/*
*
*/
function getIdentityDumpAndSessionDumpFromUserID($db, $user_id)
{
// User is authentificated
$query = "SELECT identity_dump,session_dump FROM users WHERE identity_dump";
$query .= " IS NOT NULL AND session_dump IS NOT NULL AND user_id='$user_id'";
$res =& $db->query($query);
if (DB::isError($res))
die($res->getMessage());
if ($res->numRows())
{
$row =& $res->fetchRow();
$ret = array("identity_dump" => $row[0], "session_dump" => $row[1]);
return ($ret);
}
}
/*
*
*/
function doneSingleSignOn($db, &$login, $user_id, $is_first_sso = FALSE)
{
global $logger;
$authenticationMethod =
(($_SERVER["HTTPS"] == 'on') ? lassoSamlAuthenticationMethodSecureRemotePassword : lassoSamlAuthenticationMethodPassword);
// reauth in session_cache_expire, default is 180 minutes
$reauthenticateOnOrAfter = strftime("%Y-%m-%dT%H:%M:%SZ", time() + session_cache_expire() * 60);
if ($login->protocolProfile == lassoLoginProtocolProfileBrwsArt)
$login->buildArtifactMsg(TRUE, // User is authenticated
$authenticationMethod, $reauthenticateOnOrAfter, lassoHttpMethodRedirect);
else if ($login->protocolProfile == lassoLoginProtocolProfileBrwsPost)
die("TODO : Post\n"); // TODO
else
{
$logger->log("Unknown protocol profile", PEAR_LOG_CRIT);
die("Unknown protocol profile\n");
}
if ($is_first_sso)
{
// name_identifier
$query = "INSERT INTO nameidentifiers (name_identifier, user_id) ";
$query .= "VALUES ('" . $login->nameIdentifier . "','$user_id')";
$res =& $db->query($query);
if (DB::isError($res))
{
$logger->log("DB Error :" . $db->getMessage(), PEAR_LOG_CRIT);
$logger->log("DB Error :" . $db->getDebugInfo(), PEAR_LOG_DEBUG);
die($res->getMessage());
}
}
$identity = $login->identity;
// do we need to update identity dump?
if ($login->isIdentityDirty)
updateIdentityDump($db, $user_id, $identity->dump());
$session = $login->session;
// do we need to update session dump?
if ($login->isSessionDirty)
updateSessionDump($db, $user_id, $session->dump());
if (empty($login->assertionArtifact))
{
$logger->log("Assertion Artifact is empty", PEAR_LOG_CRIT);
die("assertion Artifact is empty");
}
saveAssertionArtifact($db, $login->assertionArtifact, $login->assertion);
unset($_SESSION['login_dump']); // delete login_dump
$_SESSION['identity_dump'] = $session->dump();
$_SESSION['session_dump'] = $session->dump();
switch($login->protocolProfile)
{
case lassoLoginProtocolProfileBrwsArt:
$url = $login->msgUrl;
header("Request-URI: $url");
header("Content-Location: $url");
header("Location: $url\n\n");
lasso_shutdown();
exit;
case lassoLoginProtocolProfileBrwsPost:
// TODO : lassoLoginProtocolProfileBrwsPost
default:
$logger->log("Unknown Login Protocol Profile :" . $db->getMessage(), PEAR_LOG_CRIT);
die("Unknown Login Protocol Profile");
}
}
// validate login
if ($form->validate())
{
if (empty($_SESSION['login_dump']))
{
$logger->log("Login dump is not registred in the session", PEAR_LOG_ERR);
die("Login dump is not registred");
}
$login = LassoLogin::newFromDump($server, $_SESSION['login_dump']);
if (($user_id = authentificateUser($db, $form->exportValue('username'),
$form->exportValue('password'))))
{
$array = getIdentityDumpAndSessionDumpFromUserID($db, $user_id);
$is_first_sso = (empty($array) ? TRUE : FALSE);
if (!$is_first_sso)
{
$login->setIdentityFromDump($array['identity_dump']);
$login->setSessionFromDump($array['session_dump']);
}
else
$logger->log("First SingleSignOn for user '$user_id'", PEAR_LOG_INFO);
doneSingleSignOn($db, $login, $user_id, $is_first_sso);
$db->disconnect();
exit;
}
else
$logger->log("Authentication failure with login '".$form->exportValue('username')." password '". $form->exportValue('password') ."' IP '" . $_SERVER['REMOTE_ADDR']."'", PEAR_LOG_WARNING);
}
else
{
$login = new LassoLogin($server);
// init login
updateDumpsFromSession($login);
initFromAuthnRequest($login);
// User must NOT Authenticate with the IdP
if (!$login->mustAuthenticate())
{
$user_id = getUserIDFromNameIdentifier($db, $login->nameIdentifier);
if (!$user_id)
{
$logger->log("Could not get UserID from Name Identifier '" . $login->nameIdentifier . "'", PEAR_LOG_ERR);
die("Internal Server Error");
}
doneSingleSignOn($db, $login, $user_id);
$db->disconnect();
exit;
}
else
{
// register login dump in this session,
// we can not transfert xml dump with hidden input
$_SESSION['login_dump'] = $login->dump();
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<body>
<?php
$form->display();
?>
</body>
</html>
|