update tests to match new is_ssl behaviour
[dokuwiki.git] / inc / auth.php
blobb3d0926ff499466e72eea2add6988adbeed13118
1 <?php
3 /**
4 * Authentication library
6 * Including this file will automatically try to login
7 * a user by calling auth_login()
9 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
10 * @author Andreas Gohr <andi@splitbrain.org>
13 use phpseclib\Crypt\AES;
14 use dokuwiki\Utf8\PhpString;
15 use dokuwiki\Extension\AuthPlugin;
16 use dokuwiki\Extension\Event;
17 use dokuwiki\Extension\PluginController;
18 use dokuwiki\PassHash;
19 use dokuwiki\Subscriptions\RegistrationSubscriptionSender;
21 /**
22 * Initialize the auth system.
24 * This function is automatically called at the end of init.php
26 * This used to be the main() of the auth.php
28 * @todo backend loading maybe should be handled by the class autoloader
29 * @todo maybe split into multiple functions at the XXX marked positions
30 * @triggers AUTH_LOGIN_CHECK
31 * @return bool
33 function auth_setup()
35 global $conf;
36 /* @var AuthPlugin $auth */
37 global $auth;
38 /* @var Input $INPUT */
39 global $INPUT;
40 global $AUTH_ACL;
41 global $lang;
42 /* @var PluginController $plugin_controller */
43 global $plugin_controller;
44 $AUTH_ACL = [];
46 if (!$conf['useacl']) return false;
48 // try to load auth backend from plugins
49 foreach ($plugin_controller->getList('auth') as $plugin) {
50 if ($conf['authtype'] === $plugin) {
51 $auth = $plugin_controller->load('auth', $plugin);
52 break;
56 if (!$auth instanceof AuthPlugin) {
57 msg($lang['authtempfail'], -1);
58 return false;
61 if ($auth->success == false) {
62 // degrade to unauthenticated user
63 $auth = null;
64 auth_logoff();
65 msg($lang['authtempfail'], -1);
66 return false;
69 // do the login either by cookie or provided credentials XXX
70 $INPUT->set('http_credentials', false);
71 if (!$conf['rememberme']) $INPUT->set('r', false);
73 // Populate Basic Auth user/password from Authorization header
74 // Note: with FastCGI, data is in REDIRECT_HTTP_AUTHORIZATION instead of HTTP_AUTHORIZATION
75 $header = $INPUT->server->str('HTTP_AUTHORIZATION') ?: $INPUT->server->str('REDIRECT_HTTP_AUTHORIZATION');
76 if (preg_match('~^Basic ([a-z\d/+]*={0,2})$~i', $header, $matches)) {
77 $userpass = explode(':', base64_decode($matches[1]));
78 [$_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']] = $userpass;
81 // if no credentials were given try to use HTTP auth (for SSO)
82 if (!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($INPUT->server->str('PHP_AUTH_USER'))) {
83 $INPUT->set('u', $INPUT->server->str('PHP_AUTH_USER'));
84 $INPUT->set('p', $INPUT->server->str('PHP_AUTH_PW'));
85 $INPUT->set('http_credentials', true);
88 // apply cleaning (auth specific user names, remove control chars)
89 if (true === $auth->success) {
90 $INPUT->set('u', $auth->cleanUser(stripctl($INPUT->str('u'))));
91 $INPUT->set('p', stripctl($INPUT->str('p')));
94 $ok = null;
95 if ($auth instanceof AuthPlugin && $auth->canDo('external')) {
96 $ok = $auth->trustExternal($INPUT->str('u'), $INPUT->str('p'), $INPUT->bool('r'));
99 if ($ok === null) {
100 // external trust mechanism not in place, or returns no result,
101 // then attempt auth_login
102 $evdata = [
103 'user' => $INPUT->str('u'),
104 'password' => $INPUT->str('p'),
105 'sticky' => $INPUT->bool('r'),
106 'silent' => $INPUT->bool('http_credentials')
108 Event::createAndTrigger('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper');
111 //load ACL into a global array XXX
112 $AUTH_ACL = auth_loadACL();
114 return true;
118 * Loads the ACL setup and handle user wildcards
120 * @author Andreas Gohr <andi@splitbrain.org>
122 * @return array
124 function auth_loadACL()
126 global $config_cascade;
127 global $USERINFO;
128 /* @var Input $INPUT */
129 global $INPUT;
131 if (!is_readable($config_cascade['acl']['default'])) return [];
133 $acl = file($config_cascade['acl']['default']);
135 $out = [];
136 foreach ($acl as $line) {
137 $line = trim($line);
138 if (empty($line) || ($line[0] == '#')) continue; // skip blank lines & comments
139 [$id, $rest] = preg_split('/[ \t]+/', $line, 2);
141 // substitute user wildcard first (its 1:1)
142 if (strstr($line, '%USER%')) {
143 // if user is not logged in, this ACL line is meaningless - skip it
144 if (!$INPUT->server->has('REMOTE_USER')) continue;
146 $id = str_replace('%USER%', cleanID($INPUT->server->str('REMOTE_USER')), $id);
147 $rest = str_replace('%USER%', auth_nameencode($INPUT->server->str('REMOTE_USER')), $rest);
150 // substitute group wildcard (its 1:m)
151 if (strstr($line, '%GROUP%')) {
152 // if user is not logged in, grps is empty, no output will be added (i.e. skipped)
153 if (isset($USERINFO['grps'])) {
154 foreach ((array) $USERINFO['grps'] as $grp) {
155 $nid = str_replace('%GROUP%', cleanID($grp), $id);
156 $nrest = str_replace('%GROUP%', '@' . auth_nameencode($grp), $rest);
157 $out[] = "$nid\t$nrest";
160 } else {
161 $out[] = "$id\t$rest";
165 return $out;
169 * Event hook callback for AUTH_LOGIN_CHECK
171 * @param array $evdata
172 * @return bool
173 * @throws Exception
175 function auth_login_wrapper($evdata)
177 return auth_login(
178 $evdata['user'],
179 $evdata['password'],
180 $evdata['sticky'],
181 $evdata['silent']
186 * This tries to login the user based on the sent auth credentials
188 * The authentication works like this: if a username was given
189 * a new login is assumed and user/password are checked. If they
190 * are correct the password is encrypted with blowfish and stored
191 * together with the username in a cookie - the same info is stored
192 * in the session, too. Additonally a browserID is stored in the
193 * session.
195 * If no username was given the cookie is checked: if the username,
196 * crypted password and browserID match between session and cookie
197 * no further testing is done and the user is accepted
199 * If a cookie was found but no session info was availabe the
200 * blowfish encrypted password from the cookie is decrypted and
201 * together with username rechecked by calling this function again.
203 * On a successful login $_SERVER[REMOTE_USER] and $USERINFO
204 * are set.
206 * @param string $user Username
207 * @param string $pass Cleartext Password
208 * @param bool $sticky Cookie should not expire
209 * @param bool $silent Don't show error on bad auth
210 * @return bool true on successful auth
211 * @throws Exception
213 * @author Andreas Gohr <andi@splitbrain.org>
215 function auth_login($user, $pass, $sticky = false, $silent = false)
217 global $USERINFO;
218 global $conf;
219 global $lang;
220 /* @var AuthPlugin $auth */
221 global $auth;
222 /* @var Input $INPUT */
223 global $INPUT;
225 if (!$auth instanceof AuthPlugin) return false;
227 if (!empty($user)) {
228 //usual login
229 if (!empty($pass) && $auth->checkPass($user, $pass)) {
230 // make logininfo globally available
231 $INPUT->server->set('REMOTE_USER', $user);
232 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
233 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
234 return true;
235 } else {
236 //invalid credentials - log off
237 if (!$silent) {
238 http_status(403, 'Login failed');
239 msg($lang['badlogin'], -1);
241 auth_logoff();
242 return false;
244 } else {
245 // read cookie information
246 [$user, $sticky, $pass] = auth_getCookie();
247 if ($user && $pass) {
248 // we got a cookie - see if we can trust it
250 // get session info
251 if (isset($_SESSION[DOKU_COOKIE])) {
252 $session = $_SESSION[DOKU_COOKIE]['auth'];
253 if (
254 isset($session) &&
255 $auth->useSessionCache($user) &&
256 ($session['time'] >= time() - $conf['auth_security_timeout']) &&
257 ($session['user'] == $user) &&
258 ($session['pass'] == sha1($pass)) && //still crypted
259 ($session['buid'] == auth_browseruid())
261 // he has session, cookie and browser right - let him in
262 $INPUT->server->set('REMOTE_USER', $user);
263 $USERINFO = $session['info']; //FIXME move all references to session
264 return true;
267 // no we don't trust it yet - recheck pass but silent
268 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
269 $pass = auth_decrypt($pass, $secret);
270 return auth_login($user, $pass, $sticky, true);
273 //just to be sure
274 auth_logoff(true);
275 return false;
279 * Builds a pseudo UID from browser and IP data
281 * This is neither unique nor unfakable - still it adds some
282 * security. Using the first part of the IP makes sure
283 * proxy farms like AOLs are still okay.
285 * @author Andreas Gohr <andi@splitbrain.org>
287 * @return string a SHA256 sum of various browser headers
289 function auth_browseruid()
291 /* @var Input $INPUT */
292 global $INPUT;
294 $ip = clientIP(true);
295 // convert IP string to packed binary representation
296 $pip = inet_pton($ip);
298 $uid = implode("\n", [
299 $INPUT->server->str('HTTP_USER_AGENT'),
300 $INPUT->server->str('HTTP_ACCEPT_LANGUAGE'),
301 substr($pip, 0, strlen($pip) / 2), // use half of the IP address (works for both IPv4 and IPv6)
303 return hash('sha256', $uid);
307 * Creates a random key to encrypt the password in cookies
309 * This function tries to read the password for encrypting
310 * cookies from $conf['metadir'].'/_htcookiesalt'
311 * if no such file is found a random key is created and
312 * and stored in this file.
314 * @param bool $addsession if true, the sessionid is added to the salt
315 * @param bool $secure if security is more important than keeping the old value
316 * @return string
317 * @throws Exception
319 * @author Andreas Gohr <andi@splitbrain.org>
321 function auth_cookiesalt($addsession = false, $secure = false)
323 if (defined('SIMPLE_TEST')) {
324 return 'test';
326 global $conf;
327 $file = $conf['metadir'] . '/_htcookiesalt';
328 if ($secure || !file_exists($file)) {
329 $file = $conf['metadir'] . '/_htcookiesalt2';
331 $salt = io_readFile($file);
332 if (empty($salt)) {
333 $salt = bin2hex(auth_randombytes(64));
334 io_saveFile($file, $salt);
336 if ($addsession) {
337 $salt .= session_id();
339 return $salt;
343 * Return cryptographically secure random bytes.
345 * @param int $length number of bytes
346 * @return string cryptographically secure random bytes
347 * @throws Exception
349 * @author Niklas Keller <me@kelunik.com>
351 function auth_randombytes($length)
353 return random_bytes($length);
357 * Cryptographically secure random number generator.
359 * @param int $min
360 * @param int $max
361 * @return int
362 * @throws Exception
364 * @author Niklas Keller <me@kelunik.com>
366 function auth_random($min, $max)
368 return random_int($min, $max);
372 * Encrypt data using the given secret using AES
374 * The mode is CBC with a random initialization vector, the key is derived
375 * using pbkdf2.
377 * @param string $data The data that shall be encrypted
378 * @param string $secret The secret/password that shall be used
379 * @return string The ciphertext
380 * @throws Exception
382 function auth_encrypt($data, $secret)
384 $iv = auth_randombytes(16);
385 $cipher = new AES();
386 $cipher->setPassword($secret);
389 this uses the encrypted IV as IV as suggested in
390 http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf, Appendix C
391 for unique but necessarily random IVs. The resulting ciphertext is
392 compatible to ciphertext that was created using a "normal" IV.
394 return $cipher->encrypt($iv . $data);
398 * Decrypt the given AES ciphertext
400 * The mode is CBC, the key is derived using pbkdf2
402 * @param string $ciphertext The encrypted data
403 * @param string $secret The secret/password that shall be used
404 * @return string The decrypted data
406 function auth_decrypt($ciphertext, $secret)
408 $iv = substr($ciphertext, 0, 16);
409 $cipher = new AES();
410 $cipher->setPassword($secret);
411 $cipher->setIV($iv);
413 return $cipher->decrypt(substr($ciphertext, 16));
417 * Log out the current user
419 * This clears all authentication data and thus log the user
420 * off. It also clears session data.
422 * @author Andreas Gohr <andi@splitbrain.org>
424 * @param bool $keepbc - when true, the breadcrumb data is not cleared
426 function auth_logoff($keepbc = false)
428 global $conf;
429 global $USERINFO;
430 /* @var AuthPlugin $auth */
431 global $auth;
432 /* @var Input $INPUT */
433 global $INPUT;
435 // make sure the session is writable (it usually is)
436 @session_start();
438 if (isset($_SESSION[DOKU_COOKIE]['auth']['user']))
439 unset($_SESSION[DOKU_COOKIE]['auth']['user']);
440 if (isset($_SESSION[DOKU_COOKIE]['auth']['pass']))
441 unset($_SESSION[DOKU_COOKIE]['auth']['pass']);
442 if (isset($_SESSION[DOKU_COOKIE]['auth']['info']))
443 unset($_SESSION[DOKU_COOKIE]['auth']['info']);
444 if (!$keepbc && isset($_SESSION[DOKU_COOKIE]['bc']))
445 unset($_SESSION[DOKU_COOKIE]['bc']);
446 $INPUT->server->remove('REMOTE_USER');
447 $USERINFO = null; //FIXME
449 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
450 setcookie(DOKU_COOKIE, '', [
451 'expires' => time() - 600000,
452 'path' => $cookieDir,
453 'secure' => ($conf['securecookie'] && is_ssl()),
454 'httponly' => true,
455 'samesite' => $conf['samesitecookie'] ?: null, // null means browser default
458 if ($auth instanceof AuthPlugin) {
459 $auth->logOff();
464 * Check if a user is a manager
466 * Should usually be called without any parameters to check the current
467 * user.
469 * The info is available through $INFO['ismanager'], too
471 * @param string $user Username
472 * @param array $groups List of groups the user is in
473 * @param bool $adminonly when true checks if user is admin
474 * @param bool $recache set to true to refresh the cache
475 * @return bool
476 * @see auth_isadmin
478 * @author Andreas Gohr <andi@splitbrain.org>
480 function auth_ismanager($user = null, $groups = null, $adminonly = false, $recache = false)
482 global $conf;
483 global $USERINFO;
484 /* @var AuthPlugin $auth */
485 global $auth;
486 /* @var Input $INPUT */
487 global $INPUT;
490 if (!$auth instanceof AuthPlugin) return false;
491 if (is_null($user)) {
492 if (!$INPUT->server->has('REMOTE_USER')) {
493 return false;
494 } else {
495 $user = $INPUT->server->str('REMOTE_USER');
498 if (is_null($groups)) {
499 // checking the logged in user, or another one?
500 if ($USERINFO && $user === $INPUT->server->str('REMOTE_USER')) {
501 $groups = (array) $USERINFO['grps'];
502 } else {
503 $groups = $auth->getUserData($user);
504 $groups = $groups ? $groups['grps'] : [];
508 // prefer cached result
509 static $cache = [];
510 $cachekey = serialize([$user, $adminonly, $groups]);
511 if (!isset($cache[$cachekey]) || $recache) {
512 // check superuser match
513 $ok = auth_isMember($conf['superuser'], $user, $groups);
515 // check managers
516 if (!$ok && !$adminonly) {
517 $ok = auth_isMember($conf['manager'], $user, $groups);
520 $cache[$cachekey] = $ok;
523 return $cache[$cachekey];
527 * Check if a user is admin
529 * Alias to auth_ismanager with adminonly=true
531 * The info is available through $INFO['isadmin'], too
533 * @param string $user Username
534 * @param array $groups List of groups the user is in
535 * @param bool $recache set to true to refresh the cache
536 * @return bool
537 * @author Andreas Gohr <andi@splitbrain.org>
538 * @see auth_ismanager()
541 function auth_isadmin($user = null, $groups = null, $recache = false)
543 return auth_ismanager($user, $groups, true, $recache);
547 * Match a user and his groups against a comma separated list of
548 * users and groups to determine membership status
550 * Note: all input should NOT be nameencoded.
552 * @param string $memberlist commaseparated list of allowed users and groups
553 * @param string $user user to match against
554 * @param array $groups groups the user is member of
555 * @return bool true for membership acknowledged
557 function auth_isMember($memberlist, $user, array $groups)
559 /* @var AuthPlugin $auth */
560 global $auth;
561 if (!$auth instanceof AuthPlugin) return false;
563 // clean user and groups
564 if (!$auth->isCaseSensitive()) {
565 $user = PhpString::strtolower($user);
566 $groups = array_map([PhpString::class, 'strtolower'], $groups);
568 $user = $auth->cleanUser($user);
569 $groups = array_map([$auth, 'cleanGroup'], $groups);
571 // extract the memberlist
572 $members = explode(',', $memberlist);
573 $members = array_map('trim', $members);
574 $members = array_unique($members);
575 $members = array_filter($members);
577 // compare cleaned values
578 foreach ($members as $member) {
579 if ($member == '@ALL') return true;
580 if (!$auth->isCaseSensitive()) $member = PhpString::strtolower($member);
581 if ($member[0] == '@') {
582 $member = $auth->cleanGroup(substr($member, 1));
583 if (in_array($member, $groups)) return true;
584 } else {
585 $member = $auth->cleanUser($member);
586 if ($member == $user) return true;
590 // still here? not a member!
591 return false;
595 * Convinience function for auth_aclcheck()
597 * This checks the permissions for the current user
599 * @author Andreas Gohr <andi@splitbrain.org>
601 * @param string $id page ID (needs to be resolved and cleaned)
602 * @return int permission level
604 function auth_quickaclcheck($id)
606 global $conf;
607 global $USERINFO;
608 /* @var Input $INPUT */
609 global $INPUT;
610 # if no ACL is used always return upload rights
611 if (!$conf['useacl']) return AUTH_UPLOAD;
612 return auth_aclcheck($id, $INPUT->server->str('REMOTE_USER'), is_array($USERINFO) ? $USERINFO['grps'] : []);
616 * Returns the maximum rights a user has for the given ID or its namespace
618 * @author Andreas Gohr <andi@splitbrain.org>
620 * @triggers AUTH_ACL_CHECK
621 * @param string $id page ID (needs to be resolved and cleaned)
622 * @param string $user Username
623 * @param array|null $groups Array of groups the user is in
624 * @return int permission level
626 function auth_aclcheck($id, $user, $groups)
628 $data = [
629 'id' => $id ?? '',
630 'user' => $user,
631 'groups' => $groups
634 return Event::createAndTrigger('AUTH_ACL_CHECK', $data, 'auth_aclcheck_cb');
638 * default ACL check method
640 * DO NOT CALL DIRECTLY, use auth_aclcheck() instead
642 * @author Andreas Gohr <andi@splitbrain.org>
644 * @param array $data event data
645 * @return int permission level
647 function auth_aclcheck_cb($data)
649 $id =& $data['id'];
650 $user =& $data['user'];
651 $groups =& $data['groups'];
653 global $conf;
654 global $AUTH_ACL;
655 /* @var AuthPlugin $auth */
656 global $auth;
658 // if no ACL is used always return upload rights
659 if (!$conf['useacl']) return AUTH_UPLOAD;
660 if (!$auth instanceof AuthPlugin) return AUTH_NONE;
661 if (!is_array($AUTH_ACL)) return AUTH_NONE;
663 //make sure groups is an array
664 if (!is_array($groups)) $groups = [];
666 //if user is superuser or in superusergroup return 255 (acl_admin)
667 if (auth_isadmin($user, $groups)) {
668 return AUTH_ADMIN;
671 if (!$auth->isCaseSensitive()) {
672 $user = PhpString::strtolower($user);
673 $groups = array_map([PhpString::class, 'strtolower'], $groups);
675 $user = auth_nameencode($auth->cleanUser($user));
676 $groups = array_map([$auth, 'cleanGroup'], $groups);
678 //prepend groups with @ and nameencode
679 foreach ($groups as &$group) {
680 $group = '@' . auth_nameencode($group);
683 $ns = getNS($id);
684 $perm = -1;
686 //add ALL group
687 $groups[] = '@ALL';
689 //add User
690 if ($user) $groups[] = $user;
692 //check exact match first
693 $matches = preg_grep('/^' . preg_quote($id, '/') . '[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL);
694 if (count($matches)) {
695 foreach ($matches as $match) {
696 $match = preg_replace('/#.*$/', '', $match); //ignore comments
697 $acl = preg_split('/[ \t]+/', $match);
698 if (!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
699 $acl[1] = PhpString::strtolower($acl[1]);
701 if (!in_array($acl[1], $groups)) {
702 continue;
704 if ($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL!
705 if ($acl[2] > $perm) {
706 $perm = $acl[2];
709 if ($perm > -1) {
710 //we had a match - return it
711 return (int) $perm;
715 //still here? do the namespace checks
716 if ($ns) {
717 $path = $ns . ':*';
718 } else {
719 $path = '*'; //root document
722 do {
723 $matches = preg_grep('/^' . preg_quote($path, '/') . '[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL);
724 if (count($matches)) {
725 foreach ($matches as $match) {
726 $match = preg_replace('/#.*$/', '', $match); //ignore comments
727 $acl = preg_split('/[ \t]+/', $match);
728 if (!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
729 $acl[1] = PhpString::strtolower($acl[1]);
731 if (!in_array($acl[1], $groups)) {
732 continue;
734 if ($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL!
735 if ($acl[2] > $perm) {
736 $perm = $acl[2];
739 //we had a match - return it
740 if ($perm != -1) {
741 return (int) $perm;
744 //get next higher namespace
745 $ns = getNS($ns);
747 if ($path != '*') {
748 $path = $ns . ':*';
749 if ($path == ':*') $path = '*';
750 } else {
751 //we did this already
752 //looks like there is something wrong with the ACL
753 //break here
754 msg('No ACL setup yet! Denying access to everyone.');
755 return AUTH_NONE;
757 } while (1); //this should never loop endless
758 return AUTH_NONE;
762 * Encode ASCII special chars
764 * Some auth backends allow special chars in their user and groupnames
765 * The special chars are encoded with this function. Only ASCII chars
766 * are encoded UTF-8 multibyte are left as is (different from usual
767 * urlencoding!).
769 * Decoding can be done with rawurldecode
771 * @author Andreas Gohr <gohr@cosmocode.de>
772 * @see rawurldecode()
774 * @param string $name
775 * @param bool $skip_group
776 * @return string
778 function auth_nameencode($name, $skip_group = false)
780 global $cache_authname;
781 $cache =& $cache_authname;
782 $name = (string) $name;
784 // never encode wildcard FS#1955
785 if ($name == '%USER%') return $name;
786 if ($name == '%GROUP%') return $name;
788 if (!isset($cache[$name][$skip_group])) {
789 if ($skip_group && $name[0] == '@') {
790 $cache[$name][$skip_group] = '@' . preg_replace_callback(
791 '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/',
792 'auth_nameencode_callback',
793 substr($name, 1)
795 } else {
796 $cache[$name][$skip_group] = preg_replace_callback(
797 '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/',
798 'auth_nameencode_callback',
799 $name
804 return $cache[$name][$skip_group];
808 * callback encodes the matches
810 * @param array $matches first complete match, next matching subpatterms
811 * @return string
813 function auth_nameencode_callback($matches)
815 return '%' . dechex(ord(substr($matches[1], -1)));
819 * Create a pronouncable password
821 * The $foruser variable might be used by plugins to run additional password
822 * policy checks, but is not used by the default implementation
824 * @param string $foruser username for which the password is generated
825 * @return string pronouncable password
826 * @throws Exception
828 * @link http://www.phpbuilder.com/annotate/message.php3?id=1014451
829 * @triggers AUTH_PASSWORD_GENERATE
831 * @author Andreas Gohr <andi@splitbrain.org>
833 function auth_pwgen($foruser = '')
835 $data = [
836 'password' => '',
837 'foruser' => $foruser
840 $evt = new Event('AUTH_PASSWORD_GENERATE', $data);
841 if ($evt->advise_before(true)) {
842 $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones
843 $v = 'aeiou'; //vowels
844 $a = $c . $v; //both
845 $s = '!$%&?+*~#-_:.;,'; // specials
847 //use thre syllables...
848 for ($i = 0; $i < 3; $i++) {
849 $data['password'] .= $c[auth_random(0, strlen($c) - 1)];
850 $data['password'] .= $v[auth_random(0, strlen($v) - 1)];
851 $data['password'] .= $a[auth_random(0, strlen($a) - 1)];
853 //... and add a nice number and special
854 $data['password'] .= $s[auth_random(0, strlen($s) - 1)] . auth_random(10, 99);
856 $evt->advise_after();
858 return $data['password'];
862 * Sends a password to the given user
864 * @author Andreas Gohr <andi@splitbrain.org>
866 * @param string $user Login name of the user
867 * @param string $password The new password in clear text
868 * @return bool true on success
870 function auth_sendPassword($user, $password)
872 global $lang;
873 /* @var AuthPlugin $auth */
874 global $auth;
875 if (!$auth instanceof AuthPlugin) return false;
877 $user = $auth->cleanUser($user);
878 $userinfo = $auth->getUserData($user, false);
880 if (!$userinfo['mail']) return false;
882 $text = rawLocale('password');
883 $trep = [
884 'FULLNAME' => $userinfo['name'],
885 'LOGIN' => $user,
886 'PASSWORD' => $password
889 $mail = new Mailer();
890 $mail->to($mail->getCleanName($userinfo['name']) . ' <' . $userinfo['mail'] . '>');
891 $mail->subject($lang['regpwmail']);
892 $mail->setBody($text, $trep);
893 return $mail->send();
897 * Register a new user
899 * This registers a new user - Data is read directly from $_POST
901 * @return bool true on success, false on any error
902 * @throws Exception
904 * @author Andreas Gohr <andi@splitbrain.org>
906 function register()
908 global $lang;
909 global $conf;
910 /* @var AuthPlugin $auth */
911 global $auth;
912 global $INPUT;
914 if (!$INPUT->post->bool('save')) return false;
915 if (!actionOK('register')) return false;
917 // gather input
918 $login = trim($auth->cleanUser($INPUT->post->str('login')));
919 $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname')));
920 $email = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email')));
921 $pass = $INPUT->post->str('pass');
922 $passchk = $INPUT->post->str('passchk');
924 if (empty($login) || empty($fullname) || empty($email)) {
925 msg($lang['regmissing'], -1);
926 return false;
929 if ($conf['autopasswd']) {
930 $pass = auth_pwgen($login); // automatically generate password
931 } elseif (empty($pass) || empty($passchk)) {
932 msg($lang['regmissing'], -1); // complain about missing passwords
933 return false;
934 } elseif ($pass != $passchk) {
935 msg($lang['regbadpass'], -1); // complain about misspelled passwords
936 return false;
939 //check mail
940 if (!mail_isvalid($email)) {
941 msg($lang['regbadmail'], -1);
942 return false;
945 //okay try to create the user
946 if (!$auth->triggerUserMod('create', [$login, $pass, $fullname, $email])) {
947 msg($lang['regfail'], -1);
948 return false;
951 // send notification about the new user
952 $subscription = new RegistrationSubscriptionSender();
953 $subscription->sendRegister($login, $fullname, $email);
955 // are we done?
956 if (!$conf['autopasswd']) {
957 msg($lang['regsuccess2'], 1);
958 return true;
961 // autogenerated password? then send password to user
962 if (auth_sendPassword($login, $pass)) {
963 msg($lang['regsuccess'], 1);
964 return true;
965 } else {
966 msg($lang['regmailfail'], -1);
967 return false;
972 * Update user profile
974 * @throws Exception
976 * @author Christopher Smith <chris@jalakai.co.uk>
978 function updateprofile()
980 global $conf;
981 global $lang;
982 /* @var AuthPlugin $auth */
983 global $auth;
984 /* @var Input $INPUT */
985 global $INPUT;
987 if (!$INPUT->post->bool('save')) return false;
988 if (!checkSecurityToken()) return false;
990 if (!actionOK('profile')) {
991 msg($lang['profna'], -1);
992 return false;
995 $changes = [];
996 $changes['pass'] = $INPUT->post->str('newpass');
997 $changes['name'] = $INPUT->post->str('fullname');
998 $changes['mail'] = $INPUT->post->str('email');
1000 // check misspelled passwords
1001 if ($changes['pass'] != $INPUT->post->str('passchk')) {
1002 msg($lang['regbadpass'], -1);
1003 return false;
1006 // clean fullname and email
1007 $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name']));
1008 $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail']));
1010 // no empty name and email (except the backend doesn't support them)
1011 if (
1012 (empty($changes['name']) && $auth->canDo('modName')) ||
1013 (empty($changes['mail']) && $auth->canDo('modMail'))
1015 msg($lang['profnoempty'], -1);
1016 return false;
1018 if (!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) {
1019 msg($lang['regbadmail'], -1);
1020 return false;
1023 $changes = array_filter($changes);
1025 // check for unavailable capabilities
1026 if (!$auth->canDo('modName')) unset($changes['name']);
1027 if (!$auth->canDo('modMail')) unset($changes['mail']);
1028 if (!$auth->canDo('modPass')) unset($changes['pass']);
1030 // anything to do?
1031 if ($changes === []) {
1032 msg($lang['profnochange'], -1);
1033 return false;
1036 if ($conf['profileconfirm']) {
1037 if (!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) {
1038 msg($lang['badpassconfirm'], -1);
1039 return false;
1043 if (!$auth->triggerUserMod('modify', [$INPUT->server->str('REMOTE_USER'), &$changes])) {
1044 msg($lang['proffail'], -1);
1045 return false;
1048 if (array_key_exists('pass', $changes) && $changes['pass']) {
1049 // update cookie and session with the changed data
1050 [/* user */, $sticky, /* pass */] = auth_getCookie();
1051 $pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true));
1052 auth_setCookie($INPUT->server->str('REMOTE_USER'), $pass, (bool) $sticky);
1053 } else {
1054 // make sure the session is writable
1055 @session_start();
1056 // invalidate session cache
1057 $_SESSION[DOKU_COOKIE]['auth']['time'] = 0;
1058 session_write_close();
1061 return true;
1065 * Delete the current logged-in user
1067 * @return bool true on success, false on any error
1069 function auth_deleteprofile()
1071 global $conf;
1072 global $lang;
1073 /* @var AuthPlugin $auth */
1074 global $auth;
1075 /* @var Input $INPUT */
1076 global $INPUT;
1078 if (!$INPUT->post->bool('delete')) return false;
1079 if (!checkSecurityToken()) return false;
1081 // action prevented or auth module disallows
1082 if (!actionOK('profile_delete') || !$auth->canDo('delUser')) {
1083 msg($lang['profnodelete'], -1);
1084 return false;
1087 if (!$INPUT->post->bool('confirm_delete')) {
1088 msg($lang['profconfdeletemissing'], -1);
1089 return false;
1092 if ($conf['profileconfirm']) {
1093 if (!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) {
1094 msg($lang['badpassconfirm'], -1);
1095 return false;
1099 $deleted = [];
1100 $deleted[] = $INPUT->server->str('REMOTE_USER');
1101 if ($auth->triggerUserMod('delete', [$deleted])) {
1102 // force and immediate logout including removing the sticky cookie
1103 auth_logoff();
1104 return true;
1107 return false;
1111 * Send a new password
1113 * This function handles both phases of the password reset:
1115 * - handling the first request of password reset
1116 * - validating the password reset auth token
1118 * @return bool true on success, false on any error
1119 * @throws Exception
1121 * @author Andreas Gohr <andi@splitbrain.org>
1122 * @author Benoit Chesneau <benoit@bchesneau.info>
1123 * @author Chris Smith <chris@jalakai.co.uk>
1125 function act_resendpwd()
1127 global $lang;
1128 global $conf;
1129 /* @var AuthPlugin $auth */
1130 global $auth;
1131 /* @var Input $INPUT */
1132 global $INPUT;
1134 if (!actionOK('resendpwd')) {
1135 msg($lang['resendna'], -1);
1136 return false;
1139 $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth'));
1141 if ($token) {
1142 // we're in token phase - get user info from token
1144 $tfile = $conf['cachedir'] . '/' . $token[0] . '/' . $token . '.pwauth';
1145 if (!file_exists($tfile)) {
1146 msg($lang['resendpwdbadauth'], -1);
1147 $INPUT->remove('pwauth');
1148 return false;
1150 // token is only valid for 3 days
1151 if ((time() - filemtime($tfile)) > (3 * 60 * 60 * 24)) {
1152 msg($lang['resendpwdbadauth'], -1);
1153 $INPUT->remove('pwauth');
1154 @unlink($tfile);
1155 return false;
1158 $user = io_readfile($tfile);
1159 $userinfo = $auth->getUserData($user, false);
1160 if (!$userinfo['mail']) {
1161 msg($lang['resendpwdnouser'], -1);
1162 return false;
1165 if (!$conf['autopasswd']) { // we let the user choose a password
1166 $pass = $INPUT->str('pass');
1168 // password given correctly?
1169 if (!$pass) return false;
1170 if ($pass != $INPUT->str('passchk')) {
1171 msg($lang['regbadpass'], -1);
1172 return false;
1175 // change it
1176 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
1177 msg($lang['proffail'], -1);
1178 return false;
1180 } else { // autogenerate the password and send by mail
1181 $pass = auth_pwgen($user);
1182 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
1183 msg($lang['proffail'], -1);
1184 return false;
1187 if (auth_sendPassword($user, $pass)) {
1188 msg($lang['resendpwdsuccess'], 1);
1189 } else {
1190 msg($lang['regmailfail'], -1);
1194 @unlink($tfile);
1195 return true;
1196 } else {
1197 // we're in request phase
1199 if (!$INPUT->post->bool('save')) return false;
1201 if (!$INPUT->post->str('login')) {
1202 msg($lang['resendpwdmissing'], -1);
1203 return false;
1204 } else {
1205 $user = trim($auth->cleanUser($INPUT->post->str('login')));
1208 $userinfo = $auth->getUserData($user, false);
1209 if (!$userinfo['mail']) {
1210 msg($lang['resendpwdnouser'], -1);
1211 return false;
1214 // generate auth token
1215 $token = md5(auth_randombytes(16)); // random secret
1216 $tfile = $conf['cachedir'] . '/' . $token[0] . '/' . $token . '.pwauth';
1217 $url = wl('', ['do' => 'resendpwd', 'pwauth' => $token], true, '&');
1219 io_saveFile($tfile, $user);
1221 $text = rawLocale('pwconfirm');
1222 $trep = ['FULLNAME' => $userinfo['name'], 'LOGIN' => $user, 'CONFIRM' => $url];
1224 $mail = new Mailer();
1225 $mail->to($userinfo['name'] . ' <' . $userinfo['mail'] . '>');
1226 $mail->subject($lang['regpwmail']);
1227 $mail->setBody($text, $trep);
1228 if ($mail->send()) {
1229 msg($lang['resendpwdconfirm'], 1);
1230 } else {
1231 msg($lang['regmailfail'], -1);
1233 return true;
1235 // never reached
1239 * Encrypts a password using the given method and salt
1241 * If the selected method needs a salt and none was given, a random one
1242 * is chosen.
1244 * @author Andreas Gohr <andi@splitbrain.org>
1246 * @param string $clear The clear text password
1247 * @param string $method The hashing method
1248 * @param string $salt A salt, null for random
1249 * @return string The crypted password
1251 function auth_cryptPassword($clear, $method = '', $salt = null)
1253 global $conf;
1254 if (empty($method)) $method = $conf['passcrypt'];
1256 $pass = new PassHash();
1257 $call = 'hash_' . $method;
1259 if (!method_exists($pass, $call)) {
1260 msg("Unsupported crypt method $method", -1);
1261 return false;
1264 return $pass->$call($clear, $salt);
1268 * Verifies a cleartext password against a crypted hash
1270 * @param string $clear The clear text password
1271 * @param string $crypt The hash to compare with
1272 * @return bool true if both match
1273 * @throws Exception
1275 * @author Andreas Gohr <andi@splitbrain.org>
1277 function auth_verifyPassword($clear, $crypt)
1279 $pass = new PassHash();
1280 return $pass->verify_hash($clear, $crypt);
1284 * Set the authentication cookie and add user identification data to the session
1286 * @param string $user username
1287 * @param string $pass encrypted password
1288 * @param bool $sticky whether or not the cookie will last beyond the session
1289 * @return bool
1291 function auth_setCookie($user, $pass, $sticky)
1293 global $conf;
1294 /* @var AuthPlugin $auth */
1295 global $auth;
1296 global $USERINFO;
1298 if (!$auth instanceof AuthPlugin) return false;
1299 $USERINFO = $auth->getUserData($user);
1301 // set cookie
1302 $cookie = base64_encode($user) . '|' . ((int) $sticky) . '|' . base64_encode($pass);
1303 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
1304 $time = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year
1305 setcookie(DOKU_COOKIE, $cookie, [
1306 'expires' => $time,
1307 'path' => $cookieDir,
1308 'secure' => ($conf['securecookie'] && is_ssl()),
1309 'httponly' => true,
1310 'samesite' => $conf['samesitecookie'] ?: null, // null means browser default
1313 // set session
1314 $_SESSION[DOKU_COOKIE]['auth']['user'] = $user;
1315 $_SESSION[DOKU_COOKIE]['auth']['pass'] = sha1($pass);
1316 $_SESSION[DOKU_COOKIE]['auth']['buid'] = auth_browseruid();
1317 $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO;
1318 $_SESSION[DOKU_COOKIE]['auth']['time'] = time();
1320 return true;
1324 * Returns the user, (encrypted) password and sticky bit from cookie
1326 * @returns array
1328 function auth_getCookie()
1330 if (!isset($_COOKIE[DOKU_COOKIE])) {
1331 return [null, null, null];
1333 [$user, $sticky, $pass] = sexplode('|', $_COOKIE[DOKU_COOKIE], 3, '');
1334 $sticky = (bool) $sticky;
1335 $pass = base64_decode($pass);
1336 $user = base64_decode($user);
1337 return [$user, $sticky, $pass];
1340 //Setup VIM: ex: et ts=2 :