xref: /dokuwiki/inc/auth.php (revision 04369c3eae728e14962c41d1ab259f9e7ed99144)
1ed7b5f09Sandi<?php
215fae107Sandi/**
315fae107Sandi * Authentication library
415fae107Sandi *
515fae107Sandi * Including this file will automatically try to login
615fae107Sandi * a user by calling auth_login()
715fae107Sandi *
815fae107Sandi * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
915fae107Sandi * @author     Andreas Gohr <andi@splitbrain.org>
1015fae107Sandi */
1115fae107Sandi
12fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
131c73890cSAndreas Gohr
14ebf97c8fSAndreas Gohr// some ACL level defines
15ebf97c8fSAndreas Gohrdefine('AUTH_NONE', 0);
16ebf97c8fSAndreas Gohrdefine('AUTH_READ', 1);
17ebf97c8fSAndreas Gohrdefine('AUTH_EDIT', 2);
18ebf97c8fSAndreas Gohrdefine('AUTH_CREATE', 4);
19ebf97c8fSAndreas Gohrdefine('AUTH_UPLOAD', 8);
20ebf97c8fSAndreas Gohrdefine('AUTH_DELETE', 16);
21ebf97c8fSAndreas Gohrdefine('AUTH_ADMIN', 255);
22ebf97c8fSAndreas Gohr
2316905344SAndreas Gohr/**
2416905344SAndreas Gohr * Initialize the auth system.
2516905344SAndreas Gohr *
2616905344SAndreas Gohr * This function is automatically called at the end of init.php
2716905344SAndreas Gohr *
2816905344SAndreas Gohr * This used to be the main() of the auth.php
2916905344SAndreas Gohr *
3016905344SAndreas Gohr * @todo backend loading maybe should be handled by the class autoloader
3116905344SAndreas Gohr * @todo maybe split into multiple functions at the XXX marked positions
32ab5d26daSAndreas Gohr * @triggers AUTH_LOGIN_CHECK
33ab5d26daSAndreas Gohr * @return bool
3416905344SAndreas Gohr */
3516905344SAndreas Gohrfunction auth_setup() {
36742c66f8Schris    global $conf;
3793a7873eSAndreas Gohr    /* @var DokuWiki_Auth_Plugin $auth */
3803c4aec3Schris    global $auth;
39bcc94b2cSAndreas Gohr    /* @var Input $INPUT */
40bcc94b2cSAndreas Gohr    global $INPUT;
419a9714acSDominik Eckelmann    global $AUTH_ACL;
429a9714acSDominik Eckelmann    global $lang;
4327058a05SMichael Hamann    /* @var Doku_Plugin_Controller $plugin_controller */
449c29eea5SJan Schumann    global $plugin_controller;
459a9714acSDominik Eckelmann    $AUTH_ACL = array();
4603c4aec3Schris
4716905344SAndreas Gohr    if(!$conf['useacl']) return false;
4816905344SAndreas Gohr
499c29eea5SJan Schumann    // try to load auth backend from plugins
509c29eea5SJan Schumann    foreach ($plugin_controller->getList('auth') as $plugin) {
519c29eea5SJan Schumann      if ($conf['authtype'] === $plugin) {
52f4476bd9SJan Schumann        $auth = $plugin_controller->load('auth', $plugin);
539c29eea5SJan Schumann        break;
54e71b0ef7SGuy Brand      } elseif ('auth' . $conf['authtype'] === $plugin) {
55e71b0ef7SGuy Brand        // matches old auth backends (pre-Weatherwax)
56e71b0ef7SGuy Brand        $auth = $plugin_controller->load('auth', $plugin);
57a91f1103SAnika Henke        msg('Your authtype setting is deprecated. You must set $conf[\'authtype\'] = "auth' . $conf['authtype'] . '"'
5898e31f85SKlap-in             . ' in your configuration (see <a href="https://www.dokuwiki.org/auth">Authentication Backends</a>)',-1,'','',MSG_ADMINS_ONLY);
599c29eea5SJan Schumann      }
609c29eea5SJan Schumann    }
618b06d178Schris
626416b708SMichael Hamann    if(!isset($auth) || !$auth){
633094e817SAndreas Gohr        msg($lang['authtempfail'], -1);
643094e817SAndreas Gohr        return false;
653094e817SAndreas Gohr    }
668b06d178Schris
676416b708SMichael Hamann    if ($auth->success == false) {
680f4f4adfSAndreas Gohr    // degrade to unauthenticated user
69d2dde4ebSMatthias Grimm      unset($auth);
700f4f4adfSAndreas Gohr      auth_logoff();
71cd52f92dSchris      msg($lang['authtempfail'], -1);
726416b708SMichael Hamann        return false;
73d2dde4ebSMatthias Grimm    }
7416905344SAndreas Gohr
7516905344SAndreas Gohr    // do the login either by cookie or provided credentials XXX
76bcc94b2cSAndreas Gohr    $INPUT->set('http_credentials', false);
77bcc94b2cSAndreas Gohr    if(!$conf['rememberme']) $INPUT->set('r', false);
78bbbd6568SAndreas Gohr
79b2665af7SMichael Hamann    // handle renamed HTTP_AUTHORIZATION variable (can happen when a fix like
80b2665af7SMichael Hamann    // the one presented at
81b2665af7SMichael Hamann    // http://www.besthostratings.com/articles/http-auth-php-cgi.html is used
82b2665af7SMichael Hamann    // for enabling HTTP authentication with CGI/SuExec)
83b2665af7SMichael Hamann    if(isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']))
84b2665af7SMichael Hamann        $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION'];
85528ddc7cSAndreas Gohr    // streamline HTTP auth credentials (IIS/rewrite -> mod_php)
8606156f3cSAndreas Gohr    if(isset($_SERVER['HTTP_AUTHORIZATION'])) {
87528ddc7cSAndreas Gohr        list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) =
88528ddc7cSAndreas Gohr            explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));
89528ddc7cSAndreas Gohr    }
90528ddc7cSAndreas Gohr
911e8c9c90SAndreas Gohr    // if no credentials were given try to use HTTP auth (for SSO)
92bcc94b2cSAndreas Gohr    if(!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])) {
93bcc94b2cSAndreas Gohr        $INPUT->set('u', $_SERVER['PHP_AUTH_USER']);
94bcc94b2cSAndreas Gohr        $INPUT->set('p', $_SERVER['PHP_AUTH_PW']);
95bcc94b2cSAndreas Gohr        $INPUT->set('http_credentials', true);
961e8c9c90SAndreas Gohr    }
971e8c9c90SAndreas Gohr
98191bb90aSAndreas Gohr    // apply cleaning
9993a7873eSAndreas Gohr    if (true === $auth->success) {
10000d58927SMichael Hamann        $INPUT->set('u', $auth->cleanUser($INPUT->str('u')));
101f4476bd9SJan Schumann    }
102191bb90aSAndreas Gohr
103bcc94b2cSAndreas Gohr    if($INPUT->str('authtok')) {
104f13fa892SAndreas Gohr        // when an authentication token is given, trust the session
105bcc94b2cSAndreas Gohr        auth_validateToken($INPUT->str('authtok'));
106f13fa892SAndreas Gohr    } elseif(!is_null($auth) && $auth->canDo('external')) {
107f13fa892SAndreas Gohr        // external trust mechanism in place
108bcc94b2cSAndreas Gohr        $auth->trustExternal($INPUT->str('u'), $INPUT->str('p'), $INPUT->bool('r'));
109f5cb575dSAndreas Gohr    } else {
1106080c584SRobin Gareus        $evdata = array(
111bcc94b2cSAndreas Gohr            'user'     => $INPUT->str('u'),
112bcc94b2cSAndreas Gohr            'password' => $INPUT->str('p'),
113bcc94b2cSAndreas Gohr            'sticky'   => $INPUT->bool('r'),
114bcc94b2cSAndreas Gohr            'silent'   => $INPUT->bool('http_credentials')
1156080c584SRobin Gareus        );
116b5ee21aaSAdrian Lang        trigger_event('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper');
117f5cb575dSAndreas Gohr    }
118f5cb575dSAndreas Gohr
11916905344SAndreas Gohr    //load ACL into a global array XXX
12075c93b77SAndreas Gohr    $AUTH_ACL = auth_loadACL();
121ab5d26daSAndreas Gohr
122ab5d26daSAndreas Gohr    return true;
12375c93b77SAndreas Gohr}
12475c93b77SAndreas Gohr
12575c93b77SAndreas Gohr/**
12675c93b77SAndreas Gohr * Loads the ACL setup and handle user wildcards
12775c93b77SAndreas Gohr *
12875c93b77SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
129ab5d26daSAndreas Gohr * @return array
13075c93b77SAndreas Gohr */
13175c93b77SAndreas Gohrfunction auth_loadACL() {
13275c93b77SAndreas Gohr    global $config_cascade;
133b78bf706Sromain    global $USERINFO;
13475c93b77SAndreas Gohr
13575c93b77SAndreas Gohr    if(!is_readable($config_cascade['acl']['default'])) return array();
13675c93b77SAndreas Gohr
13775c93b77SAndreas Gohr    $acl = file($config_cascade['acl']['default']);
13875c93b77SAndreas Gohr
139191bb90aSAndreas Gohr    //support user wildcard
14032e82180SAndreas Gohr    $out = array();
1419ce556d2SAndreas Gohr    foreach($acl as $line) {
1429ce556d2SAndreas Gohr        $line = trim($line);
1439ce556d2SAndreas Gohr        if($line{0} == '#') continue;
1449ce556d2SAndreas Gohr        list($id,$rest) = preg_split('/\s+/',$line,2);
14532e82180SAndreas Gohr
1469ce556d2SAndreas Gohr        if(strstr($line, '%GROUP%')){
1479ce556d2SAndreas Gohr            foreach((array) $USERINFO['grps'] as $grp){
148b78bf706Sromain                $nid   = str_replace('%GROUP%',cleanID($grp),$id);
14932e82180SAndreas Gohr                $nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest);
15032e82180SAndreas Gohr                $out[] = "$nid\t$nrest";
151b78bf706Sromain            }
15232e82180SAndreas Gohr        } else {
15375c93b77SAndreas Gohr            $id   = str_replace('%USER%',cleanID($_SERVER['REMOTE_USER']),$id);
15475c93b77SAndreas Gohr            $rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest);
15532e82180SAndreas Gohr            $out[] = "$id\t$rest";
156a8fe108bSGuy Brand        }
15711799630Sandi    }
1589ce556d2SAndreas Gohr
15932e82180SAndreas Gohr    return $out;
160f3f0262cSandi}
161f3f0262cSandi
162ab5d26daSAndreas Gohr/**
163ab5d26daSAndreas Gohr * Event hook callback for AUTH_LOGIN_CHECK
164ab5d26daSAndreas Gohr *
165ab5d26daSAndreas Gohr * @param $evdata
166ab5d26daSAndreas Gohr * @return bool
167ab5d26daSAndreas Gohr */
168b5ee21aaSAdrian Langfunction auth_login_wrapper($evdata) {
169ab5d26daSAndreas Gohr    return auth_login(
170ab5d26daSAndreas Gohr        $evdata['user'],
171b5ee21aaSAdrian Lang        $evdata['password'],
172b5ee21aaSAdrian Lang        $evdata['sticky'],
173ab5d26daSAndreas Gohr        $evdata['silent']
174ab5d26daSAndreas Gohr    );
175b5ee21aaSAdrian Lang}
176b5ee21aaSAdrian Lang
177f3f0262cSandi/**
178f3f0262cSandi * This tries to login the user based on the sent auth credentials
179f3f0262cSandi *
180f3f0262cSandi * The authentication works like this: if a username was given
18115fae107Sandi * a new login is assumed and user/password are checked. If they
18215fae107Sandi * are correct the password is encrypted with blowfish and stored
18315fae107Sandi * together with the username in a cookie - the same info is stored
18415fae107Sandi * in the session, too. Additonally a browserID is stored in the
18515fae107Sandi * session.
18615fae107Sandi *
18715fae107Sandi * If no username was given the cookie is checked: if the username,
18815fae107Sandi * crypted password and browserID match between session and cookie
18915fae107Sandi * no further testing is done and the user is accepted
19015fae107Sandi *
19115fae107Sandi * If a cookie was found but no session info was availabe the
192136ce040Sandi * blowfish encrypted password from the cookie is decrypted and
19315fae107Sandi * together with username rechecked by calling this function again.
194f3f0262cSandi *
195f3f0262cSandi * On a successful login $_SERVER[REMOTE_USER] and $USERINFO
196f3f0262cSandi * are set.
19715fae107Sandi *
19815fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
19915fae107Sandi *
20015fae107Sandi * @param   string  $user    Username
20115fae107Sandi * @param   string  $pass    Cleartext Password
20215fae107Sandi * @param   bool    $sticky  Cookie should not expire
203f112c2faSAndreas Gohr * @param   bool    $silent  Don't show error on bad auth
20415fae107Sandi * @return  bool             true on successful auth
205f3f0262cSandi */
206f112c2faSAndreas Gohrfunction auth_login($user, $pass, $sticky = false, $silent = false) {
207f3f0262cSandi    global $USERINFO;
208f3f0262cSandi    global $conf;
209f3f0262cSandi    global $lang;
21027058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
211cd52f92dSchris    global $auth;
212ab5d26daSAndreas Gohr
213132bdbfeSandi    $sticky ? $sticky = true : $sticky = false; //sanity check
214f3f0262cSandi
215beca106aSAdrian Lang    if(!$auth) return false;
216beca106aSAdrian Lang
217bbbd6568SAndreas Gohr    if(!empty($user)) {
218132bdbfeSandi        //usual login
219cd52f92dSchris        if($auth->checkPass($user, $pass)) {
220132bdbfeSandi            // make logininfo globally available
221f3f0262cSandi            $_SERVER['REMOTE_USER'] = $user;
22230d544a4SMichael Hamann            $secret                 = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
223*04369c3eSMichael Hamann            auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
224132bdbfeSandi            return true;
225f3f0262cSandi        } else {
226f3f0262cSandi            //invalid credentials - log off
227f112c2faSAndreas Gohr            if(!$silent) msg($lang['badlogin'], -1);
228f3f0262cSandi            auth_logoff();
229132bdbfeSandi            return false;
230f3f0262cSandi        }
231f3f0262cSandi    } else {
232132bdbfeSandi        // read cookie information
233645c0a36SAndreas Gohr        list($user, $sticky, $pass) = auth_getCookie();
234132bdbfeSandi        if($user && $pass) {
235132bdbfeSandi            // we got a cookie - see if we can trust it
236fa7c70ffSAdrian Lang
237fa7c70ffSAdrian Lang            // get session info
238fa7c70ffSAdrian Lang            $session = $_SESSION[DOKU_COOKIE]['auth'];
239132bdbfeSandi            if(isset($session) &&
2407172dbc0SAndreas Gohr                $auth->useSessionCache($user) &&
2414c989037SChris Smith                ($session['time'] >= time() - $conf['auth_security_timeout']) &&
242132bdbfeSandi                ($session['user'] == $user) &&
243234ce57eSAndreas Gohr                ($session['pass'] == sha1($pass)) && //still crypted
244ab5d26daSAndreas Gohr                ($session['buid'] == auth_browseruid())
245ab5d26daSAndreas Gohr            ) {
246234ce57eSAndreas Gohr
247132bdbfeSandi                // he has session, cookie and browser right - let him in
248132bdbfeSandi                $_SERVER['REMOTE_USER'] = $user;
249132bdbfeSandi                $USERINFO               = $session['info']; //FIXME move all references to session
250132bdbfeSandi                return true;
251132bdbfeSandi            }
252f112c2faSAndreas Gohr            // no we don't trust it yet - recheck pass but silent
25330d544a4SMichael Hamann            $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
254*04369c3eSMichael Hamann            $pass   = auth_decrypt($pass, $secret);
255f112c2faSAndreas Gohr            return auth_login($user, $pass, $sticky, true);
256132bdbfeSandi        }
257132bdbfeSandi    }
258f3f0262cSandi    //just to be sure
259883179a4SAndreas Gohr    auth_logoff(true);
260132bdbfeSandi    return false;
261f3f0262cSandi}
262132bdbfeSandi
263132bdbfeSandi/**
264f13fa892SAndreas Gohr * Checks if a given authentication token was stored in the session
265f13fa892SAndreas Gohr *
266f13fa892SAndreas Gohr * Will setup authentication data using data from the session if the
267f13fa892SAndreas Gohr * token is correct. Will exit with a 401 Status if not.
268f13fa892SAndreas Gohr *
269f13fa892SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
270f13fa892SAndreas Gohr * @param  string $token The authentication token
271f13fa892SAndreas Gohr * @return boolean true (or will exit on failure)
272f13fa892SAndreas Gohr */
273f13fa892SAndreas Gohrfunction auth_validateToken($token) {
274f13fa892SAndreas Gohr    if(!$token || $token != $_SESSION[DOKU_COOKIE]['auth']['token']) {
275f13fa892SAndreas Gohr        // bad token
2769d2e1be6SAndreas Gohr        http_status(401);
277f13fa892SAndreas Gohr        print 'Invalid auth token - maybe the session timed out';
278f13fa892SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['token']); // no second chance
279f13fa892SAndreas Gohr        exit;
280f13fa892SAndreas Gohr    }
281f13fa892SAndreas Gohr    // still here? trust the session data
282f13fa892SAndreas Gohr    global $USERINFO;
283f13fa892SAndreas Gohr    $_SERVER['REMOTE_USER'] = $_SESSION[DOKU_COOKIE]['auth']['user'];
284f13fa892SAndreas Gohr    $USERINFO               = $_SESSION[DOKU_COOKIE]['auth']['info'];
285f13fa892SAndreas Gohr    return true;
286f13fa892SAndreas Gohr}
287f13fa892SAndreas Gohr
288f13fa892SAndreas Gohr/**
289f13fa892SAndreas Gohr * Create an auth token and store it in the session
290f13fa892SAndreas Gohr *
291f13fa892SAndreas Gohr * NOTE: this is completely unrelated to the getSecurityToken() function
292f13fa892SAndreas Gohr *
293f13fa892SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
294f13fa892SAndreas Gohr * @return string The auth token
295f13fa892SAndreas Gohr */
296f13fa892SAndreas Gohrfunction auth_createToken() {
297483b6238SMichael Hamann    $token = md5(auth_randombytes(16));
29809c2d803SAndreas Gohr    @session_start(); // reopen the session if needed
299f13fa892SAndreas Gohr    $_SESSION[DOKU_COOKIE]['auth']['token'] = $token;
30009c2d803SAndreas Gohr    session_write_close();
301f13fa892SAndreas Gohr    return $token;
302f13fa892SAndreas Gohr}
303f13fa892SAndreas Gohr
304f13fa892SAndreas Gohr/**
305136ce040Sandi * Builds a pseudo UID from browser and IP data
306132bdbfeSandi *
307132bdbfeSandi * This is neither unique nor unfakable - still it adds some
308136ce040Sandi * security. Using the first part of the IP makes sure
30980b4f376SAndreas Gohr * proxy farms like AOLs are still okay.
31015fae107Sandi *
31115fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
31215fae107Sandi *
31315fae107Sandi * @return  string  a MD5 sum of various browser headers
314132bdbfeSandi */
315132bdbfeSandifunction auth_browseruid() {
3162f9daf16SAndreas Gohr    $ip  = clientIP(true);
317132bdbfeSandi    $uid = '';
318132bdbfeSandi    $uid .= $_SERVER['HTTP_USER_AGENT'];
319132bdbfeSandi    $uid .= $_SERVER['HTTP_ACCEPT_ENCODING'];
320132bdbfeSandi    $uid .= $_SERVER['HTTP_ACCEPT_CHARSET'];
3212f9daf16SAndreas Gohr    $uid .= substr($ip, 0, strpos($ip, '.'));
32280b4f376SAndreas Gohr    $uid = strtolower($uid);
323132bdbfeSandi    return md5($uid);
324132bdbfeSandi}
325132bdbfeSandi
326132bdbfeSandi/**
327132bdbfeSandi * Creates a random key to encrypt the password in cookies
32815fae107Sandi *
32915fae107Sandi * This function tries to read the password for encrypting
33098407a7aSandi * cookies from $conf['metadir'].'/_htcookiesalt'
33115fae107Sandi * if no such file is found a random key is created and
33215fae107Sandi * and stored in this file.
33315fae107Sandi *
33415fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
33532ed2b36SAndreas Gohr * @param   bool $addsession if true, the sessionid is added to the salt
33630d544a4SMichael Hamann * @param   bool $secure     if security is more important than keeping the old value
33715fae107Sandi * @return  string
338132bdbfeSandi */
33930d544a4SMichael Hamannfunction auth_cookiesalt($addsession = false, $secure = false) {
340132bdbfeSandi    global $conf;
34198407a7aSandi    $file = $conf['metadir'].'/_htcookiesalt';
34230d544a4SMichael Hamann    if ($secure || !file_exists($file)) {
34330d544a4SMichael Hamann        $file = $conf['metadir'].'/_htcookiesalt2';
34430d544a4SMichael Hamann    }
345132bdbfeSandi    $salt = io_readFile($file);
346132bdbfeSandi    if(empty($salt)) {
34730d544a4SMichael Hamann        $salt = bin2hex(auth_randombytes(64));
348132bdbfeSandi        io_saveFile($file, $salt);
349132bdbfeSandi    }
35032ed2b36SAndreas Gohr    if($addsession) {
35132ed2b36SAndreas Gohr        $salt .= session_id();
35232ed2b36SAndreas Gohr    }
353132bdbfeSandi    return $salt;
354f3f0262cSandi}
355f3f0262cSandi
356f3f0262cSandi/**
357483b6238SMichael Hamann * Return truly (pseudo) random bytes if available, otherwise fall back to mt_rand
358483b6238SMichael Hamann *
359483b6238SMichael Hamann * @author Mark Seecof
360483b6238SMichael Hamann * @author Michael Hamann <michael@content-space.de>
361483b6238SMichael Hamann * @link   http://www.php.net/manual/de/function.mt-rand.php#83655
362483b6238SMichael Hamann * @param int $length number of bytes to get
363483b6238SMichael Hamann * @throws Exception when no usable random generator is found
364483b6238SMichael Hamann * @return string binary random strings
365483b6238SMichael Hamann */
366483b6238SMichael Hamannfunction auth_randombytes($length) {
367483b6238SMichael Hamann    $strong = false;
368483b6238SMichael Hamann    $rbytes = false;
369483b6238SMichael Hamann
370483b6238SMichael Hamann    if (function_exists('openssl_random_pseudo_bytes')
371483b6238SMichael Hamann        && (version_compare(PHP_VERSION, '5.3.4') >= 0
372483b6238SMichael Hamann            || strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')
373483b6238SMichael Hamann    ) {
374483b6238SMichael Hamann        $rbytes = openssl_random_pseudo_bytes($length, $strong);
375483b6238SMichael Hamann    }
376483b6238SMichael Hamann
377483b6238SMichael Hamann    if (!$strong && function_exists('mcrypt_create_iv')
378483b6238SMichael Hamann        && (version_compare(PHP_VERSION, '5.3.7') >= 0
379483b6238SMichael Hamann            || strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')
380483b6238SMichael Hamann    ) {
381483b6238SMichael Hamann        $rbytes = mcrypt_create_iv($length, MCRYPT_DEV_URANDOM);
382483b6238SMichael Hamann        if ($rbytes !== false && strlen($rbytes) === $length) {
383483b6238SMichael Hamann            $strong = true;
384483b6238SMichael Hamann        }
385483b6238SMichael Hamann    }
386483b6238SMichael Hamann
387483b6238SMichael Hamann
388483b6238SMichael Hamann    // If no strong randoms available, try OS the specific ways
389483b6238SMichael Hamann    if(!$strong) {
390483b6238SMichael Hamann        // Unix/Linux platform
391483b6238SMichael Hamann        $fp = @fopen('/dev/urandom', 'rb');
392483b6238SMichael Hamann        if($fp !== false) {
393483b6238SMichael Hamann            $rbytes = fread($fp, $length);
394483b6238SMichael Hamann            fclose($fp);
395483b6238SMichael Hamann        }
396483b6238SMichael Hamann
397483b6238SMichael Hamann        // MS-Windows platform
398483b6238SMichael Hamann        if(class_exists('COM')) {
399483b6238SMichael Hamann            // http://msdn.microsoft.com/en-us/library/aa388176(VS.85).aspx
400483b6238SMichael Hamann            try {
401483b6238SMichael Hamann                $CAPI_Util = new COM('CAPICOM.Utilities.1');
402483b6238SMichael Hamann                $rbytes    = $CAPI_Util->GetRandom($length, 0);
403483b6238SMichael Hamann
404483b6238SMichael Hamann                // if we ask for binary data PHP munges it, so we
405483b6238SMichael Hamann                // request base64 return value.
406483b6238SMichael Hamann                if($rbytes) $rbytes = base64_decode($rbytes);
407483b6238SMichael Hamann            } catch(Exception $ex) {
408483b6238SMichael Hamann                // fail
409483b6238SMichael Hamann            }
410483b6238SMichael Hamann        }
411483b6238SMichael Hamann    }
412483b6238SMichael Hamann    if(strlen($rbytes) < $length) $rbytes = false;
413483b6238SMichael Hamann
414483b6238SMichael Hamann    // still no random bytes available - fall back to mt_rand()
415483b6238SMichael Hamann    if($rbytes === false) {
416483b6238SMichael Hamann        $rbytes = '';
417483b6238SMichael Hamann        for ($i = 0; $i < $length; ++$i) {
418483b6238SMichael Hamann            $rbytes .= chr(mt_rand(0, 255));
419483b6238SMichael Hamann        }
420483b6238SMichael Hamann    }
421483b6238SMichael Hamann
422483b6238SMichael Hamann    return $rbytes;
423483b6238SMichael Hamann}
424483b6238SMichael Hamann
425483b6238SMichael Hamann/**
426483b6238SMichael Hamann * Random number generator using the best available source
427483b6238SMichael Hamann *
428483b6238SMichael Hamann * @author Michael Samuel
429483b6238SMichael Hamann * @author Michael Hamann <michael@content-space.de>
430483b6238SMichael Hamann * @param int $min
431483b6238SMichael Hamann * @param int $max
432483b6238SMichael Hamann * @return int
433483b6238SMichael Hamann */
434483b6238SMichael Hamannfunction auth_random($min, $max) {
435483b6238SMichael Hamann    $abs_max = $max - $min;
436483b6238SMichael Hamann
437483b6238SMichael Hamann    $nbits = 0;
438483b6238SMichael Hamann    for ($n = $abs_max; $n > 0; $n >>= 1) {
439483b6238SMichael Hamann        ++$nbits;
440483b6238SMichael Hamann    }
441483b6238SMichael Hamann
442483b6238SMichael Hamann    $mask = (1 << $nbits) - 1;
443483b6238SMichael Hamann    do {
444483b6238SMichael Hamann        $bytes    = auth_randombytes(PHP_INT_SIZE);
445483b6238SMichael Hamann        $integers = unpack('Inum', $bytes);
446483b6238SMichael Hamann        $integer  = $integers["num"] & $mask;
447483b6238SMichael Hamann    } while ($integer > $abs_max);
448483b6238SMichael Hamann
449483b6238SMichael Hamann    return $min + $integer;
450483b6238SMichael Hamann}
451483b6238SMichael Hamann
452483b6238SMichael Hamann/**
453*04369c3eSMichael Hamann * Encrypt data using the given secret using AES
454*04369c3eSMichael Hamann *
455*04369c3eSMichael Hamann * The mode is CBC with a random initialization vector, the key is derived
456*04369c3eSMichael Hamann * using pbkdf2.
457*04369c3eSMichael Hamann *
458*04369c3eSMichael Hamann * @param string $data   The data that shall be encrypted
459*04369c3eSMichael Hamann * @param string $secret The secret/password that shall be used
460*04369c3eSMichael Hamann * @return string The ciphertext
461*04369c3eSMichael Hamann */
462*04369c3eSMichael Hamannfunction auth_encrypt($data, $secret) {
463*04369c3eSMichael Hamann    $iv = auth_randombytes(16);
464*04369c3eSMichael Hamann    $cipher = new Crypt_AES();
465*04369c3eSMichael Hamann    $cipher->setPassword($secret);
466*04369c3eSMichael Hamann
467*04369c3eSMichael Hamann    return $cipher->encrypt($iv.$data);
468*04369c3eSMichael Hamann}
469*04369c3eSMichael Hamann
470*04369c3eSMichael Hamann/**
471*04369c3eSMichael Hamann * Decrypt the given AES ciphertext
472*04369c3eSMichael Hamann *
473*04369c3eSMichael Hamann * The mode is CBC, the key is derived using pbkdf2
474*04369c3eSMichael Hamann *
475*04369c3eSMichael Hamann * @param string $ciphertext The encrypted data
476*04369c3eSMichael Hamann * @param string $secret     The secret/password that shall be used
477*04369c3eSMichael Hamann * @return string The decrypted data
478*04369c3eSMichael Hamann */
479*04369c3eSMichael Hamannfunction auth_decrypt($ciphertext, $secret) {
480*04369c3eSMichael Hamann    $cipher = new Crypt_AES();
481*04369c3eSMichael Hamann    $cipher->setPassword($secret);
482*04369c3eSMichael Hamann
483*04369c3eSMichael Hamann    return substr($cipher->decrypt($ciphertext), 16);
484*04369c3eSMichael Hamann}
485*04369c3eSMichael Hamann
486*04369c3eSMichael Hamann/**
487883179a4SAndreas Gohr * Log out the current user
488883179a4SAndreas Gohr *
489f3f0262cSandi * This clears all authentication data and thus log the user
490883179a4SAndreas Gohr * off. It also clears session data.
49115fae107Sandi *
49215fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
493883179a4SAndreas Gohr * @param bool $keepbc - when true, the breadcrumb data is not cleared
494f3f0262cSandi */
495883179a4SAndreas Gohrfunction auth_logoff($keepbc = false) {
496f3f0262cSandi    global $conf;
497f3f0262cSandi    global $USERINFO;
49827058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
4995298a619SAndreas Gohr    global $auth;
50037065e65Sandi
501d4869846SAndreas Gohr    // make sure the session is writable (it usually is)
502e9621d07SAndreas Gohr    @session_start();
503e9621d07SAndreas Gohr
504e71ce681SAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['auth']['user']))
505e71ce681SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['user']);
506e71ce681SAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['auth']['pass']))
507e71ce681SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['pass']);
508e71ce681SAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['auth']['info']))
509e71ce681SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['info']);
510883179a4SAndreas Gohr    if(!$keepbc && isset($_SESSION[DOKU_COOKIE]['bc']))
511e16eccb7SGuy Brand        unset($_SESSION[DOKU_COOKIE]['bc']);
51237065e65Sandi    if(isset($_SERVER['REMOTE_USER']))
513f3f0262cSandi        unset($_SERVER['REMOTE_USER']);
514132bdbfeSandi    $USERINFO = null; //FIXME
515f5c6743cSAndreas Gohr
51673ab87deSGabriel Birke    $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
517f5c6743cSAndreas Gohr    if(version_compare(PHP_VERSION, '5.2.0', '>')) {
51873ab87deSGabriel Birke        setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
519f5c6743cSAndreas Gohr    } else {
52073ab87deSGabriel Birke        setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl()));
521f5c6743cSAndreas Gohr    }
5225298a619SAndreas Gohr
523880f62faSAndreas Gohr    if($auth) $auth->logOff();
524f3f0262cSandi}
525f3f0262cSandi
526f3f0262cSandi/**
527f8cc712eSAndreas Gohr * Check if a user is a manager
528f8cc712eSAndreas Gohr *
529f8cc712eSAndreas Gohr * Should usually be called without any parameters to check the current
530f8cc712eSAndreas Gohr * user.
531f8cc712eSAndreas Gohr *
532f8cc712eSAndreas Gohr * The info is available through $INFO['ismanager'], too
533f8cc712eSAndreas Gohr *
534f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
535f8cc712eSAndreas Gohr * @see    auth_isadmin
536ab5d26daSAndreas Gohr * @param  string $user       Username
537ab5d26daSAndreas Gohr * @param  array  $groups     List of groups the user is in
538ab5d26daSAndreas Gohr * @param  bool   $adminonly  when true checks if user is admin
539ab5d26daSAndreas Gohr * @return bool
540f8cc712eSAndreas Gohr */
541f8cc712eSAndreas Gohrfunction auth_ismanager($user = null, $groups = null, $adminonly = false) {
542f8cc712eSAndreas Gohr    global $conf;
543f8cc712eSAndreas Gohr    global $USERINFO;
54427058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
545d752aedeSAndreas Gohr    global $auth;
546f8cc712eSAndreas Gohr
547beca106aSAdrian Lang    if(!$auth) return false;
548c66972f2SAdrian Lang    if(is_null($user)) {
549c66972f2SAdrian Lang        if(!isset($_SERVER['REMOTE_USER'])) {
550c66972f2SAdrian Lang            return false;
551c66972f2SAdrian Lang        } else {
552c66972f2SAdrian Lang            $user = $_SERVER['REMOTE_USER'];
553c66972f2SAdrian Lang        }
554c66972f2SAdrian Lang    }
555d6dc956fSAndreas Gohr    if(is_null($groups)) {
556d6dc956fSAndreas Gohr        $groups = (array) $USERINFO['grps'];
557e259aa79SAndreas Gohr    }
558e259aa79SAndreas Gohr
559d6dc956fSAndreas Gohr    // check superuser match
560d6dc956fSAndreas Gohr    if(auth_isMember($conf['superuser'], $user, $groups)) return true;
561d6dc956fSAndreas Gohr    if($adminonly) return false;
562e259aa79SAndreas Gohr    // check managers
563d6dc956fSAndreas Gohr    if(auth_isMember($conf['manager'], $user, $groups)) return true;
56400ce12daSChris Smith
565f8cc712eSAndreas Gohr    return false;
566f8cc712eSAndreas Gohr}
567f8cc712eSAndreas Gohr
568f8cc712eSAndreas Gohr/**
569f8cc712eSAndreas Gohr * Check if a user is admin
570f8cc712eSAndreas Gohr *
571f8cc712eSAndreas Gohr * Alias to auth_ismanager with adminonly=true
572f8cc712eSAndreas Gohr *
573f8cc712eSAndreas Gohr * The info is available through $INFO['isadmin'], too
574f8cc712eSAndreas Gohr *
575f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
576ab5d26daSAndreas Gohr * @see auth_ismanager()
577ab5d26daSAndreas Gohr * @param  string $user       Username
578ab5d26daSAndreas Gohr * @param  array  $groups     List of groups the user is in
579ab5d26daSAndreas Gohr * @return bool
580f8cc712eSAndreas Gohr */
581f8cc712eSAndreas Gohrfunction auth_isadmin($user = null, $groups = null) {
582f8cc712eSAndreas Gohr    return auth_ismanager($user, $groups, true);
583f8cc712eSAndreas Gohr}
584f8cc712eSAndreas Gohr
585d6dc956fSAndreas Gohr/**
586d6dc956fSAndreas Gohr * Match a user and his groups against a comma separated list of
587d6dc956fSAndreas Gohr * users and groups to determine membership status
588d6dc956fSAndreas Gohr *
589d6dc956fSAndreas Gohr * Note: all input should NOT be nameencoded.
590d6dc956fSAndreas Gohr *
591d6dc956fSAndreas Gohr * @param $memberlist string commaseparated list of allowed users and groups
592d6dc956fSAndreas Gohr * @param $user       string user to match against
593d6dc956fSAndreas Gohr * @param $groups     array  groups the user is member of
5945446f3ffSDominik Eckelmann * @return bool       true for membership acknowledged
595d6dc956fSAndreas Gohr */
596d6dc956fSAndreas Gohrfunction auth_isMember($memberlist, $user, array $groups) {
59727058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
598d6dc956fSAndreas Gohr    global $auth;
599d6dc956fSAndreas Gohr    if(!$auth) return false;
600d6dc956fSAndreas Gohr
601d6dc956fSAndreas Gohr    // clean user and groups
6024f56ecbfSAdrian Lang    if(!$auth->isCaseSensitive()) {
603d6dc956fSAndreas Gohr        $user   = utf8_strtolower($user);
604d6dc956fSAndreas Gohr        $groups = array_map('utf8_strtolower', $groups);
605d6dc956fSAndreas Gohr    }
606d6dc956fSAndreas Gohr    $user   = $auth->cleanUser($user);
607d6dc956fSAndreas Gohr    $groups = array_map(array($auth, 'cleanGroup'), $groups);
608d6dc956fSAndreas Gohr
609d6dc956fSAndreas Gohr    // extract the memberlist
610d6dc956fSAndreas Gohr    $members = explode(',', $memberlist);
611d6dc956fSAndreas Gohr    $members = array_map('trim', $members);
612d6dc956fSAndreas Gohr    $members = array_unique($members);
613d6dc956fSAndreas Gohr    $members = array_filter($members);
614d6dc956fSAndreas Gohr
615d6dc956fSAndreas Gohr    // compare cleaned values
616d6dc956fSAndreas Gohr    foreach($members as $member) {
6174f56ecbfSAdrian Lang        if(!$auth->isCaseSensitive()) $member = utf8_strtolower($member);
618d6dc956fSAndreas Gohr        if($member[0] == '@') {
619d6dc956fSAndreas Gohr            $member = $auth->cleanGroup(substr($member, 1));
620d6dc956fSAndreas Gohr            if(in_array($member, $groups)) return true;
621d6dc956fSAndreas Gohr        } else {
622d6dc956fSAndreas Gohr            $member = $auth->cleanUser($member);
623d6dc956fSAndreas Gohr            if($member == $user) return true;
624d6dc956fSAndreas Gohr        }
625d6dc956fSAndreas Gohr    }
626d6dc956fSAndreas Gohr
627d6dc956fSAndreas Gohr    // still here? not a member!
628d6dc956fSAndreas Gohr    return false;
629d6dc956fSAndreas Gohr}
630d6dc956fSAndreas Gohr
631f8cc712eSAndreas Gohr/**
63215fae107Sandi * Convinience function for auth_aclcheck()
63315fae107Sandi *
63415fae107Sandi * This checks the permissions for the current user
63515fae107Sandi *
63615fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
63715fae107Sandi *
6381698b983Smichael * @param  string  $id  page ID (needs to be resolved and cleaned)
63915fae107Sandi * @return int          permission level
640f3f0262cSandi */
641f3f0262cSandifunction auth_quickaclcheck($id) {
642f3f0262cSandi    global $conf;
643f3f0262cSandi    global $USERINFO;
644f3f0262cSandi    # if no ACL is used always return upload rights
645f3f0262cSandi    if(!$conf['useacl']) return AUTH_UPLOAD;
646f3f0262cSandi    return auth_aclcheck($id, $_SERVER['REMOTE_USER'], $USERINFO['grps']);
647f3f0262cSandi}
648f3f0262cSandi
649f3f0262cSandi/**
650f3f0262cSandi * Returns the maximum rights a user has for
651f3f0262cSandi * the given ID or its namespace
65215fae107Sandi *
65315fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
65415fae107Sandi *
6551698b983Smichael * @param  string       $id     page ID (needs to be resolved and cleaned)
65615fae107Sandi * @param  string       $user   Username
6573272d797SAndreas Gohr * @param  array|null   $groups Array of groups the user is in
65815fae107Sandi * @return int             permission level
659f3f0262cSandi */
660f3f0262cSandifunction auth_aclcheck($id, $user, $groups) {
661f3f0262cSandi    global $conf;
662f3f0262cSandi    global $AUTH_ACL;
66327058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
664d752aedeSAndreas Gohr    global $auth;
665f3f0262cSandi
66685d03f68SAndreas Gohr    // if no ACL is used always return upload rights
667f3f0262cSandi    if(!$conf['useacl']) return AUTH_UPLOAD;
668beca106aSAdrian Lang    if(!$auth) return AUTH_NONE;
669f3f0262cSandi
670074cf26bSandi    //make sure groups is an array
671074cf26bSandi    if(!is_array($groups)) $groups = array();
672074cf26bSandi
67385d03f68SAndreas Gohr    //if user is superuser or in superusergroup return 255 (acl_admin)
674ab5d26daSAndreas Gohr    if(auth_isadmin($user, $groups)) {
675ab5d26daSAndreas Gohr        return AUTH_ADMIN;
676ab5d26daSAndreas Gohr    }
67785d03f68SAndreas Gohr
678eb3ce0d5SKazutaka Miyasaka    if(!$auth->isCaseSensitive()) {
679eb3ce0d5SKazutaka Miyasaka        $user   = utf8_strtolower($user);
680eb3ce0d5SKazutaka Miyasaka        $groups = array_map('utf8_strtolower', $groups);
681eb3ce0d5SKazutaka Miyasaka    }
682d752aedeSAndreas Gohr    $user   = $auth->cleanUser($user);
683d752aedeSAndreas Gohr    $groups = array_map(array($auth, 'cleanGroup'), (array) $groups);
68485d03f68SAndreas Gohr    $user   = auth_nameencode($user);
68585d03f68SAndreas Gohr
6866c2bb100SAndreas Gohr    //prepend groups with @ and nameencode
6872cd2db38Sandi    $cnt = count($groups);
6882cd2db38Sandi    for($i = 0; $i < $cnt; $i++) {
6896c2bb100SAndreas Gohr        $groups[$i] = '@'.auth_nameencode($groups[$i]);
69010a76f6fSfrank    }
69110a76f6fSfrank
692f3f0262cSandi    $ns   = getNS($id);
693f3f0262cSandi    $perm = -1;
694f3f0262cSandi
69534aeb4afSAndreas Gohr    if($user || count($groups)) {
696f3f0262cSandi        //add ALL group
697f3f0262cSandi        $groups[] = '@ALL';
698f3f0262cSandi        //add User
69934aeb4afSAndreas Gohr        if($user) $groups[] = $user;
700f3f0262cSandi    } else {
70148d7b7a6SDominik Eckelmann        $groups[] = '@ALL';
702f3f0262cSandi    }
703f3f0262cSandi
704f3f0262cSandi    //check exact match first
705eb3ce0d5SKazutaka Miyasaka    $matches = preg_grep('/^'.preg_quote($id, '/').'\s+(\S+)\s+/u', $AUTH_ACL);
706f3f0262cSandi    if(count($matches)) {
707f3f0262cSandi        foreach($matches as $match) {
708f3f0262cSandi            $match = preg_replace('/#.*$/', '', $match); //ignore comments
709f3f0262cSandi            $acl   = preg_split('/\s+/', $match);
710eb3ce0d5SKazutaka Miyasaka            if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
711eb3ce0d5SKazutaka Miyasaka                $acl[1] = utf8_strtolower($acl[1]);
712eb3ce0d5SKazutaka Miyasaka            }
71348d7b7a6SDominik Eckelmann            if(!in_array($acl[1], $groups)) {
71448d7b7a6SDominik Eckelmann                continue;
71548d7b7a6SDominik Eckelmann            }
7168ef6b7caSandi            if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL!
717f3f0262cSandi            if($acl[2] > $perm) {
718f3f0262cSandi                $perm = $acl[2];
719f3f0262cSandi            }
720f3f0262cSandi        }
721f3f0262cSandi        if($perm > -1) {
722f3f0262cSandi            //we had a match - return it
723def492a2SGuillaume Turri            return (int) $perm;
724f3f0262cSandi        }
725f3f0262cSandi    }
726f3f0262cSandi
727f3f0262cSandi    //still here? do the namespace checks
728f3f0262cSandi    if($ns) {
7293e304b55SMichael Hamann        $path = $ns.':*';
730f3f0262cSandi    } else {
7313e304b55SMichael Hamann        $path = '*'; //root document
732f3f0262cSandi    }
733f3f0262cSandi
734f3f0262cSandi    do {
735eb3ce0d5SKazutaka Miyasaka        $matches = preg_grep('/^'.preg_quote($path, '/').'\s+(\S+)\s+/u', $AUTH_ACL);
736f3f0262cSandi        if(count($matches)) {
737f3f0262cSandi            foreach($matches as $match) {
738f3f0262cSandi                $match = preg_replace('/#.*$/', '', $match); //ignore comments
739f3f0262cSandi                $acl   = preg_split('/\s+/', $match);
740eb3ce0d5SKazutaka Miyasaka                if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
741eb3ce0d5SKazutaka Miyasaka                    $acl[1] = utf8_strtolower($acl[1]);
742eb3ce0d5SKazutaka Miyasaka                }
74348d7b7a6SDominik Eckelmann                if(!in_array($acl[1], $groups)) {
74448d7b7a6SDominik Eckelmann                    continue;
74548d7b7a6SDominik Eckelmann                }
7468ef6b7caSandi                if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL!
747f3f0262cSandi                if($acl[2] > $perm) {
748f3f0262cSandi                    $perm = $acl[2];
749f3f0262cSandi                }
750f3f0262cSandi            }
751f3f0262cSandi            //we had a match - return it
75248d7b7a6SDominik Eckelmann            if($perm != -1) {
753def492a2SGuillaume Turri                return (int) $perm;
754f3f0262cSandi            }
75548d7b7a6SDominik Eckelmann        }
756f3f0262cSandi        //get next higher namespace
757f3f0262cSandi        $ns = getNS($ns);
758f3f0262cSandi
7593e304b55SMichael Hamann        if($path != '*') {
7603e304b55SMichael Hamann            $path = $ns.':*';
7613e304b55SMichael Hamann            if($path == ':*') $path = '*';
762f3f0262cSandi        } else {
763f3f0262cSandi            //we did this already
764f3f0262cSandi            //looks like there is something wrong with the ACL
765f3f0262cSandi            //break here
766d5ce66f6SAndreas Gohr            msg('No ACL setup yet! Denying access to everyone.');
767d5ce66f6SAndreas Gohr            return AUTH_NONE;
768f3f0262cSandi        }
769f3f0262cSandi    } while(1); //this should never loop endless
770ab5d26daSAndreas Gohr    return AUTH_NONE;
771f3f0262cSandi}
772f3f0262cSandi
773f3f0262cSandi/**
7746c2bb100SAndreas Gohr * Encode ASCII special chars
7756c2bb100SAndreas Gohr *
7766c2bb100SAndreas Gohr * Some auth backends allow special chars in their user and groupnames
7776c2bb100SAndreas Gohr * The special chars are encoded with this function. Only ASCII chars
7786c2bb100SAndreas Gohr * are encoded UTF-8 multibyte are left as is (different from usual
7796c2bb100SAndreas Gohr * urlencoding!).
7806c2bb100SAndreas Gohr *
7816c2bb100SAndreas Gohr * Decoding can be done with rawurldecode
7826c2bb100SAndreas Gohr *
7836c2bb100SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
7846c2bb100SAndreas Gohr * @see rawurldecode()
7856c2bb100SAndreas Gohr */
786e838fc2eSAndreas Gohrfunction auth_nameencode($name, $skip_group = false) {
787a424cd8eSchris    global $cache_authname;
788a424cd8eSchris    $cache =& $cache_authname;
78931784267SAndreas Gohr    $name  = (string) $name;
790a424cd8eSchris
79180601d26SAndreas Gohr    // never encode wildcard FS#1955
79280601d26SAndreas Gohr    if($name == '%USER%') return $name;
793b78bf706Sromain    if($name == '%GROUP%') return $name;
79480601d26SAndreas Gohr
795a424cd8eSchris    if(!isset($cache[$name][$skip_group])) {
796e838fc2eSAndreas Gohr        if($skip_group && $name{0} == '@') {
797ab5d26daSAndreas Gohr            $cache[$name][$skip_group] = '@'.preg_replace(
798ab5d26daSAndreas Gohr                '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/e',
799ab5d26daSAndreas Gohr                "'%'.dechex(ord(substr('\\1',-1)))", substr($name, 1)
800ab5d26daSAndreas Gohr            );
801e838fc2eSAndreas Gohr        } else {
802ab5d26daSAndreas Gohr            $cache[$name][$skip_group] = preg_replace(
803ab5d26daSAndreas Gohr                '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/e',
804ab5d26daSAndreas Gohr                "'%'.dechex(ord(substr('\\1',-1)))", $name
805ab5d26daSAndreas Gohr            );
806e838fc2eSAndreas Gohr        }
8076c2bb100SAndreas Gohr    }
8086c2bb100SAndreas Gohr
809a424cd8eSchris    return $cache[$name][$skip_group];
810a424cd8eSchris}
811a424cd8eSchris
8126c2bb100SAndreas Gohr/**
813f3f0262cSandi * Create a pronouncable password
814f3f0262cSandi *
8158a285f7fSAndreas Gohr * The $foruser variable might be used by plugins to run additional password
8168a285f7fSAndreas Gohr * policy checks, but is not used by the default implementation
8178a285f7fSAndreas Gohr *
81815fae107Sandi * @author   Andreas Gohr <andi@splitbrain.org>
81915fae107Sandi * @link     http://www.phpbuilder.com/annotate/message.php3?id=1014451
8208a285f7fSAndreas Gohr * @triggers AUTH_PASSWORD_GENERATE
82115fae107Sandi *
8228a285f7fSAndreas Gohr * @param  string $foruser username for which the password is generated
82315fae107Sandi * @return string  pronouncable password
824f3f0262cSandi */
8258a285f7fSAndreas Gohrfunction auth_pwgen($foruser = '') {
8268a285f7fSAndreas Gohr    $data = array(
827d628dcf3SAndreas Gohr        'password' => '',
828d628dcf3SAndreas Gohr        'foruser'  => $foruser
8298a285f7fSAndreas Gohr    );
8308a285f7fSAndreas Gohr
8318a285f7fSAndreas Gohr    $evt = new Doku_Event('AUTH_PASSWORD_GENERATE', $data);
8328a285f7fSAndreas Gohr    if($evt->advise_before(true)) {
833f3f0262cSandi        $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones
834f3f0262cSandi        $v = 'aeiou'; //vowels
835f3f0262cSandi        $a = $c.$v; //both
836987c8d26SAndreas Gohr        $s = '!$%&?+*~#-_:.;,'; // specials
837f3f0262cSandi
838987c8d26SAndreas Gohr        //use thre syllables...
839987c8d26SAndreas Gohr        for($i = 0; $i < 3; $i++) {
840483b6238SMichael Hamann            $data['password'] .= $c[auth_random(0, strlen($c) - 1)];
841483b6238SMichael Hamann            $data['password'] .= $v[auth_random(0, strlen($v) - 1)];
842483b6238SMichael Hamann            $data['password'] .= $a[auth_random(0, strlen($a) - 1)];
843f3f0262cSandi        }
844987c8d26SAndreas Gohr        //... and add a nice number and special
845483b6238SMichael Hamann        $data['password'] .= auth_random(10, 99).$s[auth_random(0, strlen($s) - 1)];
8468a285f7fSAndreas Gohr    }
8478a285f7fSAndreas Gohr    $evt->advise_after();
848f3f0262cSandi
8498a285f7fSAndreas Gohr    return $data['password'];
850f3f0262cSandi}
851f3f0262cSandi
852f3f0262cSandi/**
853f3f0262cSandi * Sends a password to the given user
854f3f0262cSandi *
85515fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
856ab5d26daSAndreas Gohr * @param string $user Login name of the user
857ab5d26daSAndreas Gohr * @param string $password The new password in clear text
85815fae107Sandi * @return bool  true on success
859f3f0262cSandi */
860f3f0262cSandifunction auth_sendPassword($user, $password) {
861f3f0262cSandi    global $lang;
86227058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
863cd52f92dSchris    global $auth;
864beca106aSAdrian Lang    if(!$auth) return false;
865cd52f92dSchris
866d752aedeSAndreas Gohr    $user     = $auth->cleanUser($user);
867cd52f92dSchris    $userinfo = $auth->getUserData($user);
868f3f0262cSandi
86987ddda95Sandi    if(!$userinfo['mail']) return false;
870f3f0262cSandi
871f3f0262cSandi    $text = rawLocale('password');
872d7169d19SAndreas Gohr    $trep = array(
873d7169d19SAndreas Gohr        'FULLNAME' => $userinfo['name'],
874d7169d19SAndreas Gohr        'LOGIN'    => $user,
875d7169d19SAndreas Gohr        'PASSWORD' => $password
876d7169d19SAndreas Gohr    );
877f3f0262cSandi
878d7169d19SAndreas Gohr    $mail = new Mailer();
879d7169d19SAndreas Gohr    $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>');
880d7169d19SAndreas Gohr    $mail->subject($lang['regpwmail']);
881d7169d19SAndreas Gohr    $mail->setBody($text, $trep);
882d7169d19SAndreas Gohr    return $mail->send();
883f3f0262cSandi}
884f3f0262cSandi
885f3f0262cSandi/**
88615fae107Sandi * Register a new user
887f3f0262cSandi *
88815fae107Sandi * This registers a new user - Data is read directly from $_POST
88915fae107Sandi *
89015fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
89115fae107Sandi * @return bool  true on success, false on any error
892f3f0262cSandi */
893f3f0262cSandifunction register() {
894f3f0262cSandi    global $lang;
895eb5d07e4Sjan    global $conf;
89627058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
897cd52f92dSchris    global $auth;
89864273335SAndreas Gohr    global $INPUT;
899f3f0262cSandi
90064273335SAndreas Gohr    if(!$INPUT->post->bool('save')) return false;
9013a48618aSAnika Henke    if(!actionOK('register')) return false;
902640145a5Sandi
90364273335SAndreas Gohr    // gather input
90464273335SAndreas Gohr    $login    = trim($auth->cleanUser($INPUT->post->str('login')));
90564273335SAndreas Gohr    $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname')));
90664273335SAndreas Gohr    $email    = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email')));
90764273335SAndreas Gohr    $pass     = $INPUT->post->str('pass');
90864273335SAndreas Gohr    $passchk  = $INPUT->post->str('passchk');
909d752aedeSAndreas Gohr
91064273335SAndreas Gohr    if(empty($login) || empty($fullname) || empty($email)) {
911f3f0262cSandi        msg($lang['regmissing'], -1);
912f3f0262cSandi        return false;
913f3f0262cSandi    }
914f3f0262cSandi
915cab2716aSmatthias.grimm    if($conf['autopasswd']) {
9168a285f7fSAndreas Gohr        $pass = auth_pwgen($login); // automatically generate password
91764273335SAndreas Gohr    } elseif(empty($pass) || empty($passchk)) {
918bf12ec81Sjan        msg($lang['regmissing'], -1); // complain about missing passwords
919cab2716aSmatthias.grimm        return false;
92064273335SAndreas Gohr    } elseif($pass != $passchk) {
921bf12ec81Sjan        msg($lang['regbadpass'], -1); // complain about misspelled passwords
922cab2716aSmatthias.grimm        return false;
923cab2716aSmatthias.grimm    }
924cab2716aSmatthias.grimm
925f3f0262cSandi    //check mail
92664273335SAndreas Gohr    if(!mail_isvalid($email)) {
927f3f0262cSandi        msg($lang['regbadmail'], -1);
928f3f0262cSandi        return false;
929f3f0262cSandi    }
930f3f0262cSandi
931f3f0262cSandi    //okay try to create the user
93264273335SAndreas Gohr    if(!$auth->triggerUserMod('create', array($login, $pass, $fullname, $email))) {
933f3f0262cSandi        msg($lang['reguexists'], -1);
934f3f0262cSandi        return false;
935f3f0262cSandi    }
936f3f0262cSandi
937790b7720SAndreas Gohr    // send notification about the new user
938790b7720SAndreas Gohr    $subscription = new Subscription();
939790b7720SAndreas Gohr    $subscription->send_register($login, $fullname, $email);
94002a498e7Schris
941790b7720SAndreas Gohr    // are we done?
942cab2716aSmatthias.grimm    if(!$conf['autopasswd']) {
943cab2716aSmatthias.grimm        msg($lang['regsuccess2'], 1);
944cab2716aSmatthias.grimm        return true;
945cab2716aSmatthias.grimm    }
946cab2716aSmatthias.grimm
947790b7720SAndreas Gohr    // autogenerated password? then send password to user
94864273335SAndreas Gohr    if(auth_sendPassword($login, $pass)) {
949f3f0262cSandi        msg($lang['regsuccess'], 1);
950f3f0262cSandi        return true;
951f3f0262cSandi    } else {
952f3f0262cSandi        msg($lang['regmailfail'], -1);
953f3f0262cSandi        return false;
954f3f0262cSandi    }
955f3f0262cSandi}
956f3f0262cSandi
95710a76f6fSfrank/**
9588b06d178Schris * Update user profile
9598b06d178Schris *
9608b06d178Schris * @author    Christopher Smith <chris@jalakai.co.uk>
9618b06d178Schris */
9628b06d178Schrisfunction updateprofile() {
9638b06d178Schris    global $conf;
9648b06d178Schris    global $lang;
96527058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
966cd52f92dSchris    global $auth;
967bcc94b2cSAndreas Gohr    /* @var Input $INPUT */
968bcc94b2cSAndreas Gohr    global $INPUT;
9698b06d178Schris
970bcc94b2cSAndreas Gohr    if(!$INPUT->post->bool('save')) return false;
9711b2a85e8SAndreas Gohr    if(!checkSecurityToken()) return false;
9728b06d178Schris
9733a48618aSAnika Henke    if(!actionOK('profile')) {
9748b06d178Schris        msg($lang['profna'], -1);
9758b06d178Schris        return false;
9768b06d178Schris    }
9778b06d178Schris
978bcc94b2cSAndreas Gohr    $changes         = array();
979bcc94b2cSAndreas Gohr    $changes['pass'] = $INPUT->post->str('newpass');
980bcc94b2cSAndreas Gohr    $changes['name'] = $INPUT->post->str('fullname');
981bcc94b2cSAndreas Gohr    $changes['mail'] = $INPUT->post->str('email');
982bcc94b2cSAndreas Gohr
983bcc94b2cSAndreas Gohr    // check misspelled passwords
984bcc94b2cSAndreas Gohr    if($changes['pass'] != $INPUT->post->str('passchk')) {
985bcc94b2cSAndreas Gohr        msg($lang['regbadpass'], -1);
9868b06d178Schris        return false;
9878b06d178Schris    }
9888b06d178Schris
9898b06d178Schris    // clean fullname and email
990bcc94b2cSAndreas Gohr    $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name']));
991bcc94b2cSAndreas Gohr    $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail']));
9928b06d178Schris
993bcc94b2cSAndreas Gohr    // no empty name and email (except the backend doesn't support them)
994bcc94b2cSAndreas Gohr    if((empty($changes['name']) && $auth->canDo('modName')) ||
995bcc94b2cSAndreas Gohr        (empty($changes['mail']) && $auth->canDo('modMail'))
996ab5d26daSAndreas Gohr    ) {
9978b06d178Schris        msg($lang['profnoempty'], -1);
9988b06d178Schris        return false;
9998b06d178Schris    }
1000bcc94b2cSAndreas Gohr    if(!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) {
10018b06d178Schris        msg($lang['regbadmail'], -1);
10028b06d178Schris        return false;
10038b06d178Schris    }
10048b06d178Schris
1005bcc94b2cSAndreas Gohr    $changes = array_filter($changes);
10064c21b7eeSAndreas Gohr
1007bcc94b2cSAndreas Gohr    // check for unavailable capabilities
1008bcc94b2cSAndreas Gohr    if(!$auth->canDo('modName')) unset($changes['name']);
1009bcc94b2cSAndreas Gohr    if(!$auth->canDo('modMail')) unset($changes['mail']);
1010bcc94b2cSAndreas Gohr    if(!$auth->canDo('modPass')) unset($changes['pass']);
1011bcc94b2cSAndreas Gohr
1012bcc94b2cSAndreas Gohr    // anything to do?
10138b06d178Schris    if(!count($changes)) {
10148b06d178Schris        msg($lang['profnochange'], -1);
10158b06d178Schris        return false;
10168b06d178Schris    }
10178b06d178Schris
10188b06d178Schris    if($conf['profileconfirm']) {
1019bcc94b2cSAndreas Gohr        if(!$auth->checkPass($_SERVER['REMOTE_USER'], $INPUT->post->str('oldpass'))) {
10208b06d178Schris            msg($lang['badlogin'], -1);
10218b06d178Schris            return false;
10228b06d178Schris        }
10238b06d178Schris    }
10248b06d178Schris
1025a0b5b007SChris Smith    if($result = $auth->triggerUserMod('modify', array($_SERVER['REMOTE_USER'], $changes))) {
1026a0b5b007SChris Smith        // update cookie and session with the changed data
102732ed2b36SAndreas Gohr        if($changes['pass']) {
1028ab5d26daSAndreas Gohr            list( /*user*/, $sticky, /*pass*/) = auth_getCookie();
1029*04369c3eSMichael Hamann            $pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true));
1030a0b5b007SChris Smith            auth_setCookie($_SERVER['REMOTE_USER'], $pass, (bool) $sticky);
103132ed2b36SAndreas Gohr        }
103225b2a98cSMichael Klier        return true;
1033a0b5b007SChris Smith    }
1034ab5d26daSAndreas Gohr
1035ab5d26daSAndreas Gohr    return false;
10368b06d178Schris}
10378b06d178Schris
10388b06d178Schris/**
10398b06d178Schris * Send a  new password
10408b06d178Schris *
10411d5856cfSAndreas Gohr * This function handles both phases of the password reset:
10421d5856cfSAndreas Gohr *
10431d5856cfSAndreas Gohr *   - handling the first request of password reset
10441d5856cfSAndreas Gohr *   - validating the password reset auth token
10451d5856cfSAndreas Gohr *
10468b06d178Schris * @author Benoit Chesneau <benoit@bchesneau.info>
10478b06d178Schris * @author Chris Smith <chris@jalakai.co.uk>
10481d5856cfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
10498b06d178Schris *
10508b06d178Schris * @return bool true on success, false on any error
10518b06d178Schris */
10528b06d178Schrisfunction act_resendpwd() {
10538b06d178Schris    global $lang;
10548b06d178Schris    global $conf;
105527058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
1056cd52f92dSchris    global $auth;
1057bcc94b2cSAndreas Gohr    /* @var Input $INPUT */
1058bcc94b2cSAndreas Gohr    global $INPUT;
10598b06d178Schris
10603a48618aSAnika Henke    if(!actionOK('resendpwd')) {
10618b06d178Schris        msg($lang['resendna'], -1);
10628b06d178Schris        return false;
10638b06d178Schris    }
10648b06d178Schris
1065bcc94b2cSAndreas Gohr    $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth'));
10668b06d178Schris
10671d5856cfSAndreas Gohr    if($token) {
1068cc204bbdSAndreas Gohr        // we're in token phase - get user info from token
10691d5856cfSAndreas Gohr
10701d5856cfSAndreas Gohr        $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth';
10711d5856cfSAndreas Gohr        if(!@file_exists($tfile)) {
10721d5856cfSAndreas Gohr            msg($lang['resendpwdbadauth'], -1);
1073bcc94b2cSAndreas Gohr            $INPUT->remove('pwauth');
10741d5856cfSAndreas Gohr            return false;
10751d5856cfSAndreas Gohr        }
10768a9735e3SAndreas Gohr        // token is only valid for 3 days
10778a9735e3SAndreas Gohr        if((time() - filemtime($tfile)) > (3 * 60 * 60 * 24)) {
10788a9735e3SAndreas Gohr            msg($lang['resendpwdbadauth'], -1);
1079bcc94b2cSAndreas Gohr            $INPUT->remove('pwauth');
10801d5856cfSAndreas Gohr            @unlink($tfile);
10818a9735e3SAndreas Gohr            return false;
10828a9735e3SAndreas Gohr        }
10838a9735e3SAndreas Gohr
10848b06d178Schris        $user     = io_readfile($tfile);
1085cd52f92dSchris        $userinfo = $auth->getUserData($user);
10868b06d178Schris        if(!$userinfo['mail']) {
10878b06d178Schris            msg($lang['resendpwdnouser'], -1);
10888b06d178Schris            return false;
10898b06d178Schris        }
10908b06d178Schris
1091cc204bbdSAndreas Gohr        if(!$conf['autopasswd']) { // we let the user choose a password
1092bcc94b2cSAndreas Gohr            $pass = $INPUT->str('pass');
1093bcc94b2cSAndreas Gohr
1094cc204bbdSAndreas Gohr            // password given correctly?
1095bcc94b2cSAndreas Gohr            if(!$pass) return false;
1096bcc94b2cSAndreas Gohr            if($pass != $INPUT->str('passchk')) {
1097451e1b4dSAndreas Gohr                msg($lang['regbadpass'], -1);
1098cc204bbdSAndreas Gohr                return false;
1099cc204bbdSAndreas Gohr            }
1100cc204bbdSAndreas Gohr
1101bcc94b2cSAndreas Gohr            // change it
1102cc204bbdSAndreas Gohr            if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) {
1103cc204bbdSAndreas Gohr                msg('error modifying user data', -1);
1104cc204bbdSAndreas Gohr                return false;
1105cc204bbdSAndreas Gohr            }
1106cc204bbdSAndreas Gohr
1107cc204bbdSAndreas Gohr        } else { // autogenerate the password and send by mail
1108cc204bbdSAndreas Gohr
11098a285f7fSAndreas Gohr            $pass = auth_pwgen($user);
11107d3c8d42SGabriel Birke            if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) {
11118b06d178Schris                msg('error modifying user data', -1);
11128b06d178Schris                return false;
11138b06d178Schris            }
11148b06d178Schris
11158b06d178Schris            if(auth_sendPassword($user, $pass)) {
11168b06d178Schris                msg($lang['resendpwdsuccess'], 1);
11178b06d178Schris            } else {
11188b06d178Schris                msg($lang['regmailfail'], -1);
11198b06d178Schris            }
1120cc204bbdSAndreas Gohr        }
1121cc204bbdSAndreas Gohr
1122cc204bbdSAndreas Gohr        @unlink($tfile);
11238b06d178Schris        return true;
11241d5856cfSAndreas Gohr
11251d5856cfSAndreas Gohr    } else {
11261d5856cfSAndreas Gohr        // we're in request phase
11271d5856cfSAndreas Gohr
1128bcc94b2cSAndreas Gohr        if(!$INPUT->post->bool('save')) return false;
11291d5856cfSAndreas Gohr
1130bcc94b2cSAndreas Gohr        if(!$INPUT->post->str('login')) {
11311d5856cfSAndreas Gohr            msg($lang['resendpwdmissing'], -1);
11321d5856cfSAndreas Gohr            return false;
11331d5856cfSAndreas Gohr        } else {
1134bcc94b2cSAndreas Gohr            $user = trim($auth->cleanUser($INPUT->post->str('login')));
11351d5856cfSAndreas Gohr        }
11361d5856cfSAndreas Gohr
11371d5856cfSAndreas Gohr        $userinfo = $auth->getUserData($user);
11381d5856cfSAndreas Gohr        if(!$userinfo['mail']) {
11391d5856cfSAndreas Gohr            msg($lang['resendpwdnouser'], -1);
11401d5856cfSAndreas Gohr            return false;
11411d5856cfSAndreas Gohr        }
11421d5856cfSAndreas Gohr
11431d5856cfSAndreas Gohr        // generate auth token
1144483b6238SMichael Hamann        $token = md5(auth_randombytes(16)); // random secret
11451d5856cfSAndreas Gohr        $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth';
11461d5856cfSAndreas Gohr        $url   = wl('', array('do'=> 'resendpwd', 'pwauth'=> $token), true, '&');
11471d5856cfSAndreas Gohr
11481d5856cfSAndreas Gohr        io_saveFile($tfile, $user);
11491d5856cfSAndreas Gohr
11501d5856cfSAndreas Gohr        $text = rawLocale('pwconfirm');
1151d7169d19SAndreas Gohr        $trep = array(
1152d7169d19SAndreas Gohr            'FULLNAME' => $userinfo['name'],
1153d7169d19SAndreas Gohr            'LOGIN'    => $user,
1154d7169d19SAndreas Gohr            'CONFIRM'  => $url
1155d7169d19SAndreas Gohr        );
11561d5856cfSAndreas Gohr
1157d7169d19SAndreas Gohr        $mail = new Mailer();
1158d7169d19SAndreas Gohr        $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>');
1159d7169d19SAndreas Gohr        $mail->subject($lang['regpwmail']);
1160d7169d19SAndreas Gohr        $mail->setBody($text, $trep);
1161d7169d19SAndreas Gohr        if($mail->send()) {
11621d5856cfSAndreas Gohr            msg($lang['resendpwdconfirm'], 1);
11631d5856cfSAndreas Gohr        } else {
11641d5856cfSAndreas Gohr            msg($lang['regmailfail'], -1);
11651d5856cfSAndreas Gohr        }
11661d5856cfSAndreas Gohr        return true;
11671d5856cfSAndreas Gohr    }
1168ab5d26daSAndreas Gohr    // never reached
11698b06d178Schris}
11708b06d178Schris
11718b06d178Schris/**
1172b0855b11Sandi * Encrypts a password using the given method and salt
1173b0855b11Sandi *
1174b0855b11Sandi * If the selected method needs a salt and none was given, a random one
1175b0855b11Sandi * is chosen.
1176b0855b11Sandi *
1177b0855b11Sandi * @author  Andreas Gohr <andi@splitbrain.org>
1178ab5d26daSAndreas Gohr * @param string $clear The clear text password
1179ab5d26daSAndreas Gohr * @param string $method The hashing method
1180ab5d26daSAndreas Gohr * @param string $salt A salt, null for random
1181b0855b11Sandi * @return  string  The crypted password
1182b0855b11Sandi */
1183577c7cdaSAndreas Gohrfunction auth_cryptPassword($clear, $method = '', $salt = null) {
1184b0855b11Sandi    global $conf;
1185b0855b11Sandi    if(empty($method)) $method = $conf['passcrypt'];
118610a76f6fSfrank
11873a0a2d05SAndreas Gohr    $pass = new PassHash();
11883a0a2d05SAndreas Gohr    $call = 'hash_'.$method;
1189b0855b11Sandi
11903a0a2d05SAndreas Gohr    if(!method_exists($pass, $call)) {
1191b0855b11Sandi        msg("Unsupported crypt method $method", -1);
11923a0a2d05SAndreas Gohr        return false;
1193b0855b11Sandi    }
11943a0a2d05SAndreas Gohr
11953a0a2d05SAndreas Gohr    return $pass->$call($clear, $salt);
1196b0855b11Sandi}
1197b0855b11Sandi
1198b0855b11Sandi/**
1199b0855b11Sandi * Verifies a cleartext password against a crypted hash
1200b0855b11Sandi *
1201b0855b11Sandi * @author Andreas Gohr <andi@splitbrain.org>
1202ab5d26daSAndreas Gohr * @param  string $clear The clear text password
1203ab5d26daSAndreas Gohr * @param  string $crypt The hash to compare with
1204ab5d26daSAndreas Gohr * @return bool true if both match
1205b0855b11Sandi */
1206b0855b11Sandifunction auth_verifyPassword($clear, $crypt) {
12073a0a2d05SAndreas Gohr    $pass = new PassHash();
12083a0a2d05SAndreas Gohr    return $pass->verify_hash($clear, $crypt);
1209b0855b11Sandi}
1210340756e4Sandi
1211a0b5b007SChris Smith/**
1212a0b5b007SChris Smith * Set the authentication cookie and add user identification data to the session
1213a0b5b007SChris Smith *
1214a0b5b007SChris Smith * @param string  $user       username
1215a0b5b007SChris Smith * @param string  $pass       encrypted password
1216a0b5b007SChris Smith * @param bool    $sticky     whether or not the cookie will last beyond the session
1217ab5d26daSAndreas Gohr * @return bool
1218a0b5b007SChris Smith */
1219a0b5b007SChris Smithfunction auth_setCookie($user, $pass, $sticky) {
1220a0b5b007SChris Smith    global $conf;
122127058a05SMichael Hamann    /* @var DokuWiki_Auth_Plugin $auth */
1222a0b5b007SChris Smith    global $auth;
122379d00841SOliver Geisen    global $USERINFO;
1224a0b5b007SChris Smith
1225beca106aSAdrian Lang    if(!$auth) return false;
1226a0b5b007SChris Smith    $USERINFO = $auth->getUserData($user);
1227a0b5b007SChris Smith
1228a0b5b007SChris Smith    // set cookie
1229645c0a36SAndreas Gohr    $cookie    = base64_encode($user).'|'.((int) $sticky).'|'.base64_encode($pass);
123073ab87deSGabriel Birke    $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
1231c66972f2SAdrian Lang    $time      = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year
1232a0b5b007SChris Smith    if(version_compare(PHP_VERSION, '5.2.0', '>')) {
123373ab87deSGabriel Birke        setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
1234a0b5b007SChris Smith    } else {
123573ab87deSGabriel Birke        setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()));
1236a0b5b007SChris Smith    }
1237a0b5b007SChris Smith    // set session
1238a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['user'] = $user;
1239234ce57eSAndreas Gohr    $_SESSION[DOKU_COOKIE]['auth']['pass'] = sha1($pass);
1240a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['buid'] = auth_browseruid();
1241a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO;
1242a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['time'] = time();
1243ab5d26daSAndreas Gohr
1244ab5d26daSAndreas Gohr    return true;
1245a0b5b007SChris Smith}
1246a0b5b007SChris Smith
1247645c0a36SAndreas Gohr/**
1248645c0a36SAndreas Gohr * Returns the user, (encrypted) password and sticky bit from cookie
1249645c0a36SAndreas Gohr *
1250645c0a36SAndreas Gohr * @returns array
1251645c0a36SAndreas Gohr */
1252645c0a36SAndreas Gohrfunction auth_getCookie() {
1253c66972f2SAdrian Lang    if(!isset($_COOKIE[DOKU_COOKIE])) {
1254c66972f2SAdrian Lang        return array(null, null, null);
1255c66972f2SAdrian Lang    }
1256645c0a36SAndreas Gohr    list($user, $sticky, $pass) = explode('|', $_COOKIE[DOKU_COOKIE], 3);
1257645c0a36SAndreas Gohr    $sticky = (bool) $sticky;
1258645c0a36SAndreas Gohr    $pass   = base64_decode($pass);
1259645c0a36SAndreas Gohr    $user   = base64_decode($user);
1260645c0a36SAndreas Gohr    return array($user, $sticky, $pass);
1261645c0a36SAndreas Gohr}
1262645c0a36SAndreas Gohr
1263e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 :
1264