xref: /dokuwiki/inc/auth.php (revision 3a7140a158be7afab7773c232f6a21a68ec807a8)
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
12ebf97c8fSAndreas Gohr// some ACL level defines
13c3cc6e05SAndreas Gohruse dokuwiki\PassHash;
14e1d9dcc8SAndreas Gohruse dokuwiki\Extension\AuthPlugin;
15*3a7140a1SAndreas Gohruse dokuwiki\Extension\PluginController;
16e1d9dcc8SAndreas Gohruse dokuwiki\Extension\Event;
17c3cc6e05SAndreas Gohr
18ebf97c8fSAndreas Gohrdefine('AUTH_NONE', 0);
19ebf97c8fSAndreas Gohrdefine('AUTH_READ', 1);
20ebf97c8fSAndreas Gohrdefine('AUTH_EDIT', 2);
21ebf97c8fSAndreas Gohrdefine('AUTH_CREATE', 4);
22ebf97c8fSAndreas Gohrdefine('AUTH_UPLOAD', 8);
23ebf97c8fSAndreas Gohrdefine('AUTH_DELETE', 16);
24ebf97c8fSAndreas Gohrdefine('AUTH_ADMIN', 255);
25ebf97c8fSAndreas Gohr
2616905344SAndreas Gohr/**
2716905344SAndreas Gohr * Initialize the auth system.
2816905344SAndreas Gohr *
2916905344SAndreas Gohr * This function is automatically called at the end of init.php
3016905344SAndreas Gohr *
3116905344SAndreas Gohr * This used to be the main() of the auth.php
3216905344SAndreas Gohr *
3316905344SAndreas Gohr * @todo backend loading maybe should be handled by the class autoloader
3416905344SAndreas Gohr * @todo maybe split into multiple functions at the XXX marked positions
35ab5d26daSAndreas Gohr * @triggers AUTH_LOGIN_CHECK
36ab5d26daSAndreas Gohr * @return bool
3716905344SAndreas Gohr */
3816905344SAndreas Gohrfunction auth_setup() {
39742c66f8Schris    global $conf;
40e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
4103c4aec3Schris    global $auth;
42bcc94b2cSAndreas Gohr    /* @var Input $INPUT */
43bcc94b2cSAndreas Gohr    global $INPUT;
449a9714acSDominik Eckelmann    global $AUTH_ACL;
459a9714acSDominik Eckelmann    global $lang;
46*3a7140a1SAndreas Gohr    /* @var PluginController $plugin_controller */
479c29eea5SJan Schumann    global $plugin_controller;
489a9714acSDominik Eckelmann    $AUTH_ACL = array();
4903c4aec3Schris
5016905344SAndreas Gohr    if(!$conf['useacl']) return false;
5116905344SAndreas Gohr
529c29eea5SJan Schumann    // try to load auth backend from plugins
539c29eea5SJan Schumann    foreach ($plugin_controller->getList('auth') as $plugin) {
549c29eea5SJan Schumann        if ($conf['authtype'] === $plugin) {
55f4476bd9SJan Schumann            $auth = $plugin_controller->load('auth', $plugin);
569c29eea5SJan Schumann            break;
579c29eea5SJan Schumann        }
589c29eea5SJan Schumann    }
598b06d178Schris
606416b708SMichael Hamann    if(!isset($auth) || !$auth){
613094e817SAndreas Gohr        msg($lang['authtempfail'], -1);
623094e817SAndreas Gohr        return false;
633094e817SAndreas Gohr    }
648b06d178Schris
656416b708SMichael Hamann    if ($auth->success == false) {
660f4f4adfSAndreas Gohr        // degrade to unauthenticated user
67d2dde4ebSMatthias Grimm        unset($auth);
680f4f4adfSAndreas Gohr        auth_logoff();
69cd52f92dSchris        msg($lang['authtempfail'], -1);
706416b708SMichael Hamann        return false;
71d2dde4ebSMatthias Grimm    }
7216905344SAndreas Gohr
7316905344SAndreas Gohr    // do the login either by cookie or provided credentials XXX
74bcc94b2cSAndreas Gohr    $INPUT->set('http_credentials', false);
75bcc94b2cSAndreas Gohr    if(!$conf['rememberme']) $INPUT->set('r', false);
76bbbd6568SAndreas Gohr
77b2665af7SMichael Hamann    // handle renamed HTTP_AUTHORIZATION variable (can happen when a fix like
78b2665af7SMichael Hamann    // the one presented at
79b2665af7SMichael Hamann    // http://www.besthostratings.com/articles/http-auth-php-cgi.html is used
80b2665af7SMichael Hamann    // for enabling HTTP authentication with CGI/SuExec)
81b2665af7SMichael Hamann    if(isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']))
82b2665af7SMichael Hamann        $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION'];
83528ddc7cSAndreas Gohr    // streamline HTTP auth credentials (IIS/rewrite -> mod_php)
8406156f3cSAndreas Gohr    if(isset($_SERVER['HTTP_AUTHORIZATION'])) {
85528ddc7cSAndreas Gohr        list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) =
86528ddc7cSAndreas Gohr            explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));
87528ddc7cSAndreas Gohr    }
88528ddc7cSAndreas Gohr
891e8c9c90SAndreas Gohr    // if no credentials were given try to use HTTP auth (for SSO)
90bcc94b2cSAndreas Gohr    if(!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])) {
91bcc94b2cSAndreas Gohr        $INPUT->set('u', $_SERVER['PHP_AUTH_USER']);
92bcc94b2cSAndreas Gohr        $INPUT->set('p', $_SERVER['PHP_AUTH_PW']);
93bcc94b2cSAndreas Gohr        $INPUT->set('http_credentials', true);
941e8c9c90SAndreas Gohr    }
951e8c9c90SAndreas Gohr
96395c2f0fSAndreas Gohr    // apply cleaning (auth specific user names, remove control chars)
9793a7873eSAndreas Gohr    if (true === $auth->success) {
98395c2f0fSAndreas Gohr        $INPUT->set('u', $auth->cleanUser(stripctl($INPUT->str('u'))));
99395c2f0fSAndreas Gohr        $INPUT->set('p', stripctl($INPUT->str('p')));
100f4476bd9SJan Schumann    }
101191bb90aSAndreas Gohr
1028eca974cSAndreas Gohr    if(!is_null($auth) && $auth->canDo('external')) {
103f13fa892SAndreas Gohr        // external trust mechanism in place
104bcc94b2cSAndreas Gohr        $auth->trustExternal($INPUT->str('u'), $INPUT->str('p'), $INPUT->bool('r'));
105f5cb575dSAndreas Gohr    } else {
1066080c584SRobin Gareus        $evdata = array(
107bcc94b2cSAndreas Gohr            'user'     => $INPUT->str('u'),
108bcc94b2cSAndreas Gohr            'password' => $INPUT->str('p'),
109bcc94b2cSAndreas Gohr            'sticky'   => $INPUT->bool('r'),
110bcc94b2cSAndreas Gohr            'silent'   => $INPUT->bool('http_credentials')
1116080c584SRobin Gareus        );
112cbb44eabSAndreas Gohr        Event::createAndTrigger('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper');
113f5cb575dSAndreas Gohr    }
114f5cb575dSAndreas Gohr
11516905344SAndreas Gohr    //load ACL into a global array XXX
11675c93b77SAndreas Gohr    $AUTH_ACL = auth_loadACL();
117ab5d26daSAndreas Gohr
118ab5d26daSAndreas Gohr    return true;
11975c93b77SAndreas Gohr}
12075c93b77SAndreas Gohr
12175c93b77SAndreas Gohr/**
12275c93b77SAndreas Gohr * Loads the ACL setup and handle user wildcards
12375c93b77SAndreas Gohr *
12475c93b77SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
12542ea7f44SGerrit Uitslag *
126ab5d26daSAndreas Gohr * @return array
12775c93b77SAndreas Gohr */
12875c93b77SAndreas Gohrfunction auth_loadACL() {
12975c93b77SAndreas Gohr    global $config_cascade;
130b78bf706Sromain    global $USERINFO;
131585bf44eSChristopher Smith    /* @var Input $INPUT */
132585bf44eSChristopher Smith    global $INPUT;
13375c93b77SAndreas Gohr
13475c93b77SAndreas Gohr    if(!is_readable($config_cascade['acl']['default'])) return array();
13575c93b77SAndreas Gohr
13675c93b77SAndreas Gohr    $acl = file($config_cascade['acl']['default']);
13775c93b77SAndreas Gohr
13832e82180SAndreas Gohr    $out = array();
1399ce556d2SAndreas Gohr    foreach($acl as $line) {
1409ce556d2SAndreas Gohr        $line = trim($line);
141443e135dSChristopher Smith        if(empty($line) || ($line{0} == '#')) continue; // skip blank lines & comments
14221c3090aSChristopher Smith        list($id,$rest) = preg_split('/[ \t]+/',$line,2);
14332e82180SAndreas Gohr
144443e135dSChristopher Smith        // substitute user wildcard first (its 1:1)
145ad3d68d7SChristopher Smith        if(strstr($line, '%USER%')){
146ad3d68d7SChristopher Smith            // if user is not logged in, this ACL line is meaningless - skip it
147585bf44eSChristopher Smith            if (!$INPUT->server->has('REMOTE_USER')) continue;
148ad3d68d7SChristopher Smith
149585bf44eSChristopher Smith            $id   = str_replace('%USER%',cleanID($INPUT->server->str('REMOTE_USER')),$id);
150585bf44eSChristopher Smith            $rest = str_replace('%USER%',auth_nameencode($INPUT->server->str('REMOTE_USER')),$rest);
151ad3d68d7SChristopher Smith        }
152ad3d68d7SChristopher Smith
153ad3d68d7SChristopher Smith        // substitute group wildcard (its 1:m)
1549ce556d2SAndreas Gohr        if(strstr($line, '%GROUP%')){
155ad3d68d7SChristopher Smith            // if user is not logged in, grps is empty, no output will be added (i.e. skipped)
1569ce556d2SAndreas Gohr            foreach((array) $USERINFO['grps'] as $grp){
157b78bf706Sromain                $nid   = str_replace('%GROUP%',cleanID($grp),$id);
15832e82180SAndreas Gohr                $nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest);
15932e82180SAndreas Gohr                $out[] = "$nid\t$nrest";
160b78bf706Sromain            }
16132e82180SAndreas Gohr        } else {
16232e82180SAndreas Gohr            $out[] = "$id\t$rest";
163a8fe108bSGuy Brand        }
16411799630Sandi    }
1659ce556d2SAndreas Gohr
16632e82180SAndreas Gohr    return $out;
167f3f0262cSandi}
168f3f0262cSandi
169ab5d26daSAndreas Gohr/**
170ab5d26daSAndreas Gohr * Event hook callback for AUTH_LOGIN_CHECK
171ab5d26daSAndreas Gohr *
17242ea7f44SGerrit Uitslag * @param array $evdata
173ab5d26daSAndreas Gohr * @return bool
174ab5d26daSAndreas Gohr */
175b5ee21aaSAdrian Langfunction auth_login_wrapper($evdata) {
176ab5d26daSAndreas Gohr    return auth_login(
177ab5d26daSAndreas Gohr        $evdata['user'],
178b5ee21aaSAdrian Lang        $evdata['password'],
179b5ee21aaSAdrian Lang        $evdata['sticky'],
180ab5d26daSAndreas Gohr        $evdata['silent']
181ab5d26daSAndreas Gohr    );
182b5ee21aaSAdrian Lang}
183b5ee21aaSAdrian Lang
184f3f0262cSandi/**
185f3f0262cSandi * This tries to login the user based on the sent auth credentials
186f3f0262cSandi *
187f3f0262cSandi * The authentication works like this: if a username was given
18815fae107Sandi * a new login is assumed and user/password are checked. If they
18915fae107Sandi * are correct the password is encrypted with blowfish and stored
19015fae107Sandi * together with the username in a cookie - the same info is stored
19115fae107Sandi * in the session, too. Additonally a browserID is stored in the
19215fae107Sandi * session.
19315fae107Sandi *
19415fae107Sandi * If no username was given the cookie is checked: if the username,
19515fae107Sandi * crypted password and browserID match between session and cookie
19615fae107Sandi * no further testing is done and the user is accepted
19715fae107Sandi *
19815fae107Sandi * If a cookie was found but no session info was availabe the
199136ce040Sandi * blowfish encrypted password from the cookie is decrypted and
20015fae107Sandi * together with username rechecked by calling this function again.
201f3f0262cSandi *
202f3f0262cSandi * On a successful login $_SERVER[REMOTE_USER] and $USERINFO
203f3f0262cSandi * are set.
20415fae107Sandi *
20515fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
20615fae107Sandi *
20715fae107Sandi * @param   string  $user    Username
20815fae107Sandi * @param   string  $pass    Cleartext Password
20915fae107Sandi * @param   bool    $sticky  Cookie should not expire
210f112c2faSAndreas Gohr * @param   bool    $silent  Don't show error on bad auth
21115fae107Sandi * @return  bool             true on successful auth
212f3f0262cSandi */
213f112c2faSAndreas Gohrfunction auth_login($user, $pass, $sticky = false, $silent = false) {
214f3f0262cSandi    global $USERINFO;
215f3f0262cSandi    global $conf;
216f3f0262cSandi    global $lang;
217e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
218cd52f92dSchris    global $auth;
219585bf44eSChristopher Smith    /* @var Input $INPUT */
220585bf44eSChristopher Smith    global $INPUT;
221ab5d26daSAndreas Gohr
222132bdbfeSandi    $sticky ? $sticky = true : $sticky = false; //sanity check
223f3f0262cSandi
224beca106aSAdrian Lang    if(!$auth) return false;
225beca106aSAdrian Lang
226bbbd6568SAndreas Gohr    if(!empty($user)) {
227132bdbfeSandi        //usual login
2285e9e1054SAndreas Gohr        if(!empty($pass) && $auth->checkPass($user, $pass)) {
229132bdbfeSandi            // make logininfo globally available
230585bf44eSChristopher Smith            $INPUT->server->set('REMOTE_USER', $user);
23130d544a4SMichael Hamann            $secret                 = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
23204369c3eSMichael Hamann            auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
233132bdbfeSandi            return true;
234f3f0262cSandi        } else {
235f3f0262cSandi            //invalid credentials - log off
236f8b1e4e7SAndreas Gohr            if(!$silent) {
237f8b1e4e7SAndreas Gohr                http_status(403, 'Login failed');
238f8b1e4e7SAndreas Gohr                msg($lang['badlogin'], -1);
239f8b1e4e7SAndreas Gohr            }
240f3f0262cSandi            auth_logoff();
241132bdbfeSandi            return false;
242f3f0262cSandi        }
243f3f0262cSandi    } else {
244132bdbfeSandi        // read cookie information
245645c0a36SAndreas Gohr        list($user, $sticky, $pass) = auth_getCookie();
246132bdbfeSandi        if($user && $pass) {
247132bdbfeSandi            // we got a cookie - see if we can trust it
248fa7c70ffSAdrian Lang
249fa7c70ffSAdrian Lang            // get session info
250fa7c70ffSAdrian Lang            $session = $_SESSION[DOKU_COOKIE]['auth'];
251132bdbfeSandi            if(isset($session) &&
2527172dbc0SAndreas Gohr                $auth->useSessionCache($user) &&
2534c989037SChris Smith                ($session['time'] >= time() - $conf['auth_security_timeout']) &&
254132bdbfeSandi                ($session['user'] == $user) &&
255234ce57eSAndreas Gohr                ($session['pass'] == sha1($pass)) && //still crypted
256ab5d26daSAndreas Gohr                ($session['buid'] == auth_browseruid())
257ab5d26daSAndreas Gohr            ) {
258234ce57eSAndreas Gohr
259132bdbfeSandi                // he has session, cookie and browser right - let him in
260585bf44eSChristopher Smith                $INPUT->server->set('REMOTE_USER', $user);
261132bdbfeSandi                $USERINFO               = $session['info']; //FIXME move all references to session
262132bdbfeSandi                return true;
263132bdbfeSandi            }
264f112c2faSAndreas Gohr            // no we don't trust it yet - recheck pass but silent
26530d544a4SMichael Hamann            $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
26604369c3eSMichael Hamann            $pass   = auth_decrypt($pass, $secret);
267f112c2faSAndreas Gohr            return auth_login($user, $pass, $sticky, true);
268132bdbfeSandi        }
269132bdbfeSandi    }
270f3f0262cSandi    //just to be sure
271883179a4SAndreas Gohr    auth_logoff(true);
272132bdbfeSandi    return false;
273f3f0262cSandi}
274132bdbfeSandi
275132bdbfeSandi/**
276136ce040Sandi * Builds a pseudo UID from browser and IP data
277132bdbfeSandi *
278132bdbfeSandi * This is neither unique nor unfakable - still it adds some
279136ce040Sandi * security. Using the first part of the IP makes sure
28080b4f376SAndreas Gohr * proxy farms like AOLs are still okay.
28115fae107Sandi *
28215fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
28315fae107Sandi *
28415fae107Sandi * @return  string  a MD5 sum of various browser headers
285132bdbfeSandi */
286132bdbfeSandifunction auth_browseruid() {
287585bf44eSChristopher Smith    /* @var Input $INPUT */
288585bf44eSChristopher Smith    global $INPUT;
289585bf44eSChristopher Smith
2902f9daf16SAndreas Gohr    $ip  = clientIP(true);
291132bdbfeSandi    $uid = '';
292585bf44eSChristopher Smith    $uid .= $INPUT->server->str('HTTP_USER_AGENT');
293585bf44eSChristopher Smith    $uid .= $INPUT->server->str('HTTP_ACCEPT_CHARSET');
2942f9daf16SAndreas Gohr    $uid .= substr($ip, 0, strpos($ip, '.'));
29580b4f376SAndreas Gohr    $uid = strtolower($uid);
296132bdbfeSandi    return md5($uid);
297132bdbfeSandi}
298132bdbfeSandi
299132bdbfeSandi/**
300132bdbfeSandi * Creates a random key to encrypt the password in cookies
30115fae107Sandi *
30215fae107Sandi * This function tries to read the password for encrypting
30398407a7aSandi * cookies from $conf['metadir'].'/_htcookiesalt'
30415fae107Sandi * if no such file is found a random key is created and
30515fae107Sandi * and stored in this file.
30615fae107Sandi *
30715fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
30842ea7f44SGerrit Uitslag *
30932ed2b36SAndreas Gohr * @param   bool $addsession if true, the sessionid is added to the salt
31030d544a4SMichael Hamann * @param   bool $secure     if security is more important than keeping the old value
31115fae107Sandi * @return  string
312132bdbfeSandi */
31330d544a4SMichael Hamannfunction auth_cookiesalt($addsession = false, $secure = false) {
314a1fe3c9cSMichael Große    if (defined('SIMPLE_TEST')) {
315fe745becSMichael Große        return 'test';
316a1fe3c9cSMichael Große    }
317132bdbfeSandi    global $conf;
31898407a7aSandi    $file = $conf['metadir'].'/_htcookiesalt';
31930d544a4SMichael Hamann    if ($secure || !file_exists($file)) {
32030d544a4SMichael Hamann        $file = $conf['metadir'].'/_htcookiesalt2';
32130d544a4SMichael Hamann    }
322132bdbfeSandi    $salt = io_readFile($file);
323132bdbfeSandi    if(empty($salt)) {
32430d544a4SMichael Hamann        $salt = bin2hex(auth_randombytes(64));
325132bdbfeSandi        io_saveFile($file, $salt);
326132bdbfeSandi    }
32732ed2b36SAndreas Gohr    if($addsession) {
32832ed2b36SAndreas Gohr        $salt .= session_id();
32932ed2b36SAndreas Gohr    }
330132bdbfeSandi    return $salt;
331f3f0262cSandi}
332f3f0262cSandi
333f3f0262cSandi/**
3347a33d2f8SNiklas Keller * Return cryptographically secure random bytes.
335483b6238SMichael Hamann *
3367a33d2f8SNiklas Keller * @author Niklas Keller <me@kelunik.com>
33742ea7f44SGerrit Uitslag *
3387a33d2f8SNiklas Keller * @param int $length number of bytes
3397a33d2f8SNiklas Keller * @return string cryptographically secure random bytes
340483b6238SMichael Hamann */
341483b6238SMichael Hamannfunction auth_randombytes($length) {
3427a33d2f8SNiklas Keller    return random_bytes($length);
343483b6238SMichael Hamann}
344483b6238SMichael Hamann
345483b6238SMichael Hamann/**
3467a33d2f8SNiklas Keller * Cryptographically secure random number generator.
347483b6238SMichael Hamann *
3487a33d2f8SNiklas Keller * @author Niklas Keller <me@kelunik.com>
34942ea7f44SGerrit Uitslag *
350483b6238SMichael Hamann * @param int $min
351483b6238SMichael Hamann * @param int $max
352483b6238SMichael Hamann * @return int
353483b6238SMichael Hamann */
354483b6238SMichael Hamannfunction auth_random($min, $max) {
3557a33d2f8SNiklas Keller    return random_int($min, $max);
356483b6238SMichael Hamann}
357483b6238SMichael Hamann
358483b6238SMichael Hamann/**
35904369c3eSMichael Hamann * Encrypt data using the given secret using AES
36004369c3eSMichael Hamann *
36104369c3eSMichael Hamann * The mode is CBC with a random initialization vector, the key is derived
36204369c3eSMichael Hamann * using pbkdf2.
36304369c3eSMichael Hamann *
36404369c3eSMichael Hamann * @param string $data   The data that shall be encrypted
36504369c3eSMichael Hamann * @param string $secret The secret/password that shall be used
36604369c3eSMichael Hamann * @return string The ciphertext
36704369c3eSMichael Hamann */
36804369c3eSMichael Hamannfunction auth_encrypt($data, $secret) {
36904369c3eSMichael Hamann    $iv     = auth_randombytes(16);
3701af2f135SAndreas Gohr    $cipher = new \phpseclib\Crypt\AES();
37104369c3eSMichael Hamann    $cipher->setPassword($secret);
37204369c3eSMichael Hamann
3737b650cefSMichael Hamann    /*
3747b650cefSMichael Hamann    this uses the encrypted IV as IV as suggested in
3757b650cefSMichael Hamann    http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf, Appendix C
3767b650cefSMichael Hamann    for unique but necessarily random IVs. The resulting ciphertext is
3777b650cefSMichael Hamann    compatible to ciphertext that was created using a "normal" IV.
3787b650cefSMichael Hamann    */
37904369c3eSMichael Hamann    return $cipher->encrypt($iv.$data);
38004369c3eSMichael Hamann}
38104369c3eSMichael Hamann
38204369c3eSMichael Hamann/**
38304369c3eSMichael Hamann * Decrypt the given AES ciphertext
38404369c3eSMichael Hamann *
38504369c3eSMichael Hamann * The mode is CBC, the key is derived using pbkdf2
38604369c3eSMichael Hamann *
38704369c3eSMichael Hamann * @param string $ciphertext The encrypted data
38804369c3eSMichael Hamann * @param string $secret     The secret/password that shall be used
38904369c3eSMichael Hamann * @return string The decrypted data
39004369c3eSMichael Hamann */
39104369c3eSMichael Hamannfunction auth_decrypt($ciphertext, $secret) {
3927b650cefSMichael Hamann    $iv     = substr($ciphertext, 0, 16);
3931af2f135SAndreas Gohr    $cipher = new \phpseclib\Crypt\AES();
39404369c3eSMichael Hamann    $cipher->setPassword($secret);
3957b650cefSMichael Hamann    $cipher->setIV($iv);
39604369c3eSMichael Hamann
3977b650cefSMichael Hamann    return $cipher->decrypt(substr($ciphertext, 16));
39804369c3eSMichael Hamann}
39904369c3eSMichael Hamann
40004369c3eSMichael Hamann/**
401883179a4SAndreas Gohr * Log out the current user
402883179a4SAndreas Gohr *
403f3f0262cSandi * This clears all authentication data and thus log the user
404883179a4SAndreas Gohr * off. It also clears session data.
40515fae107Sandi *
40615fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
40742ea7f44SGerrit Uitslag *
408883179a4SAndreas Gohr * @param bool $keepbc - when true, the breadcrumb data is not cleared
409f3f0262cSandi */
410883179a4SAndreas Gohrfunction auth_logoff($keepbc = false) {
411f3f0262cSandi    global $conf;
412f3f0262cSandi    global $USERINFO;
413e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
4145298a619SAndreas Gohr    global $auth;
415585bf44eSChristopher Smith    /* @var Input $INPUT */
416585bf44eSChristopher Smith    global $INPUT;
41737065e65Sandi
418d4869846SAndreas Gohr    // make sure the session is writable (it usually is)
419e9621d07SAndreas Gohr    @session_start();
420e9621d07SAndreas Gohr
421e71ce681SAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['auth']['user']))
422e71ce681SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['user']);
423e71ce681SAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['auth']['pass']))
424e71ce681SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['pass']);
425e71ce681SAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['auth']['info']))
426e71ce681SAndreas Gohr        unset($_SESSION[DOKU_COOKIE]['auth']['info']);
427883179a4SAndreas Gohr    if(!$keepbc && isset($_SESSION[DOKU_COOKIE]['bc']))
428e16eccb7SGuy Brand        unset($_SESSION[DOKU_COOKIE]['bc']);
429585bf44eSChristopher Smith    $INPUT->server->remove('REMOTE_USER');
430132bdbfeSandi    $USERINFO = null; //FIXME
431f5c6743cSAndreas Gohr
43273ab87deSGabriel Birke    $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
43373ab87deSGabriel Birke    setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
4345298a619SAndreas Gohr
435880f62faSAndreas Gohr    if($auth) $auth->logOff();
436f3f0262cSandi}
437f3f0262cSandi
438f3f0262cSandi/**
439f8cc712eSAndreas Gohr * Check if a user is a manager
440f8cc712eSAndreas Gohr *
441f8cc712eSAndreas Gohr * Should usually be called without any parameters to check the current
442f8cc712eSAndreas Gohr * user.
443f8cc712eSAndreas Gohr *
444f8cc712eSAndreas Gohr * The info is available through $INFO['ismanager'], too
445f8cc712eSAndreas Gohr *
446f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
447f8cc712eSAndreas Gohr * @see    auth_isadmin
44842ea7f44SGerrit Uitslag *
449ab5d26daSAndreas Gohr * @param  string $user       Username
450ab5d26daSAndreas Gohr * @param  array  $groups     List of groups the user is in
451ab5d26daSAndreas Gohr * @param  bool   $adminonly  when true checks if user is admin
452ab5d26daSAndreas Gohr * @return bool
453f8cc712eSAndreas Gohr */
454f8cc712eSAndreas Gohrfunction auth_ismanager($user = null, $groups = null, $adminonly = false) {
455f8cc712eSAndreas Gohr    global $conf;
456f8cc712eSAndreas Gohr    global $USERINFO;
457e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
458d752aedeSAndreas Gohr    global $auth;
459585bf44eSChristopher Smith    /* @var Input $INPUT */
460585bf44eSChristopher Smith    global $INPUT;
461585bf44eSChristopher Smith
462f8cc712eSAndreas Gohr
463beca106aSAdrian Lang    if(!$auth) return false;
464c66972f2SAdrian Lang    if(is_null($user)) {
465585bf44eSChristopher Smith        if(!$INPUT->server->has('REMOTE_USER')) {
466c66972f2SAdrian Lang            return false;
467c66972f2SAdrian Lang        } else {
468585bf44eSChristopher Smith            $user = $INPUT->server->str('REMOTE_USER');
469c66972f2SAdrian Lang        }
470c66972f2SAdrian Lang    }
471d6dc956fSAndreas Gohr    if(is_null($groups)) {
472d6dc956fSAndreas Gohr        $groups = (array) $USERINFO['grps'];
473e259aa79SAndreas Gohr    }
474e259aa79SAndreas Gohr
475d6dc956fSAndreas Gohr    // check superuser match
476d6dc956fSAndreas Gohr    if(auth_isMember($conf['superuser'], $user, $groups)) return true;
477d6dc956fSAndreas Gohr    if($adminonly) return false;
478e259aa79SAndreas Gohr    // check managers
479d6dc956fSAndreas Gohr    if(auth_isMember($conf['manager'], $user, $groups)) return true;
48000ce12daSChris Smith
481f8cc712eSAndreas Gohr    return false;
482f8cc712eSAndreas Gohr}
483f8cc712eSAndreas Gohr
484f8cc712eSAndreas Gohr/**
485f8cc712eSAndreas Gohr * Check if a user is admin
486f8cc712eSAndreas Gohr *
487f8cc712eSAndreas Gohr * Alias to auth_ismanager with adminonly=true
488f8cc712eSAndreas Gohr *
489f8cc712eSAndreas Gohr * The info is available through $INFO['isadmin'], too
490f8cc712eSAndreas Gohr *
491f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
492ab5d26daSAndreas Gohr * @see auth_ismanager()
49342ea7f44SGerrit Uitslag *
494ab5d26daSAndreas Gohr * @param  string $user       Username
495ab5d26daSAndreas Gohr * @param  array  $groups     List of groups the user is in
496ab5d26daSAndreas Gohr * @return bool
497f8cc712eSAndreas Gohr */
498f8cc712eSAndreas Gohrfunction auth_isadmin($user = null, $groups = null) {
499f8cc712eSAndreas Gohr    return auth_ismanager($user, $groups, true);
500f8cc712eSAndreas Gohr}
501f8cc712eSAndreas Gohr
502d6dc956fSAndreas Gohr/**
503d6dc956fSAndreas Gohr * Match a user and his groups against a comma separated list of
504d6dc956fSAndreas Gohr * users and groups to determine membership status
505d6dc956fSAndreas Gohr *
506d6dc956fSAndreas Gohr * Note: all input should NOT be nameencoded.
507d6dc956fSAndreas Gohr *
50842ea7f44SGerrit Uitslag * @param string $memberlist commaseparated list of allowed users and groups
50942ea7f44SGerrit Uitslag * @param string $user       user to match against
51042ea7f44SGerrit Uitslag * @param array  $groups     groups the user is member of
5115446f3ffSDominik Eckelmann * @return bool       true for membership acknowledged
512d6dc956fSAndreas Gohr */
513d6dc956fSAndreas Gohrfunction auth_isMember($memberlist, $user, array $groups) {
514e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
515d6dc956fSAndreas Gohr    global $auth;
516d6dc956fSAndreas Gohr    if(!$auth) return false;
517d6dc956fSAndreas Gohr
518d6dc956fSAndreas Gohr    // clean user and groups
5194f56ecbfSAdrian Lang    if(!$auth->isCaseSensitive()) {
520d6dc956fSAndreas Gohr        $user   = utf8_strtolower($user);
521d6dc956fSAndreas Gohr        $groups = array_map('utf8_strtolower', $groups);
522d6dc956fSAndreas Gohr    }
523d6dc956fSAndreas Gohr    $user   = $auth->cleanUser($user);
524d6dc956fSAndreas Gohr    $groups = array_map(array($auth, 'cleanGroup'), $groups);
525d6dc956fSAndreas Gohr
526d6dc956fSAndreas Gohr    // extract the memberlist
527d6dc956fSAndreas Gohr    $members = explode(',', $memberlist);
528d6dc956fSAndreas Gohr    $members = array_map('trim', $members);
529d6dc956fSAndreas Gohr    $members = array_unique($members);
530d6dc956fSAndreas Gohr    $members = array_filter($members);
531d6dc956fSAndreas Gohr
532d6dc956fSAndreas Gohr    // compare cleaned values
533d6dc956fSAndreas Gohr    foreach($members as $member) {
534e5204a12SJurgen Hart        if($member == '@ALL' ) return true;
5354f56ecbfSAdrian Lang        if(!$auth->isCaseSensitive()) $member = utf8_strtolower($member);
536d6dc956fSAndreas Gohr        if($member[0] == '@') {
537d6dc956fSAndreas Gohr            $member = $auth->cleanGroup(substr($member, 1));
538d6dc956fSAndreas Gohr            if(in_array($member, $groups)) return true;
539d6dc956fSAndreas Gohr        } else {
540d6dc956fSAndreas Gohr            $member = $auth->cleanUser($member);
541d6dc956fSAndreas Gohr            if($member == $user) return true;
542d6dc956fSAndreas Gohr        }
543d6dc956fSAndreas Gohr    }
544d6dc956fSAndreas Gohr
545d6dc956fSAndreas Gohr    // still here? not a member!
546d6dc956fSAndreas Gohr    return false;
547d6dc956fSAndreas Gohr}
548d6dc956fSAndreas Gohr
549f8cc712eSAndreas Gohr/**
55015fae107Sandi * Convinience function for auth_aclcheck()
55115fae107Sandi *
55215fae107Sandi * This checks the permissions for the current user
55315fae107Sandi *
55415fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
55515fae107Sandi *
5561698b983Smichael * @param  string  $id  page ID (needs to be resolved and cleaned)
55715fae107Sandi * @return int          permission level
558f3f0262cSandi */
559f3f0262cSandifunction auth_quickaclcheck($id) {
560f3f0262cSandi    global $conf;
561f3f0262cSandi    global $USERINFO;
562585bf44eSChristopher Smith    /* @var Input $INPUT */
563585bf44eSChristopher Smith    global $INPUT;
564f3f0262cSandi    # if no ACL is used always return upload rights
565f3f0262cSandi    if(!$conf['useacl']) return AUTH_UPLOAD;
566585bf44eSChristopher Smith    return auth_aclcheck($id, $INPUT->server->str('REMOTE_USER'), $USERINFO['grps']);
567f3f0262cSandi}
568f3f0262cSandi
569f3f0262cSandi/**
570c17acc9fSAndreas Gohr * Returns the maximum rights a user has for the given ID or its namespace
57115fae107Sandi *
57215fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
57342ea7f44SGerrit Uitslag *
574c17acc9fSAndreas Gohr * @triggers AUTH_ACL_CHECK
5751698b983Smichael * @param  string       $id     page ID (needs to be resolved and cleaned)
57615fae107Sandi * @param  string       $user   Username
5773272d797SAndreas Gohr * @param  array|null   $groups Array of groups the user is in
57815fae107Sandi * @return int             permission level
579f3f0262cSandi */
580f3f0262cSandifunction auth_aclcheck($id, $user, $groups) {
581c17acc9fSAndreas Gohr    $data = array(
582c17acc9fSAndreas Gohr        'id'     => $id,
583c17acc9fSAndreas Gohr        'user'   => $user,
584c17acc9fSAndreas Gohr        'groups' => $groups
585c17acc9fSAndreas Gohr    );
586c17acc9fSAndreas Gohr
587cbb44eabSAndreas Gohr    return Event::createAndTrigger('AUTH_ACL_CHECK', $data, 'auth_aclcheck_cb');
588c17acc9fSAndreas Gohr}
589c17acc9fSAndreas Gohr
590c17acc9fSAndreas Gohr/**
591c17acc9fSAndreas Gohr * default ACL check method
592c17acc9fSAndreas Gohr *
593c17acc9fSAndreas Gohr * DO NOT CALL DIRECTLY, use auth_aclcheck() instead
594c17acc9fSAndreas Gohr *
595c17acc9fSAndreas Gohr * @author  Andreas Gohr <andi@splitbrain.org>
59642ea7f44SGerrit Uitslag *
597c17acc9fSAndreas Gohr * @param  array $data event data
598c17acc9fSAndreas Gohr * @return int   permission level
599c17acc9fSAndreas Gohr */
600c17acc9fSAndreas Gohrfunction auth_aclcheck_cb($data) {
601c17acc9fSAndreas Gohr    $id     =& $data['id'];
602c17acc9fSAndreas Gohr    $user   =& $data['user'];
603c17acc9fSAndreas Gohr    $groups =& $data['groups'];
604c17acc9fSAndreas Gohr
605f3f0262cSandi    global $conf;
606f3f0262cSandi    global $AUTH_ACL;
607e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
608d752aedeSAndreas Gohr    global $auth;
609f3f0262cSandi
61085d03f68SAndreas Gohr    // if no ACL is used always return upload rights
611f3f0262cSandi    if(!$conf['useacl']) return AUTH_UPLOAD;
612beca106aSAdrian Lang    if(!$auth) return AUTH_NONE;
613f3f0262cSandi
614074cf26bSandi    //make sure groups is an array
615074cf26bSandi    if(!is_array($groups)) $groups = array();
616074cf26bSandi
61785d03f68SAndreas Gohr    //if user is superuser or in superusergroup return 255 (acl_admin)
618ab5d26daSAndreas Gohr    if(auth_isadmin($user, $groups)) {
619ab5d26daSAndreas Gohr        return AUTH_ADMIN;
620ab5d26daSAndreas Gohr    }
62185d03f68SAndreas Gohr
622eb3ce0d5SKazutaka Miyasaka    if(!$auth->isCaseSensitive()) {
623eb3ce0d5SKazutaka Miyasaka        $user   = utf8_strtolower($user);
624eb3ce0d5SKazutaka Miyasaka        $groups = array_map('utf8_strtolower', $groups);
625eb3ce0d5SKazutaka Miyasaka    }
62637ff2261SSascha Klopp    $user   = auth_nameencode($auth->cleanUser($user));
627d752aedeSAndreas Gohr    $groups = array_map(array($auth, 'cleanGroup'), (array) $groups);
62885d03f68SAndreas Gohr
6296c2bb100SAndreas Gohr    //prepend groups with @ and nameencode
63037ff2261SSascha Klopp    foreach($groups as &$group) {
63137ff2261SSascha Klopp        $group = '@'.auth_nameencode($group);
63210a76f6fSfrank    }
63310a76f6fSfrank
634f3f0262cSandi    $ns   = getNS($id);
635f3f0262cSandi    $perm = -1;
636f3f0262cSandi
637f3f0262cSandi    //add ALL group
638f3f0262cSandi    $groups[] = '@ALL';
63937ff2261SSascha Klopp
640f3f0262cSandi    //add User
64134aeb4afSAndreas Gohr    if($user) $groups[] = $user;
642f3f0262cSandi
643f3f0262cSandi    //check exact match first
64421c3090aSChristopher Smith    $matches = preg_grep('/^'.preg_quote($id, '/').'[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL);
645f3f0262cSandi    if(count($matches)) {
646f3f0262cSandi        foreach($matches as $match) {
647f3f0262cSandi            $match = preg_replace('/#.*$/', '', $match); //ignore comments
64821c3090aSChristopher Smith            $acl   = preg_split('/[ \t]+/', $match);
649eb3ce0d5SKazutaka Miyasaka            if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
650eb3ce0d5SKazutaka Miyasaka                $acl[1] = utf8_strtolower($acl[1]);
651eb3ce0d5SKazutaka Miyasaka            }
65248d7b7a6SDominik Eckelmann            if(!in_array($acl[1], $groups)) {
65348d7b7a6SDominik Eckelmann                continue;
65448d7b7a6SDominik Eckelmann            }
6558ef6b7caSandi            if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL!
656f3f0262cSandi            if($acl[2] > $perm) {
657f3f0262cSandi                $perm = $acl[2];
658f3f0262cSandi            }
659f3f0262cSandi        }
660f3f0262cSandi        if($perm > -1) {
661f3f0262cSandi            //we had a match - return it
662def492a2SGuillaume Turri            return (int) $perm;
663f3f0262cSandi        }
664f3f0262cSandi    }
665f3f0262cSandi
666f3f0262cSandi    //still here? do the namespace checks
667f3f0262cSandi    if($ns) {
6683e304b55SMichael Hamann        $path = $ns.':*';
669f3f0262cSandi    } else {
6703e304b55SMichael Hamann        $path = '*'; //root document
671f3f0262cSandi    }
672f3f0262cSandi
673f3f0262cSandi    do {
67421c3090aSChristopher Smith        $matches = preg_grep('/^'.preg_quote($path, '/').'[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL);
675f3f0262cSandi        if(count($matches)) {
676f3f0262cSandi            foreach($matches as $match) {
677f3f0262cSandi                $match = preg_replace('/#.*$/', '', $match); //ignore comments
67821c3090aSChristopher Smith                $acl   = preg_split('/[ \t]+/', $match);
679eb3ce0d5SKazutaka Miyasaka                if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
680eb3ce0d5SKazutaka Miyasaka                    $acl[1] = utf8_strtolower($acl[1]);
681eb3ce0d5SKazutaka Miyasaka                }
68248d7b7a6SDominik Eckelmann                if(!in_array($acl[1], $groups)) {
68348d7b7a6SDominik Eckelmann                    continue;
68448d7b7a6SDominik Eckelmann                }
6858ef6b7caSandi                if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL!
686f3f0262cSandi                if($acl[2] > $perm) {
687f3f0262cSandi                    $perm = $acl[2];
688f3f0262cSandi                }
689f3f0262cSandi            }
690f3f0262cSandi            //we had a match - return it
69148d7b7a6SDominik Eckelmann            if($perm != -1) {
692def492a2SGuillaume Turri                return (int) $perm;
693f3f0262cSandi            }
69448d7b7a6SDominik Eckelmann        }
695f3f0262cSandi        //get next higher namespace
696f3f0262cSandi        $ns = getNS($ns);
697f3f0262cSandi
6983e304b55SMichael Hamann        if($path != '*') {
6993e304b55SMichael Hamann            $path = $ns.':*';
7003e304b55SMichael Hamann            if($path == ':*') $path = '*';
701f3f0262cSandi        } else {
702f3f0262cSandi            //we did this already
703f3f0262cSandi            //looks like there is something wrong with the ACL
704f3f0262cSandi            //break here
705d5ce66f6SAndreas Gohr            msg('No ACL setup yet! Denying access to everyone.');
706d5ce66f6SAndreas Gohr            return AUTH_NONE;
707f3f0262cSandi        }
708f3f0262cSandi    } while(1); //this should never loop endless
709ab5d26daSAndreas Gohr    return AUTH_NONE;
710f3f0262cSandi}
711f3f0262cSandi
712f3f0262cSandi/**
7136c2bb100SAndreas Gohr * Encode ASCII special chars
7146c2bb100SAndreas Gohr *
7156c2bb100SAndreas Gohr * Some auth backends allow special chars in their user and groupnames
7166c2bb100SAndreas Gohr * The special chars are encoded with this function. Only ASCII chars
7176c2bb100SAndreas Gohr * are encoded UTF-8 multibyte are left as is (different from usual
7186c2bb100SAndreas Gohr * urlencoding!).
7196c2bb100SAndreas Gohr *
7206c2bb100SAndreas Gohr * Decoding can be done with rawurldecode
7216c2bb100SAndreas Gohr *
7226c2bb100SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
7236c2bb100SAndreas Gohr * @see rawurldecode()
72442ea7f44SGerrit Uitslag *
72542ea7f44SGerrit Uitslag * @param string $name
72642ea7f44SGerrit Uitslag * @param bool $skip_group
72742ea7f44SGerrit Uitslag * @return string
7286c2bb100SAndreas Gohr */
729e838fc2eSAndreas Gohrfunction auth_nameencode($name, $skip_group = false) {
730a424cd8eSchris    global $cache_authname;
731a424cd8eSchris    $cache =& $cache_authname;
73231784267SAndreas Gohr    $name  = (string) $name;
733a424cd8eSchris
73480601d26SAndreas Gohr    // never encode wildcard FS#1955
73580601d26SAndreas Gohr    if($name == '%USER%') return $name;
736b78bf706Sromain    if($name == '%GROUP%') return $name;
73780601d26SAndreas Gohr
738a424cd8eSchris    if(!isset($cache[$name][$skip_group])) {
739e838fc2eSAndreas Gohr        if($skip_group && $name{0} == '@') {
74030f6faf0SChristopher Smith            $cache[$name][$skip_group] = '@'.preg_replace_callback(
74130f6faf0SChristopher Smith                '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/',
74230f6faf0SChristopher Smith                'auth_nameencode_callback', substr($name, 1)
743ab5d26daSAndreas Gohr            );
744e838fc2eSAndreas Gohr        } else {
74530f6faf0SChristopher Smith            $cache[$name][$skip_group] = preg_replace_callback(
74630f6faf0SChristopher Smith                '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/',
74730f6faf0SChristopher Smith                'auth_nameencode_callback', $name
748ab5d26daSAndreas Gohr            );
749e838fc2eSAndreas Gohr        }
7506c2bb100SAndreas Gohr    }
7516c2bb100SAndreas Gohr
752a424cd8eSchris    return $cache[$name][$skip_group];
753a424cd8eSchris}
754a424cd8eSchris
75504d68ae4SGerrit Uitslag/**
75604d68ae4SGerrit Uitslag * callback encodes the matches
75704d68ae4SGerrit Uitslag *
75804d68ae4SGerrit Uitslag * @param array $matches first complete match, next matching subpatterms
75904d68ae4SGerrit Uitslag * @return string
76004d68ae4SGerrit Uitslag */
76130f6faf0SChristopher Smithfunction auth_nameencode_callback($matches) {
76230f6faf0SChristopher Smith    return '%'.dechex(ord(substr($matches[1],-1)));
76330f6faf0SChristopher Smith}
76430f6faf0SChristopher Smith
7656c2bb100SAndreas Gohr/**
766f3f0262cSandi * Create a pronouncable password
767f3f0262cSandi *
7688a285f7fSAndreas Gohr * The $foruser variable might be used by plugins to run additional password
7698a285f7fSAndreas Gohr * policy checks, but is not used by the default implementation
7708a285f7fSAndreas Gohr *
77115fae107Sandi * @author   Andreas Gohr <andi@splitbrain.org>
77215fae107Sandi * @link     http://www.phpbuilder.com/annotate/message.php3?id=1014451
7738a285f7fSAndreas Gohr * @triggers AUTH_PASSWORD_GENERATE
77415fae107Sandi *
7758a285f7fSAndreas Gohr * @param  string $foruser username for which the password is generated
77615fae107Sandi * @return string  pronouncable password
777f3f0262cSandi */
7788a285f7fSAndreas Gohrfunction auth_pwgen($foruser = '') {
7798a285f7fSAndreas Gohr    $data = array(
780d628dcf3SAndreas Gohr        'password' => '',
781d628dcf3SAndreas Gohr        'foruser'  => $foruser
7828a285f7fSAndreas Gohr    );
7838a285f7fSAndreas Gohr
784e1d9dcc8SAndreas Gohr    $evt = new Event('AUTH_PASSWORD_GENERATE', $data);
7858a285f7fSAndreas Gohr    if($evt->advise_before(true)) {
786f3f0262cSandi        $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones
787f3f0262cSandi        $v = 'aeiou'; //vowels
788f3f0262cSandi        $a = $c.$v; //both
789987c8d26SAndreas Gohr        $s = '!$%&?+*~#-_:.;,'; // specials
790f3f0262cSandi
791987c8d26SAndreas Gohr        //use thre syllables...
792987c8d26SAndreas Gohr        for($i = 0; $i < 3; $i++) {
793483b6238SMichael Hamann            $data['password'] .= $c[auth_random(0, strlen($c) - 1)];
794483b6238SMichael Hamann            $data['password'] .= $v[auth_random(0, strlen($v) - 1)];
795483b6238SMichael Hamann            $data['password'] .= $a[auth_random(0, strlen($a) - 1)];
796f3f0262cSandi        }
797987c8d26SAndreas Gohr        //... and add a nice number and special
798483b6238SMichael Hamann        $data['password'] .= auth_random(10, 99).$s[auth_random(0, strlen($s) - 1)];
7998a285f7fSAndreas Gohr    }
8008a285f7fSAndreas Gohr    $evt->advise_after();
801f3f0262cSandi
8028a285f7fSAndreas Gohr    return $data['password'];
803f3f0262cSandi}
804f3f0262cSandi
805f3f0262cSandi/**
806f3f0262cSandi * Sends a password to the given user
807f3f0262cSandi *
80815fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
80942ea7f44SGerrit Uitslag *
810ab5d26daSAndreas Gohr * @param string $user Login name of the user
811ab5d26daSAndreas Gohr * @param string $password The new password in clear text
81215fae107Sandi * @return bool  true on success
813f3f0262cSandi */
814f3f0262cSandifunction auth_sendPassword($user, $password) {
815f3f0262cSandi    global $lang;
816e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
817cd52f92dSchris    global $auth;
818beca106aSAdrian Lang    if(!$auth) return false;
819cd52f92dSchris
820d752aedeSAndreas Gohr    $user     = $auth->cleanUser($user);
8212dc9e900SChristopher Smith    $userinfo = $auth->getUserData($user, $requireGroups = false);
822f3f0262cSandi
82387ddda95Sandi    if(!$userinfo['mail']) return false;
824f3f0262cSandi
825f3f0262cSandi    $text = rawLocale('password');
826d7169d19SAndreas Gohr    $trep = array(
827d7169d19SAndreas Gohr        'FULLNAME' => $userinfo['name'],
828d7169d19SAndreas Gohr        'LOGIN'    => $user,
829d7169d19SAndreas Gohr        'PASSWORD' => $password
830d7169d19SAndreas Gohr    );
831f3f0262cSandi
832d7169d19SAndreas Gohr    $mail = new Mailer();
833d7169d19SAndreas Gohr    $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>');
834d7169d19SAndreas Gohr    $mail->subject($lang['regpwmail']);
835d7169d19SAndreas Gohr    $mail->setBody($text, $trep);
836d7169d19SAndreas Gohr    return $mail->send();
837f3f0262cSandi}
838f3f0262cSandi
839f3f0262cSandi/**
84015fae107Sandi * Register a new user
841f3f0262cSandi *
84215fae107Sandi * This registers a new user - Data is read directly from $_POST
84315fae107Sandi *
84415fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
84542ea7f44SGerrit Uitslag *
84615fae107Sandi * @return bool  true on success, false on any error
847f3f0262cSandi */
848f3f0262cSandifunction register() {
849f3f0262cSandi    global $lang;
850eb5d07e4Sjan    global $conf;
851e1d9dcc8SAndreas Gohr    /* @var \dokuwiki\Extension\AuthPlugin $auth */
852cd52f92dSchris    global $auth;
85364273335SAndreas Gohr    global $INPUT;
854f3f0262cSandi
85564273335SAndreas Gohr    if(!$INPUT->post->bool('save')) return false;
8563a48618aSAnika Henke    if(!actionOK('register')) return false;
857640145a5Sandi
85864273335SAndreas Gohr    // gather input
85964273335SAndreas Gohr    $login    = trim($auth->cleanUser($INPUT->post->str('login')));
86064273335SAndreas Gohr    $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname')));
86164273335SAndreas Gohr    $email    = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email')));
86264273335SAndreas Gohr    $pass     = $INPUT->post->str('pass');
86364273335SAndreas Gohr    $passchk  = $INPUT->post->str('passchk');
864d752aedeSAndreas Gohr
86564273335SAndreas Gohr    if(empty($login) || empty($fullname) || empty($email)) {
866f3f0262cSandi        msg($lang['regmissing'], -1);
867f3f0262cSandi        return false;
868f3f0262cSandi    }
869f3f0262cSandi
870cab2716aSmatthias.grimm    if($conf['autopasswd']) {
8718a285f7fSAndreas Gohr        $pass = auth_pwgen($login); // automatically generate password
87264273335SAndreas Gohr    } elseif(empty($pass) || empty($passchk)) {
873bf12ec81Sjan        msg($lang['regmissing'], -1); // complain about missing passwords
874cab2716aSmatthias.grimm        return false;
87564273335SAndreas Gohr    } elseif($pass != $passchk) {
876bf12ec81Sjan        msg($lang['regbadpass'], -1); // complain about misspelled passwords
877cab2716aSmatthias.grimm        return false;
878cab2716aSmatthias.grimm    }
879cab2716aSmatthias.grimm
880f3f0262cSandi    //check mail
88164273335SAndreas Gohr    if(!mail_isvalid($email)) {
882f3f0262cSandi        msg($lang['regbadmail'], -1);
883f3f0262cSandi        return false;
884f3f0262cSandi    }
885f3f0262cSandi
886f3f0262cSandi    //okay try to create the user
88764273335SAndreas Gohr    if(!$auth->triggerUserMod('create', array($login, $pass, $fullname, $email))) {
888db9faf02SPatrick Brown        msg($lang['regfail'], -1);
889f3f0262cSandi        return false;
890f3f0262cSandi    }
891f3f0262cSandi
892790b7720SAndreas Gohr    // send notification about the new user
893790b7720SAndreas Gohr    $subscription = new Subscription();
894790b7720SAndreas Gohr    $subscription->send_register($login, $fullname, $email);
89502a498e7Schris
896790b7720SAndreas Gohr    // are we done?
897cab2716aSmatthias.grimm    if(!$conf['autopasswd']) {
898cab2716aSmatthias.grimm        msg($lang['regsuccess2'], 1);
899cab2716aSmatthias.grimm        return true;
900cab2716aSmatthias.grimm    }
901cab2716aSmatthias.grimm
902790b7720SAndreas Gohr    // autogenerated password? then send password to user
90364273335SAndreas Gohr    if(auth_sendPassword($login, $pass)) {
904f3f0262cSandi        msg($lang['regsuccess'], 1);
905f3f0262cSandi        return true;
906f3f0262cSandi    } else {
907f3f0262cSandi        msg($lang['regmailfail'], -1);
908f3f0262cSandi        return false;
909f3f0262cSandi    }
910f3f0262cSandi}
911f3f0262cSandi
91210a76f6fSfrank/**
9138b06d178Schris * Update user profile
9148b06d178Schris *
9158b06d178Schris * @author    Christopher Smith <chris@jalakai.co.uk>
9168b06d178Schris */
9178b06d178Schrisfunction updateprofile() {
9188b06d178Schris    global $conf;
9198b06d178Schris    global $lang;
920e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
921cd52f92dSchris    global $auth;
922bcc94b2cSAndreas Gohr    /* @var Input $INPUT */
923bcc94b2cSAndreas Gohr    global $INPUT;
9248b06d178Schris
925bcc94b2cSAndreas Gohr    if(!$INPUT->post->bool('save')) return false;
9261b2a85e8SAndreas Gohr    if(!checkSecurityToken()) return false;
9278b06d178Schris
9283a48618aSAnika Henke    if(!actionOK('profile')) {
9298b06d178Schris        msg($lang['profna'], -1);
9308b06d178Schris        return false;
9318b06d178Schris    }
9328b06d178Schris
933bcc94b2cSAndreas Gohr    $changes         = array();
934bcc94b2cSAndreas Gohr    $changes['pass'] = $INPUT->post->str('newpass');
935bcc94b2cSAndreas Gohr    $changes['name'] = $INPUT->post->str('fullname');
936bcc94b2cSAndreas Gohr    $changes['mail'] = $INPUT->post->str('email');
937bcc94b2cSAndreas Gohr
938bcc94b2cSAndreas Gohr    // check misspelled passwords
939bcc94b2cSAndreas Gohr    if($changes['pass'] != $INPUT->post->str('passchk')) {
940bcc94b2cSAndreas Gohr        msg($lang['regbadpass'], -1);
9418b06d178Schris        return false;
9428b06d178Schris    }
9438b06d178Schris
9448b06d178Schris    // clean fullname and email
945bcc94b2cSAndreas Gohr    $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name']));
946bcc94b2cSAndreas Gohr    $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail']));
9478b06d178Schris
948bcc94b2cSAndreas Gohr    // no empty name and email (except the backend doesn't support them)
949bcc94b2cSAndreas Gohr    if((empty($changes['name']) && $auth->canDo('modName')) ||
950bcc94b2cSAndreas Gohr        (empty($changes['mail']) && $auth->canDo('modMail'))
951ab5d26daSAndreas Gohr    ) {
9528b06d178Schris        msg($lang['profnoempty'], -1);
9538b06d178Schris        return false;
9548b06d178Schris    }
955bcc94b2cSAndreas Gohr    if(!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) {
9568b06d178Schris        msg($lang['regbadmail'], -1);
9578b06d178Schris        return false;
9588b06d178Schris    }
9598b06d178Schris
960bcc94b2cSAndreas Gohr    $changes = array_filter($changes);
9614c21b7eeSAndreas Gohr
962bcc94b2cSAndreas Gohr    // check for unavailable capabilities
963bcc94b2cSAndreas Gohr    if(!$auth->canDo('modName')) unset($changes['name']);
964bcc94b2cSAndreas Gohr    if(!$auth->canDo('modMail')) unset($changes['mail']);
965bcc94b2cSAndreas Gohr    if(!$auth->canDo('modPass')) unset($changes['pass']);
966bcc94b2cSAndreas Gohr
967bcc94b2cSAndreas Gohr    // anything to do?
9688b06d178Schris    if(!count($changes)) {
9698b06d178Schris        msg($lang['profnochange'], -1);
9708b06d178Schris        return false;
9718b06d178Schris    }
9728b06d178Schris
9738b06d178Schris    if($conf['profileconfirm']) {
974585bf44eSChristopher Smith        if(!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) {
97571422fc8SChristopher Smith            msg($lang['badpassconfirm'], -1);
9768b06d178Schris            return false;
9778b06d178Schris        }
9788b06d178Schris    }
9798b06d178Schris
980e6c4392fSPatrick Brown    if(!$auth->triggerUserMod('modify', array($INPUT->server->str('REMOTE_USER'), &$changes))) {
981db9faf02SPatrick Brown        msg($lang['proffail'], -1);
982db9faf02SPatrick Brown        return false;
983db9faf02SPatrick Brown    }
984db9faf02SPatrick Brown
98532ed2b36SAndreas Gohr    if($changes['pass']) {
986c276e9e8SMarcel Pennewiss        // update cookie and session with the changed data
987ab5d26daSAndreas Gohr        list( /*user*/, $sticky, /*pass*/) = auth_getCookie();
98804369c3eSMichael Hamann        $pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true));
989585bf44eSChristopher Smith        auth_setCookie($INPUT->server->str('REMOTE_USER'), $pass, (bool) $sticky);
990c276e9e8SMarcel Pennewiss    } else {
991c276e9e8SMarcel Pennewiss        // make sure the session is writable
992c276e9e8SMarcel Pennewiss        @session_start();
993c276e9e8SMarcel Pennewiss        // invalidate session cache
994c276e9e8SMarcel Pennewiss        $_SESSION[DOKU_COOKIE]['auth']['time'] = 0;
995c276e9e8SMarcel Pennewiss        session_write_close();
99632ed2b36SAndreas Gohr    }
997c276e9e8SMarcel Pennewiss
99825b2a98cSMichael Klier    return true;
999a0b5b007SChris Smith}
1000ab5d26daSAndreas Gohr
100104d68ae4SGerrit Uitslag/**
100204d68ae4SGerrit Uitslag * Delete the current logged-in user
100304d68ae4SGerrit Uitslag *
100404d68ae4SGerrit Uitslag * @return bool true on success, false on any error
100504d68ae4SGerrit Uitslag */
10062a7abf2dSChristopher Smithfunction auth_deleteprofile(){
10072a7abf2dSChristopher Smith    global $conf;
10082a7abf2dSChristopher Smith    global $lang;
1009e1d9dcc8SAndreas Gohr    /* @var \dokuwiki\Extension\AuthPlugin $auth */
10102a7abf2dSChristopher Smith    global $auth;
10112a7abf2dSChristopher Smith    /* @var Input $INPUT */
10122a7abf2dSChristopher Smith    global $INPUT;
10132a7abf2dSChristopher Smith
10142a7abf2dSChristopher Smith    if(!$INPUT->post->bool('delete')) return false;
10152a7abf2dSChristopher Smith    if(!checkSecurityToken()) return false;
10162a7abf2dSChristopher Smith
10172a7abf2dSChristopher Smith    // action prevented or auth module disallows
10182a7abf2dSChristopher Smith    if(!actionOK('profile_delete') || !$auth->canDo('delUser')) {
10192a7abf2dSChristopher Smith        msg($lang['profnodelete'], -1);
10202a7abf2dSChristopher Smith        return false;
10212a7abf2dSChristopher Smith    }
10222a7abf2dSChristopher Smith
10232a7abf2dSChristopher Smith    if(!$INPUT->post->bool('confirm_delete')){
10242a7abf2dSChristopher Smith        msg($lang['profconfdeletemissing'], -1);
10252a7abf2dSChristopher Smith        return false;
10262a7abf2dSChristopher Smith    }
10272a7abf2dSChristopher Smith
10282a7abf2dSChristopher Smith    if($conf['profileconfirm']) {
1029585bf44eSChristopher Smith        if(!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) {
10302a7abf2dSChristopher Smith            msg($lang['badpassconfirm'], -1);
10312a7abf2dSChristopher Smith            return false;
10322a7abf2dSChristopher Smith        }
10332a7abf2dSChristopher Smith    }
10342a7abf2dSChristopher Smith
103559bc3b48SGerrit Uitslag    $deleted = array();
1036585bf44eSChristopher Smith    $deleted[] = $INPUT->server->str('REMOTE_USER');
103773012efdSChristopher Smith    if($auth->triggerUserMod('delete', array($deleted))) {
10382a7abf2dSChristopher Smith        // force and immediate logout including removing the sticky cookie
10392a7abf2dSChristopher Smith        auth_logoff();
10402a7abf2dSChristopher Smith        return true;
10412a7abf2dSChristopher Smith    }
10422a7abf2dSChristopher Smith
10432a7abf2dSChristopher Smith    return false;
10442a7abf2dSChristopher Smith}
10452a7abf2dSChristopher Smith
10468b06d178Schris/**
10478b06d178Schris * Send a  new password
10488b06d178Schris *
10491d5856cfSAndreas Gohr * This function handles both phases of the password reset:
10501d5856cfSAndreas Gohr *
10511d5856cfSAndreas Gohr *   - handling the first request of password reset
10521d5856cfSAndreas Gohr *   - validating the password reset auth token
10531d5856cfSAndreas Gohr *
10548b06d178Schris * @author Benoit Chesneau <benoit@bchesneau.info>
10558b06d178Schris * @author Chris Smith <chris@jalakai.co.uk>
10561d5856cfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
10578b06d178Schris *
10588b06d178Schris * @return bool true on success, false on any error
10598b06d178Schris */
10608b06d178Schrisfunction act_resendpwd() {
10618b06d178Schris    global $lang;
10628b06d178Schris    global $conf;
1063e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
1064cd52f92dSchris    global $auth;
1065bcc94b2cSAndreas Gohr    /* @var Input $INPUT */
1066bcc94b2cSAndreas Gohr    global $INPUT;
10678b06d178Schris
10683a48618aSAnika Henke    if(!actionOK('resendpwd')) {
10698b06d178Schris        msg($lang['resendna'], -1);
10708b06d178Schris        return false;
10718b06d178Schris    }
10728b06d178Schris
1073bcc94b2cSAndreas Gohr    $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth'));
10748b06d178Schris
10751d5856cfSAndreas Gohr    if($token) {
1076cc204bbdSAndreas Gohr        // we're in token phase - get user info from token
10771d5856cfSAndreas Gohr
10781d5856cfSAndreas Gohr        $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth';
107979e79377SAndreas Gohr        if(!file_exists($tfile)) {
10801d5856cfSAndreas Gohr            msg($lang['resendpwdbadauth'], -1);
1081bcc94b2cSAndreas Gohr            $INPUT->remove('pwauth');
10821d5856cfSAndreas Gohr            return false;
10831d5856cfSAndreas Gohr        }
10848a9735e3SAndreas Gohr        // token is only valid for 3 days
10858a9735e3SAndreas Gohr        if((time() - filemtime($tfile)) > (3 * 60 * 60 * 24)) {
10868a9735e3SAndreas Gohr            msg($lang['resendpwdbadauth'], -1);
1087bcc94b2cSAndreas Gohr            $INPUT->remove('pwauth');
10881d5856cfSAndreas Gohr            @unlink($tfile);
10898a9735e3SAndreas Gohr            return false;
10908a9735e3SAndreas Gohr        }
10918a9735e3SAndreas Gohr
10928b06d178Schris        $user     = io_readfile($tfile);
10932dc9e900SChristopher Smith        $userinfo = $auth->getUserData($user, $requireGroups = false);
10948b06d178Schris        if(!$userinfo['mail']) {
10958b06d178Schris            msg($lang['resendpwdnouser'], -1);
10968b06d178Schris            return false;
10978b06d178Schris        }
10988b06d178Schris
1099cc204bbdSAndreas Gohr        if(!$conf['autopasswd']) { // we let the user choose a password
1100bcc94b2cSAndreas Gohr            $pass = $INPUT->str('pass');
1101bcc94b2cSAndreas Gohr
1102cc204bbdSAndreas Gohr            // password given correctly?
1103bcc94b2cSAndreas Gohr            if(!$pass) return false;
1104bcc94b2cSAndreas Gohr            if($pass != $INPUT->str('passchk')) {
1105451e1b4dSAndreas Gohr                msg($lang['regbadpass'], -1);
1106cc204bbdSAndreas Gohr                return false;
1107cc204bbdSAndreas Gohr            }
1108cc204bbdSAndreas Gohr
1109bcc94b2cSAndreas Gohr            // change it
1110cc204bbdSAndreas Gohr            if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) {
1111db9faf02SPatrick Brown                msg($lang['proffail'], -1);
1112cc204bbdSAndreas Gohr                return false;
1113cc204bbdSAndreas Gohr            }
1114cc204bbdSAndreas Gohr
1115cc204bbdSAndreas Gohr        } else { // autogenerate the password and send by mail
1116cc204bbdSAndreas Gohr
11178a285f7fSAndreas Gohr            $pass = auth_pwgen($user);
11187d3c8d42SGabriel Birke            if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) {
1119db9faf02SPatrick Brown                msg($lang['proffail'], -1);
11208b06d178Schris                return false;
11218b06d178Schris            }
11228b06d178Schris
11238b06d178Schris            if(auth_sendPassword($user, $pass)) {
11248b06d178Schris                msg($lang['resendpwdsuccess'], 1);
11258b06d178Schris            } else {
11268b06d178Schris                msg($lang['regmailfail'], -1);
11278b06d178Schris            }
1128cc204bbdSAndreas Gohr        }
1129cc204bbdSAndreas Gohr
1130cc204bbdSAndreas Gohr        @unlink($tfile);
11318b06d178Schris        return true;
11321d5856cfSAndreas Gohr
11331d5856cfSAndreas Gohr    } else {
11341d5856cfSAndreas Gohr        // we're in request phase
11351d5856cfSAndreas Gohr
1136bcc94b2cSAndreas Gohr        if(!$INPUT->post->bool('save')) return false;
11371d5856cfSAndreas Gohr
1138bcc94b2cSAndreas Gohr        if(!$INPUT->post->str('login')) {
11391d5856cfSAndreas Gohr            msg($lang['resendpwdmissing'], -1);
11401d5856cfSAndreas Gohr            return false;
11411d5856cfSAndreas Gohr        } else {
1142bcc94b2cSAndreas Gohr            $user = trim($auth->cleanUser($INPUT->post->str('login')));
11431d5856cfSAndreas Gohr        }
11441d5856cfSAndreas Gohr
11452dc9e900SChristopher Smith        $userinfo = $auth->getUserData($user, $requireGroups = false);
11461d5856cfSAndreas Gohr        if(!$userinfo['mail']) {
11471d5856cfSAndreas Gohr            msg($lang['resendpwdnouser'], -1);
11481d5856cfSAndreas Gohr            return false;
11491d5856cfSAndreas Gohr        }
11501d5856cfSAndreas Gohr
11511d5856cfSAndreas Gohr        // generate auth token
1152483b6238SMichael Hamann        $token = md5(auth_randombytes(16)); // random secret
11531d5856cfSAndreas Gohr        $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth';
11541d5856cfSAndreas Gohr        $url   = wl('', array('do'=> 'resendpwd', 'pwauth'=> $token), true, '&');
11551d5856cfSAndreas Gohr
11561d5856cfSAndreas Gohr        io_saveFile($tfile, $user);
11571d5856cfSAndreas Gohr
11581d5856cfSAndreas Gohr        $text = rawLocale('pwconfirm');
1159d7169d19SAndreas Gohr        $trep = array(
1160d7169d19SAndreas Gohr            'FULLNAME' => $userinfo['name'],
1161d7169d19SAndreas Gohr            'LOGIN'    => $user,
1162d7169d19SAndreas Gohr            'CONFIRM'  => $url
1163d7169d19SAndreas Gohr        );
11641d5856cfSAndreas Gohr
1165d7169d19SAndreas Gohr        $mail = new Mailer();
1166d7169d19SAndreas Gohr        $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>');
1167d7169d19SAndreas Gohr        $mail->subject($lang['regpwmail']);
1168d7169d19SAndreas Gohr        $mail->setBody($text, $trep);
1169d7169d19SAndreas Gohr        if($mail->send()) {
11701d5856cfSAndreas Gohr            msg($lang['resendpwdconfirm'], 1);
11711d5856cfSAndreas Gohr        } else {
11721d5856cfSAndreas Gohr            msg($lang['regmailfail'], -1);
11731d5856cfSAndreas Gohr        }
11741d5856cfSAndreas Gohr        return true;
11751d5856cfSAndreas Gohr    }
1176ab5d26daSAndreas Gohr    // never reached
11778b06d178Schris}
11788b06d178Schris
11798b06d178Schris/**
1180b0855b11Sandi * Encrypts a password using the given method and salt
1181b0855b11Sandi *
1182b0855b11Sandi * If the selected method needs a salt and none was given, a random one
1183b0855b11Sandi * is chosen.
1184b0855b11Sandi *
1185b0855b11Sandi * @author  Andreas Gohr <andi@splitbrain.org>
118642ea7f44SGerrit Uitslag *
1187ab5d26daSAndreas Gohr * @param string $clear The clear text password
1188ab5d26daSAndreas Gohr * @param string $method The hashing method
1189ab5d26daSAndreas Gohr * @param string $salt A salt, null for random
1190b0855b11Sandi * @return  string  The crypted password
1191b0855b11Sandi */
1192577c7cdaSAndreas Gohrfunction auth_cryptPassword($clear, $method = '', $salt = null) {
1193b0855b11Sandi    global $conf;
1194b0855b11Sandi    if(empty($method)) $method = $conf['passcrypt'];
119510a76f6fSfrank
11963a0a2d05SAndreas Gohr    $pass = new PassHash();
11973a0a2d05SAndreas Gohr    $call = 'hash_'.$method;
1198b0855b11Sandi
11993a0a2d05SAndreas Gohr    if(!method_exists($pass, $call)) {
1200b0855b11Sandi        msg("Unsupported crypt method $method", -1);
12013a0a2d05SAndreas Gohr        return false;
1202b0855b11Sandi    }
12033a0a2d05SAndreas Gohr
12043a0a2d05SAndreas Gohr    return $pass->$call($clear, $salt);
1205b0855b11Sandi}
1206b0855b11Sandi
1207b0855b11Sandi/**
1208b0855b11Sandi * Verifies a cleartext password against a crypted hash
1209b0855b11Sandi *
1210b0855b11Sandi * @author Andreas Gohr <andi@splitbrain.org>
121142ea7f44SGerrit Uitslag *
1212ab5d26daSAndreas Gohr * @param  string $clear The clear text password
1213ab5d26daSAndreas Gohr * @param  string $crypt The hash to compare with
1214ab5d26daSAndreas Gohr * @return bool true if both match
1215b0855b11Sandi */
1216b0855b11Sandifunction auth_verifyPassword($clear, $crypt) {
12173a0a2d05SAndreas Gohr    $pass = new PassHash();
12183a0a2d05SAndreas Gohr    return $pass->verify_hash($clear, $crypt);
1219b0855b11Sandi}
1220340756e4Sandi
1221a0b5b007SChris Smith/**
1222a0b5b007SChris Smith * Set the authentication cookie and add user identification data to the session
1223a0b5b007SChris Smith *
1224a0b5b007SChris Smith * @param string  $user       username
1225a0b5b007SChris Smith * @param string  $pass       encrypted password
1226a0b5b007SChris Smith * @param bool    $sticky     whether or not the cookie will last beyond the session
1227ab5d26daSAndreas Gohr * @return bool
1228a0b5b007SChris Smith */
1229a0b5b007SChris Smithfunction auth_setCookie($user, $pass, $sticky) {
1230a0b5b007SChris Smith    global $conf;
1231e1d9dcc8SAndreas Gohr    /* @var AuthPlugin $auth */
1232a0b5b007SChris Smith    global $auth;
123379d00841SOliver Geisen    global $USERINFO;
1234a0b5b007SChris Smith
1235beca106aSAdrian Lang    if(!$auth) return false;
1236a0b5b007SChris Smith    $USERINFO = $auth->getUserData($user);
1237a0b5b007SChris Smith
1238a0b5b007SChris Smith    // set cookie
1239645c0a36SAndreas Gohr    $cookie    = base64_encode($user).'|'.((int) $sticky).'|'.base64_encode($pass);
124073ab87deSGabriel Birke    $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
1241c66972f2SAdrian Lang    $time      = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year
124273ab87deSGabriel Birke    setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
124355a71a16SGerrit Uitslag
1244a0b5b007SChris Smith    // set session
1245a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['user'] = $user;
1246234ce57eSAndreas Gohr    $_SESSION[DOKU_COOKIE]['auth']['pass'] = sha1($pass);
1247a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['buid'] = auth_browseruid();
1248a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO;
1249a0b5b007SChris Smith    $_SESSION[DOKU_COOKIE]['auth']['time'] = time();
1250ab5d26daSAndreas Gohr
1251ab5d26daSAndreas Gohr    return true;
1252a0b5b007SChris Smith}
1253a0b5b007SChris Smith
1254645c0a36SAndreas Gohr/**
1255645c0a36SAndreas Gohr * Returns the user, (encrypted) password and sticky bit from cookie
1256645c0a36SAndreas Gohr *
1257645c0a36SAndreas Gohr * @returns array
1258645c0a36SAndreas Gohr */
1259645c0a36SAndreas Gohrfunction auth_getCookie() {
1260c66972f2SAdrian Lang    if(!isset($_COOKIE[DOKU_COOKIE])) {
1261c66972f2SAdrian Lang        return array(null, null, null);
1262c66972f2SAdrian Lang    }
1263645c0a36SAndreas Gohr    list($user, $sticky, $pass) = explode('|', $_COOKIE[DOKU_COOKIE], 3);
1264645c0a36SAndreas Gohr    $sticky = (bool) $sticky;
1265645c0a36SAndreas Gohr    $pass   = base64_decode($pass);
1266645c0a36SAndreas Gohr    $user   = base64_decode($user);
1267645c0a36SAndreas Gohr    return array($user, $sticky, $pass);
1268645c0a36SAndreas Gohr}
1269645c0a36SAndreas Gohr
1270e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 :
1271