Logs last use of Auth-Groupe-X keys (Closes #1476).
[platal.git] / modules / auth.php
CommitLineData
5d292fd8 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
5d292fd8 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22class AuthModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
eb5a266d
SJ
27 'groupex/donne-chall.php' => $this->make_hook('chall', AUTH_PUBLIC),
28 'groupex/export-econfiance.php' => $this->make_hook('econf', AUTH_PUBLIC, 'user', NO_HTTPS),
d5749a28 29
eb5a266d 30 'webservices/manageurs.php' => $this->make_hook('manageurs', AUTH_PUBLIC, 'user', NO_HTTPS),
87221416 31
eb5a266d
SJ
32 'auth-redirect.php' => $this->make_hook('redirect', AUTH_COOKIE),
33 'auth-groupex.php' => $this->make_hook('groupex_old', AUTH_COOKIE),
34 'auth-groupex' => $this->make_hook('groupex', AUTH_COOKIE),
35 'admin/auth-groupes-x' => $this->make_hook('admin_authgroupesx', AUTH_MDP, 'admin'),
5d292fd8 36 );
37 }
38
26ba053e 39 function handler_chall($page)
d5749a28 40 {
41 $_SESSION["chall"] = uniqid(rand(), 1);
42 echo $_SESSION["chall"] . "\n" . session_id();
43 exit;
44 }
45
26ba053e 46 function handler_econf($page)
d5749a28 47 {
48 global $globals;
49
d5749a28 50 $cle = $globals->core->econfiance;
51
94b72319
FB
52 $res = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<membres>\n\n";
53
ed06daba 54 if (S::v('chall') && Get::s('PASS') == md5(S::v('chall').$cle)) {
7f1ff426 55 $list = new MMList(User::getWithUID(10154), "x-econfiance.polytechnique.org");
9bb8bf21 56 $members = $list->get_members('membres');
d5749a28 57 if (is_array($members)) {
58 $membres = Array();
59 foreach($members[1] as $member) {
94b72319
FB
60 $user = User::getSilent($member[1]);
61 if ($user && $user->hasProfile()) {
62 $profile = $user->profile();
63 $res .= "<membre>\n";
64 $res .= "\t<nom>" . $profile->lastName() . "</nom>\n";
65 $res .= "\t<prenom>" . $profile->firstName() . "</prenom>\n";
66 $res .= "\t<email>" . $user->forlifeEmail() . "</email>\n";
67 $res .= "</membre>\n\n";
d5749a28 68 }
69 }
70 }
d5749a28 71 $res .= "</membres>\n\n";
72
3cb500d5 73 pl_content_headers("text/xml");
d5749a28 74 echo $res;
75 }
76 exit;
77 }
78
26ba053e 79 function handler_manageurs($page)
87221416 80 {
81 global $globals;
82
83 require_once 'webservices/manageurs.server.inc.php';
84
34c8c3b5 85 $ips = array_flip(explode(' ', $globals->manageurs->authorized_ips));
87221416 86 if ($ips && isset($ips[$_SERVER['REMOTE_ADDR']])) {
87 $server = xmlrpc_server_create();
88
89 xmlrpc_server_register_method($server, 'get_annuaire_infos', 'get_annuaire_infos');
90 xmlrpc_server_register_method($server, 'get_nouveau_infos', 'get_nouveau_infos');
91
206e75c3 92 $request = @$GLOBALS['HTTP_RAW_POST_DATA'];
87221416 93 $response = xmlrpc_server_call_method($server, $request, null);
3cb500d5 94 pl_content_headers("text/xml");
87221416 95 print $response;
96 xmlrpc_server_destroy($server);
97 }
34c8c3b5 98
99 exit;
87221416 100 }
101
26ba053e 102 function handler_redirect($page)
5d292fd8 103 {
5e2307dc 104 http_redirect(Env::v('dest', '/'));
5d292fd8 105 }
106
26ba053e 107 function handler_groupex_old($page)
670b0ac0 108 {
109 return $this->handler_groupex($page, 'iso-8859-1');
110 }
111
26ba053e 112 function handler_groupex($page, $charset = 'utf8')
5d292fd8 113 {
460d8f55 114 $this->load('auth.inc.php');
6c85148b 115 $page->assign('referer', true);
5d292fd8 116
117 $gpex_pass = $_GET["pass"];
118 $gpex_url = urldecode($_GET["url"]);
119 if (strpos($gpex_url, '?') === false) {
120 $gpex_url .= "?PHPSESSID=" . $_GET["session"];
121 } else {
122 $gpex_url .= "&PHPSESSID=" . $_GET["session"];
123 }
124
e168b75d 125 // Normalize the return URL.
670b0ac0 126 if (!preg_match("/^(http|https):\/\/.*/",$gpex_url)) {
5d292fd8 127 $gpex_url = "http://$gpex_url";
670b0ac0 128 }
5d292fd8 129 $gpex_challenge = $_GET["challenge"];
130
e168b75d 131 // Update the last login information (unless the user is in SUID).
0469a7fb 132 $uid = S::i('uid');
0c02607e 133 if (!S::suid()) {
07e8e0ab 134 global $platal;
d2f8addb 135 S::logger($uid)->log('connexion_auth_ext', $platal->path.' '.urldecode($_GET['url']));
5d292fd8 136 }
137
e168b75d 138 // Iterate over the auth token to find which one did sign the request.
eb41eda9 139 $res = XDB::iterRow('SELECT privkey, name, datafields, returnurls FROM group_auth');
e10bc2ef 140 while (list($privkey,$name,$datafields,$returnurls) = $res->next()) {
5d292fd8 141 if (md5($gpex_challenge.$privkey) == $gpex_pass) {
50579de4 142 $returnurls = trim($returnurls);
e168b75d
VZ
143 // We check that the return url matches a per-key regexp to prevent
144 // replay attacks (more exactly to force replay attacks to redirect
145 // the user to the real GroupeX website, which defeats the attack).
50579de4 146 if (empty($returnurls) || @preg_match($returnurls, $gpex_url)) {
e10bc2ef 147 $returl = $gpex_url . gpex_make_params($gpex_challenge, $privkey, $datafields, $charset);
168a0eda
SJ
148 XDB::execute('UPDATE group_auth
149 SET last_used = DATE(NOW())
150 WHERE name = {?}',
151 $name);
e10bc2ef 152 http_redirect($returl);
e168b75d
VZ
153 } else if (S::admin()) {
154 $page->kill("La requête d'authentification a échouée (url de retour invalide).");
e10bc2ef 155 }
5d292fd8 156 }
157 }
158
e168b75d
VZ
159 // Otherwise (if no valid request was found, or if the return URL is not
160 // acceptable), the user is redirected back to our homepage.
161 pl_redirect('/');
5d292fd8 162 }
670b0ac0 163
26ba053e 164 function handler_admin_authgroupesx($page, $action = 'list', $id = null)
670b0ac0 165 {
46f272fe 166 $page->setTitle('Administration - Auth groupes X');
a7de4ef7 167 $page->assign('title', 'Gestion de l\'authentification centralisée');
eb41eda9 168 $table_editor = new PLTableEditor('admin/auth-groupes-x','group_auth','id');
92423144 169 $table_editor->describe('name','nom',true);
a7de4ef7 170 $table_editor->describe('privkey','clé privée',false);
171 $table_editor->describe('datafields','champs renvoyés',true);
e10bc2ef 172 $table_editor->describe('returnurls','urls de retour',true);
168a0eda 173 $table_editor->describe('last_used', 'dernière utilisation', true);
92423144 174 $table_editor->apply($page, $action, $id);
eaf30d86 175 }
5d292fd8 176}
177
a7de4ef7 178// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
5d292fd8 179?>