1ed7b5f09Sandi<?php 215fae107Sandi/** 315fae107Sandi * Authentication library 415fae107Sandi * 515fae107Sandi * Including this file will automatically try to login 615fae107Sandi * a user by calling auth_login() 715fae107Sandi * 815fae107Sandi * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1015fae107Sandi */ 1115fae107Sandi 12fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.'); 131c73890cSAndreas Gohr 14ebf97c8fSAndreas Gohr// some ACL level defines 15ebf97c8fSAndreas Gohrdefine('AUTH_NONE', 0); 16ebf97c8fSAndreas Gohrdefine('AUTH_READ', 1); 17ebf97c8fSAndreas Gohrdefine('AUTH_EDIT', 2); 18ebf97c8fSAndreas Gohrdefine('AUTH_CREATE', 4); 19ebf97c8fSAndreas Gohrdefine('AUTH_UPLOAD', 8); 20ebf97c8fSAndreas Gohrdefine('AUTH_DELETE', 16); 21ebf97c8fSAndreas Gohrdefine('AUTH_ADMIN', 255); 22ebf97c8fSAndreas Gohr 2316905344SAndreas Gohr/** 2416905344SAndreas Gohr * Initialize the auth system. 2516905344SAndreas Gohr * 2616905344SAndreas Gohr * This function is automatically called at the end of init.php 2716905344SAndreas Gohr * 2816905344SAndreas Gohr * This used to be the main() of the auth.php 2916905344SAndreas Gohr * 3016905344SAndreas Gohr * @todo backend loading maybe should be handled by the class autoloader 3116905344SAndreas Gohr * @todo maybe split into multiple functions at the XXX marked positions 32ab5d26daSAndreas Gohr * @triggers AUTH_LOGIN_CHECK 33ab5d26daSAndreas Gohr * @return bool 3416905344SAndreas Gohr */ 3516905344SAndreas Gohrfunction auth_setup() { 36742c66f8Schris global $conf; 3793a7873eSAndreas Gohr /* @var DokuWiki_Auth_Plugin $auth */ 3803c4aec3Schris global $auth; 39bcc94b2cSAndreas Gohr /* @var Input $INPUT */ 40bcc94b2cSAndreas Gohr global $INPUT; 419a9714acSDominik Eckelmann global $AUTH_ACL; 429a9714acSDominik Eckelmann global $lang; 43c8f80b4eSAndreas Gohr global $config_cascade; 449c29eea5SJan Schumann global $plugin_controller; 459a9714acSDominik Eckelmann $AUTH_ACL = array(); 4603c4aec3Schris 4716905344SAndreas Gohr if(!$conf['useacl']) return false; 4816905344SAndreas Gohr 499c29eea5SJan Schumann // try to load auth backend from plugins 509c29eea5SJan Schumann foreach ($plugin_controller->getList('auth') as $plugin) { 519c29eea5SJan Schumann if ($conf['authtype'] === $plugin) { 52f4476bd9SJan Schumann $auth = $plugin_controller->load('auth', $plugin); 539c29eea5SJan Schumann break; 54e71b0ef7SGuy Brand } elseif ('auth' . $conf['authtype'] === $plugin) { 55e71b0ef7SGuy Brand // matches old auth backends (pre-Weatherwax) 56e71b0ef7SGuy Brand $auth = $plugin_controller->load('auth', $plugin); 57a91f1103SAnika Henke msg('Your authtype setting is deprecated. You must set $conf[\'authtype\'] = "auth' . $conf['authtype'] . '"' 5898e31f85SKlap-in . ' in your configuration (see <a href="https://www.dokuwiki.org/auth">Authentication Backends</a>)',-1,'','',MSG_ADMINS_ONLY); 599c29eea5SJan Schumann } 609c29eea5SJan Schumann } 618b06d178Schris 626416b708SMichael Hamann if(!isset($auth) || !$auth){ 633094e817SAndreas Gohr msg($lang['authtempfail'], -1); 643094e817SAndreas Gohr return false; 653094e817SAndreas Gohr } 668b06d178Schris 676416b708SMichael Hamann if ($auth->success == false) { 680f4f4adfSAndreas Gohr // degrade to unauthenticated user 69d2dde4ebSMatthias Grimm unset($auth); 700f4f4adfSAndreas Gohr auth_logoff(); 71cd52f92dSchris msg($lang['authtempfail'], -1); 726416b708SMichael Hamann return false; 73d2dde4ebSMatthias Grimm } 7416905344SAndreas Gohr 7516905344SAndreas Gohr // do the login either by cookie or provided credentials XXX 76bcc94b2cSAndreas Gohr $INPUT->set('http_credentials', false); 77bcc94b2cSAndreas Gohr if(!$conf['rememberme']) $INPUT->set('r', false); 78bbbd6568SAndreas Gohr 79b2665af7SMichael Hamann // handle renamed HTTP_AUTHORIZATION variable (can happen when a fix like 80b2665af7SMichael Hamann // the one presented at 81b2665af7SMichael Hamann // http://www.besthostratings.com/articles/http-auth-php-cgi.html is used 82b2665af7SMichael Hamann // for enabling HTTP authentication with CGI/SuExec) 83b2665af7SMichael Hamann if(isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) 84b2665af7SMichael Hamann $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION']; 85528ddc7cSAndreas Gohr // streamline HTTP auth credentials (IIS/rewrite -> mod_php) 8606156f3cSAndreas Gohr if(isset($_SERVER['HTTP_AUTHORIZATION'])) { 87528ddc7cSAndreas Gohr list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = 88528ddc7cSAndreas Gohr explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); 89528ddc7cSAndreas Gohr } 90528ddc7cSAndreas Gohr 911e8c9c90SAndreas Gohr // if no credentials were given try to use HTTP auth (for SSO) 92bcc94b2cSAndreas Gohr if(!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])) { 93bcc94b2cSAndreas Gohr $INPUT->set('u', $_SERVER['PHP_AUTH_USER']); 94bcc94b2cSAndreas Gohr $INPUT->set('p', $_SERVER['PHP_AUTH_PW']); 95bcc94b2cSAndreas Gohr $INPUT->set('http_credentials', true); 961e8c9c90SAndreas Gohr } 971e8c9c90SAndreas Gohr 98191bb90aSAndreas Gohr // apply cleaning 9993a7873eSAndreas Gohr if (true === $auth->success) { 10000d58927SMichael Hamann $INPUT->set('u', $auth->cleanUser($INPUT->str('u'))); 101f4476bd9SJan Schumann } 102191bb90aSAndreas Gohr 103bcc94b2cSAndreas Gohr if($INPUT->str('authtok')) { 104f13fa892SAndreas Gohr // when an authentication token is given, trust the session 105bcc94b2cSAndreas Gohr auth_validateToken($INPUT->str('authtok')); 106f13fa892SAndreas Gohr } elseif(!is_null($auth) && $auth->canDo('external')) { 107f13fa892SAndreas Gohr // external trust mechanism in place 108bcc94b2cSAndreas Gohr $auth->trustExternal($INPUT->str('u'), $INPUT->str('p'), $INPUT->bool('r')); 109f5cb575dSAndreas Gohr } else { 1106080c584SRobin Gareus $evdata = array( 111bcc94b2cSAndreas Gohr 'user' => $INPUT->str('u'), 112bcc94b2cSAndreas Gohr 'password' => $INPUT->str('p'), 113bcc94b2cSAndreas Gohr 'sticky' => $INPUT->bool('r'), 114bcc94b2cSAndreas Gohr 'silent' => $INPUT->bool('http_credentials') 1156080c584SRobin Gareus ); 116b5ee21aaSAdrian Lang trigger_event('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper'); 117f5cb575dSAndreas Gohr } 118f5cb575dSAndreas Gohr 11916905344SAndreas Gohr //load ACL into a global array XXX 12075c93b77SAndreas Gohr $AUTH_ACL = auth_loadACL(); 121ab5d26daSAndreas Gohr 122ab5d26daSAndreas Gohr return true; 12375c93b77SAndreas Gohr} 12475c93b77SAndreas Gohr 12575c93b77SAndreas Gohr/** 12675c93b77SAndreas Gohr * Loads the ACL setup and handle user wildcards 12775c93b77SAndreas Gohr * 12875c93b77SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 129ab5d26daSAndreas Gohr * @return array 13075c93b77SAndreas Gohr */ 13175c93b77SAndreas Gohrfunction auth_loadACL() { 13275c93b77SAndreas Gohr global $config_cascade; 133b78bf706Sromain global $USERINFO; 13475c93b77SAndreas Gohr 13575c93b77SAndreas Gohr if(!is_readable($config_cascade['acl']['default'])) return array(); 13675c93b77SAndreas Gohr 13775c93b77SAndreas Gohr $acl = file($config_cascade['acl']['default']); 13875c93b77SAndreas Gohr 139191bb90aSAndreas Gohr //support user wildcard 14032e82180SAndreas Gohr $out = array(); 1419ce556d2SAndreas Gohr foreach($acl as $line) { 1429ce556d2SAndreas Gohr $line = trim($line); 1439ce556d2SAndreas Gohr if($line{0} == '#') continue; 1449ce556d2SAndreas Gohr list($id,$rest) = preg_split('/\s+/',$line,2); 14532e82180SAndreas Gohr 1469ce556d2SAndreas Gohr if(strstr($line, '%GROUP%')){ 1479ce556d2SAndreas Gohr foreach((array) $USERINFO['grps'] as $grp){ 148b78bf706Sromain $nid = str_replace('%GROUP%',cleanID($grp),$id); 14932e82180SAndreas Gohr $nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest); 15032e82180SAndreas Gohr $out[] = "$nid\t$nrest"; 151b78bf706Sromain } 15232e82180SAndreas Gohr } else { 15375c93b77SAndreas Gohr $id = str_replace('%USER%',cleanID($_SERVER['REMOTE_USER']),$id); 15475c93b77SAndreas Gohr $rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest); 15532e82180SAndreas Gohr $out[] = "$id\t$rest"; 156a8fe108bSGuy Brand } 15711799630Sandi } 1589ce556d2SAndreas Gohr 15932e82180SAndreas Gohr return $out; 160f3f0262cSandi} 161f3f0262cSandi 162ab5d26daSAndreas Gohr/** 163ab5d26daSAndreas Gohr * Event hook callback for AUTH_LOGIN_CHECK 164ab5d26daSAndreas Gohr * 165ab5d26daSAndreas Gohr * @param $evdata 166ab5d26daSAndreas Gohr * @return bool 167ab5d26daSAndreas Gohr */ 168b5ee21aaSAdrian Langfunction auth_login_wrapper($evdata) { 169ab5d26daSAndreas Gohr return auth_login( 170ab5d26daSAndreas Gohr $evdata['user'], 171b5ee21aaSAdrian Lang $evdata['password'], 172b5ee21aaSAdrian Lang $evdata['sticky'], 173ab5d26daSAndreas Gohr $evdata['silent'] 174ab5d26daSAndreas Gohr ); 175b5ee21aaSAdrian Lang} 176b5ee21aaSAdrian Lang 177f3f0262cSandi/** 178f3f0262cSandi * This tries to login the user based on the sent auth credentials 179f3f0262cSandi * 180f3f0262cSandi * The authentication works like this: if a username was given 18115fae107Sandi * a new login is assumed and user/password are checked. If they 18215fae107Sandi * are correct the password is encrypted with blowfish and stored 18315fae107Sandi * together with the username in a cookie - the same info is stored 18415fae107Sandi * in the session, too. Additonally a browserID is stored in the 18515fae107Sandi * session. 18615fae107Sandi * 18715fae107Sandi * If no username was given the cookie is checked: if the username, 18815fae107Sandi * crypted password and browserID match between session and cookie 18915fae107Sandi * no further testing is done and the user is accepted 19015fae107Sandi * 19115fae107Sandi * If a cookie was found but no session info was availabe the 192136ce040Sandi * blowfish encrypted password from the cookie is decrypted and 19315fae107Sandi * together with username rechecked by calling this function again. 194f3f0262cSandi * 195f3f0262cSandi * On a successful login $_SERVER[REMOTE_USER] and $USERINFO 196f3f0262cSandi * are set. 19715fae107Sandi * 19815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 19915fae107Sandi * 20015fae107Sandi * @param string $user Username 20115fae107Sandi * @param string $pass Cleartext Password 20215fae107Sandi * @param bool $sticky Cookie should not expire 203f112c2faSAndreas Gohr * @param bool $silent Don't show error on bad auth 20415fae107Sandi * @return bool true on successful auth 205f3f0262cSandi */ 206f112c2faSAndreas Gohrfunction auth_login($user, $pass, $sticky = false, $silent = false) { 207f3f0262cSandi global $USERINFO; 208f3f0262cSandi global $conf; 209f3f0262cSandi global $lang; 210ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 211cd52f92dSchris global $auth; 212ab5d26daSAndreas Gohr 213132bdbfeSandi $sticky ? $sticky = true : $sticky = false; //sanity check 214f3f0262cSandi 215beca106aSAdrian Lang if(!$auth) return false; 216beca106aSAdrian Lang 217bbbd6568SAndreas Gohr if(!empty($user)) { 218132bdbfeSandi //usual login 219cd52f92dSchris if($auth->checkPass($user, $pass)) { 220132bdbfeSandi // make logininfo globally available 221f3f0262cSandi $_SERVER['REMOTE_USER'] = $user; 22232ed2b36SAndreas Gohr $secret = auth_cookiesalt(!$sticky); //bind non-sticky to session 223e940aea4SAndreas Gohr auth_setCookie($user, PMA_blowfish_encrypt($pass, $secret), $sticky); 224132bdbfeSandi return true; 225f3f0262cSandi } else { 226f3f0262cSandi //invalid credentials - log off 227f112c2faSAndreas Gohr if(!$silent) msg($lang['badlogin'], -1); 228f3f0262cSandi auth_logoff(); 229132bdbfeSandi return false; 230f3f0262cSandi } 231f3f0262cSandi } else { 232132bdbfeSandi // read cookie information 233645c0a36SAndreas Gohr list($user, $sticky, $pass) = auth_getCookie(); 234132bdbfeSandi if($user && $pass) { 235132bdbfeSandi // we got a cookie - see if we can trust it 236fa7c70ffSAdrian Lang 237fa7c70ffSAdrian Lang // get session info 238fa7c70ffSAdrian Lang $session = $_SESSION[DOKU_COOKIE]['auth']; 239132bdbfeSandi if(isset($session) && 2407172dbc0SAndreas Gohr $auth->useSessionCache($user) && 2414c989037SChris Smith ($session['time'] >= time() - $conf['auth_security_timeout']) && 242132bdbfeSandi ($session['user'] == $user) && 243234ce57eSAndreas Gohr ($session['pass'] == sha1($pass)) && //still crypted 244ab5d26daSAndreas Gohr ($session['buid'] == auth_browseruid()) 245ab5d26daSAndreas Gohr ) { 246234ce57eSAndreas Gohr 247132bdbfeSandi // he has session, cookie and browser right - let him in 248132bdbfeSandi $_SERVER['REMOTE_USER'] = $user; 249132bdbfeSandi $USERINFO = $session['info']; //FIXME move all references to session 250132bdbfeSandi return true; 251132bdbfeSandi } 252f112c2faSAndreas Gohr // no we don't trust it yet - recheck pass but silent 25332ed2b36SAndreas Gohr $secret = auth_cookiesalt(!$sticky); //bind non-sticky to session 254e940aea4SAndreas Gohr $pass = PMA_blowfish_decrypt($pass, $secret); 255f112c2faSAndreas Gohr return auth_login($user, $pass, $sticky, true); 256132bdbfeSandi } 257132bdbfeSandi } 258f3f0262cSandi //just to be sure 259883179a4SAndreas Gohr auth_logoff(true); 260132bdbfeSandi return false; 261f3f0262cSandi} 262132bdbfeSandi 263132bdbfeSandi/** 264f13fa892SAndreas Gohr * Checks if a given authentication token was stored in the session 265f13fa892SAndreas Gohr * 266f13fa892SAndreas Gohr * Will setup authentication data using data from the session if the 267f13fa892SAndreas Gohr * token is correct. Will exit with a 401 Status if not. 268f13fa892SAndreas Gohr * 269f13fa892SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 270f13fa892SAndreas Gohr * @param string $token The authentication token 271f13fa892SAndreas Gohr * @return boolean true (or will exit on failure) 272f13fa892SAndreas Gohr */ 273f13fa892SAndreas Gohrfunction auth_validateToken($token) { 274f13fa892SAndreas Gohr if(!$token || $token != $_SESSION[DOKU_COOKIE]['auth']['token']) { 275f13fa892SAndreas Gohr // bad token 2769d2e1be6SAndreas Gohr http_status(401); 277f13fa892SAndreas Gohr print 'Invalid auth token - maybe the session timed out'; 278f13fa892SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['token']); // no second chance 279f13fa892SAndreas Gohr exit; 280f13fa892SAndreas Gohr } 281f13fa892SAndreas Gohr // still here? trust the session data 282f13fa892SAndreas Gohr global $USERINFO; 283f13fa892SAndreas Gohr $_SERVER['REMOTE_USER'] = $_SESSION[DOKU_COOKIE]['auth']['user']; 284f13fa892SAndreas Gohr $USERINFO = $_SESSION[DOKU_COOKIE]['auth']['info']; 285f13fa892SAndreas Gohr return true; 286f13fa892SAndreas Gohr} 287f13fa892SAndreas Gohr 288f13fa892SAndreas Gohr/** 289f13fa892SAndreas Gohr * Create an auth token and store it in the session 290f13fa892SAndreas Gohr * 291f13fa892SAndreas Gohr * NOTE: this is completely unrelated to the getSecurityToken() function 292f13fa892SAndreas Gohr * 293f13fa892SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 294f13fa892SAndreas Gohr * @return string The auth token 295f13fa892SAndreas Gohr */ 296f13fa892SAndreas Gohrfunction auth_createToken() { 297f13fa892SAndreas Gohr $token = md5(mt_rand()); 29809c2d803SAndreas Gohr @session_start(); // reopen the session if needed 299f13fa892SAndreas Gohr $_SESSION[DOKU_COOKIE]['auth']['token'] = $token; 30009c2d803SAndreas Gohr session_write_close(); 301f13fa892SAndreas Gohr return $token; 302f13fa892SAndreas Gohr} 303f13fa892SAndreas Gohr 304f13fa892SAndreas Gohr/** 305136ce040Sandi * Builds a pseudo UID from browser and IP data 306132bdbfeSandi * 307132bdbfeSandi * This is neither unique nor unfakable - still it adds some 308136ce040Sandi * security. Using the first part of the IP makes sure 30980b4f376SAndreas Gohr * proxy farms like AOLs are still okay. 31015fae107Sandi * 31115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 31215fae107Sandi * 31315fae107Sandi * @return string a MD5 sum of various browser headers 314132bdbfeSandi */ 315132bdbfeSandifunction auth_browseruid() { 3162f9daf16SAndreas Gohr $ip = clientIP(true); 317132bdbfeSandi $uid = ''; 318132bdbfeSandi $uid .= $_SERVER['HTTP_USER_AGENT']; 319132bdbfeSandi $uid .= $_SERVER['HTTP_ACCEPT_ENCODING']; 320132bdbfeSandi $uid .= $_SERVER['HTTP_ACCEPT_CHARSET']; 3212f9daf16SAndreas Gohr $uid .= substr($ip, 0, strpos($ip, '.')); 32280b4f376SAndreas Gohr $uid = strtolower($uid); 323132bdbfeSandi return md5($uid); 324132bdbfeSandi} 325132bdbfeSandi 326132bdbfeSandi/** 327132bdbfeSandi * Creates a random key to encrypt the password in cookies 32815fae107Sandi * 32915fae107Sandi * This function tries to read the password for encrypting 33098407a7aSandi * cookies from $conf['metadir'].'/_htcookiesalt' 33115fae107Sandi * if no such file is found a random key is created and 33215fae107Sandi * and stored in this file. 33315fae107Sandi * 33415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 33532ed2b36SAndreas Gohr * @param bool $addsession if true, the sessionid is added to the salt 33615fae107Sandi * @return string 337132bdbfeSandi */ 33832ed2b36SAndreas Gohrfunction auth_cookiesalt($addsession = false) { 339132bdbfeSandi global $conf; 34098407a7aSandi $file = $conf['metadir'].'/_htcookiesalt'; 341132bdbfeSandi $salt = io_readFile($file); 342132bdbfeSandi if(empty($salt)) { 343132bdbfeSandi $salt = uniqid(rand(), true); 344132bdbfeSandi io_saveFile($file, $salt); 345132bdbfeSandi } 34632ed2b36SAndreas Gohr if($addsession) { 34732ed2b36SAndreas Gohr $salt .= session_id(); 34832ed2b36SAndreas Gohr } 349132bdbfeSandi return $salt; 350f3f0262cSandi} 351f3f0262cSandi 352f3f0262cSandi/** 353883179a4SAndreas Gohr * Log out the current user 354883179a4SAndreas Gohr * 355f3f0262cSandi * This clears all authentication data and thus log the user 356883179a4SAndreas Gohr * off. It also clears session data. 35715fae107Sandi * 35815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 359883179a4SAndreas Gohr * @param bool $keepbc - when true, the breadcrumb data is not cleared 360f3f0262cSandi */ 361883179a4SAndreas Gohrfunction auth_logoff($keepbc = false) { 362f3f0262cSandi global $conf; 363f3f0262cSandi global $USERINFO; 364ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 3655298a619SAndreas Gohr global $auth; 36637065e65Sandi 367d4869846SAndreas Gohr // make sure the session is writable (it usually is) 368e9621d07SAndreas Gohr @session_start(); 369e9621d07SAndreas Gohr 370e71ce681SAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['auth']['user'])) 371e71ce681SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['user']); 372e71ce681SAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['auth']['pass'])) 373e71ce681SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['pass']); 374e71ce681SAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['auth']['info'])) 375e71ce681SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['info']); 376883179a4SAndreas Gohr if(!$keepbc && isset($_SESSION[DOKU_COOKIE]['bc'])) 377e16eccb7SGuy Brand unset($_SESSION[DOKU_COOKIE]['bc']); 37837065e65Sandi if(isset($_SERVER['REMOTE_USER'])) 379f3f0262cSandi unset($_SERVER['REMOTE_USER']); 380132bdbfeSandi $USERINFO = null; //FIXME 381f5c6743cSAndreas Gohr 38273ab87deSGabriel Birke $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 383f5c6743cSAndreas Gohr if(version_compare(PHP_VERSION, '5.2.0', '>')) { 38473ab87deSGabriel Birke setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true); 385f5c6743cSAndreas Gohr } else { 38673ab87deSGabriel Birke setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl())); 387f5c6743cSAndreas Gohr } 3885298a619SAndreas Gohr 389880f62faSAndreas Gohr if($auth) $auth->logOff(); 390f3f0262cSandi} 391f3f0262cSandi 392f3f0262cSandi/** 393f8cc712eSAndreas Gohr * Check if a user is a manager 394f8cc712eSAndreas Gohr * 395f8cc712eSAndreas Gohr * Should usually be called without any parameters to check the current 396f8cc712eSAndreas Gohr * user. 397f8cc712eSAndreas Gohr * 398f8cc712eSAndreas Gohr * The info is available through $INFO['ismanager'], too 399f8cc712eSAndreas Gohr * 400f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 401f8cc712eSAndreas Gohr * @see auth_isadmin 402ab5d26daSAndreas Gohr * @param string $user Username 403ab5d26daSAndreas Gohr * @param array $groups List of groups the user is in 404ab5d26daSAndreas Gohr * @param bool $adminonly when true checks if user is admin 405ab5d26daSAndreas Gohr * @return bool 406f8cc712eSAndreas Gohr */ 407f8cc712eSAndreas Gohrfunction auth_ismanager($user = null, $groups = null, $adminonly = false) { 408f8cc712eSAndreas Gohr global $conf; 409f8cc712eSAndreas Gohr global $USERINFO; 410ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 411d752aedeSAndreas Gohr global $auth; 412f8cc712eSAndreas Gohr 413beca106aSAdrian Lang if(!$auth) return false; 414c66972f2SAdrian Lang if(is_null($user)) { 415c66972f2SAdrian Lang if(!isset($_SERVER['REMOTE_USER'])) { 416c66972f2SAdrian Lang return false; 417c66972f2SAdrian Lang } else { 418c66972f2SAdrian Lang $user = $_SERVER['REMOTE_USER']; 419c66972f2SAdrian Lang } 420c66972f2SAdrian Lang } 421d6dc956fSAndreas Gohr if(is_null($groups)) { 422d6dc956fSAndreas Gohr $groups = (array) $USERINFO['grps']; 423e259aa79SAndreas Gohr } 424e259aa79SAndreas Gohr 425d6dc956fSAndreas Gohr // check superuser match 426d6dc956fSAndreas Gohr if(auth_isMember($conf['superuser'], $user, $groups)) return true; 427d6dc956fSAndreas Gohr if($adminonly) return false; 428e259aa79SAndreas Gohr // check managers 429d6dc956fSAndreas Gohr if(auth_isMember($conf['manager'], $user, $groups)) return true; 43000ce12daSChris Smith 431f8cc712eSAndreas Gohr return false; 432f8cc712eSAndreas Gohr} 433f8cc712eSAndreas Gohr 434f8cc712eSAndreas Gohr/** 435f8cc712eSAndreas Gohr * Check if a user is admin 436f8cc712eSAndreas Gohr * 437f8cc712eSAndreas Gohr * Alias to auth_ismanager with adminonly=true 438f8cc712eSAndreas Gohr * 439f8cc712eSAndreas Gohr * The info is available through $INFO['isadmin'], too 440f8cc712eSAndreas Gohr * 441f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 442ab5d26daSAndreas Gohr * @see auth_ismanager() 443ab5d26daSAndreas Gohr * @param string $user Username 444ab5d26daSAndreas Gohr * @param array $groups List of groups the user is in 445ab5d26daSAndreas Gohr * @return bool 446f8cc712eSAndreas Gohr */ 447f8cc712eSAndreas Gohrfunction auth_isadmin($user = null, $groups = null) { 448f8cc712eSAndreas Gohr return auth_ismanager($user, $groups, true); 449f8cc712eSAndreas Gohr} 450f8cc712eSAndreas Gohr 451d6dc956fSAndreas Gohr/** 452d6dc956fSAndreas Gohr * Match a user and his groups against a comma separated list of 453d6dc956fSAndreas Gohr * users and groups to determine membership status 454d6dc956fSAndreas Gohr * 455d6dc956fSAndreas Gohr * Note: all input should NOT be nameencoded. 456d6dc956fSAndreas Gohr * 457d6dc956fSAndreas Gohr * @param $memberlist string commaseparated list of allowed users and groups 458d6dc956fSAndreas Gohr * @param $user string user to match against 459d6dc956fSAndreas Gohr * @param $groups array groups the user is member of 4605446f3ffSDominik Eckelmann * @return bool true for membership acknowledged 461d6dc956fSAndreas Gohr */ 462d6dc956fSAndreas Gohrfunction auth_isMember($memberlist, $user, array $groups) { 463ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 464d6dc956fSAndreas Gohr global $auth; 465d6dc956fSAndreas Gohr if(!$auth) return false; 466d6dc956fSAndreas Gohr 467d6dc956fSAndreas Gohr // clean user and groups 4684f56ecbfSAdrian Lang if(!$auth->isCaseSensitive()) { 469d6dc956fSAndreas Gohr $user = utf8_strtolower($user); 470d6dc956fSAndreas Gohr $groups = array_map('utf8_strtolower', $groups); 471d6dc956fSAndreas Gohr } 472d6dc956fSAndreas Gohr $user = $auth->cleanUser($user); 473d6dc956fSAndreas Gohr $groups = array_map(array($auth, 'cleanGroup'), $groups); 474d6dc956fSAndreas Gohr 475d6dc956fSAndreas Gohr // extract the memberlist 476d6dc956fSAndreas Gohr $members = explode(',', $memberlist); 477d6dc956fSAndreas Gohr $members = array_map('trim', $members); 478d6dc956fSAndreas Gohr $members = array_unique($members); 479d6dc956fSAndreas Gohr $members = array_filter($members); 480d6dc956fSAndreas Gohr 481d6dc956fSAndreas Gohr // compare cleaned values 482d6dc956fSAndreas Gohr foreach($members as $member) { 4834f56ecbfSAdrian Lang if(!$auth->isCaseSensitive()) $member = utf8_strtolower($member); 484d6dc956fSAndreas Gohr if($member[0] == '@') { 485d6dc956fSAndreas Gohr $member = $auth->cleanGroup(substr($member, 1)); 486d6dc956fSAndreas Gohr if(in_array($member, $groups)) return true; 487d6dc956fSAndreas Gohr } else { 488d6dc956fSAndreas Gohr $member = $auth->cleanUser($member); 489d6dc956fSAndreas Gohr if($member == $user) return true; 490d6dc956fSAndreas Gohr } 491d6dc956fSAndreas Gohr } 492d6dc956fSAndreas Gohr 493d6dc956fSAndreas Gohr // still here? not a member! 494d6dc956fSAndreas Gohr return false; 495d6dc956fSAndreas Gohr} 496d6dc956fSAndreas Gohr 497f8cc712eSAndreas Gohr/** 49815fae107Sandi * Convinience function for auth_aclcheck() 49915fae107Sandi * 50015fae107Sandi * This checks the permissions for the current user 50115fae107Sandi * 50215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 50315fae107Sandi * 5041698b983Smichael * @param string $id page ID (needs to be resolved and cleaned) 50515fae107Sandi * @return int permission level 506f3f0262cSandi */ 507f3f0262cSandifunction auth_quickaclcheck($id) { 508f3f0262cSandi global $conf; 509f3f0262cSandi global $USERINFO; 510f3f0262cSandi # if no ACL is used always return upload rights 511f3f0262cSandi if(!$conf['useacl']) return AUTH_UPLOAD; 512f3f0262cSandi return auth_aclcheck($id, $_SERVER['REMOTE_USER'], $USERINFO['grps']); 513f3f0262cSandi} 514f3f0262cSandi 515f3f0262cSandi/** 516f3f0262cSandi * Returns the maximum rights a user has for 517f3f0262cSandi * the given ID or its namespace 51815fae107Sandi * 51915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 52015fae107Sandi * 5211698b983Smichael * @param string $id page ID (needs to be resolved and cleaned) 52215fae107Sandi * @param string $user Username 5233272d797SAndreas Gohr * @param array|null $groups Array of groups the user is in 52415fae107Sandi * @return int permission level 525f3f0262cSandi */ 526f3f0262cSandifunction auth_aclcheck($id, $user, $groups) { 527f3f0262cSandi global $conf; 528f3f0262cSandi global $AUTH_ACL; 529ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 530d752aedeSAndreas Gohr global $auth; 531f3f0262cSandi 53285d03f68SAndreas Gohr // if no ACL is used always return upload rights 533f3f0262cSandi if(!$conf['useacl']) return AUTH_UPLOAD; 534beca106aSAdrian Lang if(!$auth) return AUTH_NONE; 535f3f0262cSandi 536074cf26bSandi //make sure groups is an array 537074cf26bSandi if(!is_array($groups)) $groups = array(); 538074cf26bSandi 53985d03f68SAndreas Gohr //if user is superuser or in superusergroup return 255 (acl_admin) 540ab5d26daSAndreas Gohr if(auth_isadmin($user, $groups)) { 541ab5d26daSAndreas Gohr return AUTH_ADMIN; 542ab5d26daSAndreas Gohr } 54385d03f68SAndreas Gohr 544eb3ce0d5SKazutaka Miyasaka if(!$auth->isCaseSensitive()) { 545eb3ce0d5SKazutaka Miyasaka $user = utf8_strtolower($user); 546eb3ce0d5SKazutaka Miyasaka $groups = array_map('utf8_strtolower', $groups); 547eb3ce0d5SKazutaka Miyasaka } 548d752aedeSAndreas Gohr $user = $auth->cleanUser($user); 549d752aedeSAndreas Gohr $groups = array_map(array($auth, 'cleanGroup'), (array) $groups); 55085d03f68SAndreas Gohr $user = auth_nameencode($user); 55185d03f68SAndreas Gohr 5526c2bb100SAndreas Gohr //prepend groups with @ and nameencode 5532cd2db38Sandi $cnt = count($groups); 5542cd2db38Sandi for($i = 0; $i < $cnt; $i++) { 5556c2bb100SAndreas Gohr $groups[$i] = '@'.auth_nameencode($groups[$i]); 55610a76f6fSfrank } 55710a76f6fSfrank 558f3f0262cSandi $ns = getNS($id); 559f3f0262cSandi $perm = -1; 560f3f0262cSandi 56134aeb4afSAndreas Gohr if($user || count($groups)) { 562f3f0262cSandi //add ALL group 563f3f0262cSandi $groups[] = '@ALL'; 564f3f0262cSandi //add User 56534aeb4afSAndreas Gohr if($user) $groups[] = $user; 566f3f0262cSandi } else { 56748d7b7a6SDominik Eckelmann $groups[] = '@ALL'; 568f3f0262cSandi } 569f3f0262cSandi 570f3f0262cSandi //check exact match first 571eb3ce0d5SKazutaka Miyasaka $matches = preg_grep('/^'.preg_quote($id, '/').'\s+(\S+)\s+/u', $AUTH_ACL); 572f3f0262cSandi if(count($matches)) { 573f3f0262cSandi foreach($matches as $match) { 574f3f0262cSandi $match = preg_replace('/#.*$/', '', $match); //ignore comments 575f3f0262cSandi $acl = preg_split('/\s+/', $match); 576eb3ce0d5SKazutaka Miyasaka if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') { 577eb3ce0d5SKazutaka Miyasaka $acl[1] = utf8_strtolower($acl[1]); 578eb3ce0d5SKazutaka Miyasaka } 57948d7b7a6SDominik Eckelmann if(!in_array($acl[1], $groups)) { 58048d7b7a6SDominik Eckelmann continue; 58148d7b7a6SDominik Eckelmann } 5828ef6b7caSandi if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 583f3f0262cSandi if($acl[2] > $perm) { 584f3f0262cSandi $perm = $acl[2]; 585f3f0262cSandi } 586f3f0262cSandi } 587f3f0262cSandi if($perm > -1) { 588f3f0262cSandi //we had a match - return it 589def492a2SGuillaume Turri return (int) $perm; 590f3f0262cSandi } 591f3f0262cSandi } 592f3f0262cSandi 593f3f0262cSandi //still here? do the namespace checks 594f3f0262cSandi if($ns) { 5953e304b55SMichael Hamann $path = $ns.':*'; 596f3f0262cSandi } else { 5973e304b55SMichael Hamann $path = '*'; //root document 598f3f0262cSandi } 599f3f0262cSandi 600f3f0262cSandi do { 601eb3ce0d5SKazutaka Miyasaka $matches = preg_grep('/^'.preg_quote($path, '/').'\s+(\S+)\s+/u', $AUTH_ACL); 602f3f0262cSandi if(count($matches)) { 603f3f0262cSandi foreach($matches as $match) { 604f3f0262cSandi $match = preg_replace('/#.*$/', '', $match); //ignore comments 605f3f0262cSandi $acl = preg_split('/\s+/', $match); 606eb3ce0d5SKazutaka Miyasaka if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') { 607eb3ce0d5SKazutaka Miyasaka $acl[1] = utf8_strtolower($acl[1]); 608eb3ce0d5SKazutaka Miyasaka } 60948d7b7a6SDominik Eckelmann if(!in_array($acl[1], $groups)) { 61048d7b7a6SDominik Eckelmann continue; 61148d7b7a6SDominik Eckelmann } 6128ef6b7caSandi if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 613f3f0262cSandi if($acl[2] > $perm) { 614f3f0262cSandi $perm = $acl[2]; 615f3f0262cSandi } 616f3f0262cSandi } 617f3f0262cSandi //we had a match - return it 61848d7b7a6SDominik Eckelmann if($perm != -1) { 619def492a2SGuillaume Turri return (int) $perm; 620f3f0262cSandi } 62148d7b7a6SDominik Eckelmann } 622f3f0262cSandi //get next higher namespace 623f3f0262cSandi $ns = getNS($ns); 624f3f0262cSandi 6253e304b55SMichael Hamann if($path != '*') { 6263e304b55SMichael Hamann $path = $ns.':*'; 6273e304b55SMichael Hamann if($path == ':*') $path = '*'; 628f3f0262cSandi } else { 629f3f0262cSandi //we did this already 630f3f0262cSandi //looks like there is something wrong with the ACL 631f3f0262cSandi //break here 632d5ce66f6SAndreas Gohr msg('No ACL setup yet! Denying access to everyone.'); 633d5ce66f6SAndreas Gohr return AUTH_NONE; 634f3f0262cSandi } 635f3f0262cSandi } while(1); //this should never loop endless 636ab5d26daSAndreas Gohr return AUTH_NONE; 637f3f0262cSandi} 638f3f0262cSandi 639f3f0262cSandi/** 6406c2bb100SAndreas Gohr * Encode ASCII special chars 6416c2bb100SAndreas Gohr * 6426c2bb100SAndreas Gohr * Some auth backends allow special chars in their user and groupnames 6436c2bb100SAndreas Gohr * The special chars are encoded with this function. Only ASCII chars 6446c2bb100SAndreas Gohr * are encoded UTF-8 multibyte are left as is (different from usual 6456c2bb100SAndreas Gohr * urlencoding!). 6466c2bb100SAndreas Gohr * 6476c2bb100SAndreas Gohr * Decoding can be done with rawurldecode 6486c2bb100SAndreas Gohr * 6496c2bb100SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 6506c2bb100SAndreas Gohr * @see rawurldecode() 6516c2bb100SAndreas Gohr */ 652e838fc2eSAndreas Gohrfunction auth_nameencode($name, $skip_group = false) { 653a424cd8eSchris global $cache_authname; 654a424cd8eSchris $cache =& $cache_authname; 65531784267SAndreas Gohr $name = (string) $name; 656a424cd8eSchris 65780601d26SAndreas Gohr // never encode wildcard FS#1955 65880601d26SAndreas Gohr if($name == '%USER%') return $name; 659b78bf706Sromain if($name == '%GROUP%') return $name; 66080601d26SAndreas Gohr 661a424cd8eSchris if(!isset($cache[$name][$skip_group])) { 662e838fc2eSAndreas Gohr if($skip_group && $name{0} == '@') { 663ab5d26daSAndreas Gohr $cache[$name][$skip_group] = '@'.preg_replace( 664ab5d26daSAndreas Gohr '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/e', 665ab5d26daSAndreas Gohr "'%'.dechex(ord(substr('\\1',-1)))", substr($name, 1) 666ab5d26daSAndreas Gohr ); 667e838fc2eSAndreas Gohr } else { 668ab5d26daSAndreas Gohr $cache[$name][$skip_group] = preg_replace( 669ab5d26daSAndreas Gohr '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/e', 670ab5d26daSAndreas Gohr "'%'.dechex(ord(substr('\\1',-1)))", $name 671ab5d26daSAndreas Gohr ); 672e838fc2eSAndreas Gohr } 6736c2bb100SAndreas Gohr } 6746c2bb100SAndreas Gohr 675a424cd8eSchris return $cache[$name][$skip_group]; 676a424cd8eSchris} 677a424cd8eSchris 6786c2bb100SAndreas Gohr/** 679f3f0262cSandi * Create a pronouncable password 680f3f0262cSandi * 6818a285f7fSAndreas Gohr * The $foruser variable might be used by plugins to run additional password 6828a285f7fSAndreas Gohr * policy checks, but is not used by the default implementation 6838a285f7fSAndreas Gohr * 68415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 68515fae107Sandi * @link http://www.phpbuilder.com/annotate/message.php3?id=1014451 6868a285f7fSAndreas Gohr * @triggers AUTH_PASSWORD_GENERATE 68715fae107Sandi * 6888a285f7fSAndreas Gohr * @param string $foruser username for which the password is generated 68915fae107Sandi * @return string pronouncable password 690f3f0262cSandi */ 6918a285f7fSAndreas Gohrfunction auth_pwgen($foruser = '') { 6928a285f7fSAndreas Gohr $data = array( 693d628dcf3SAndreas Gohr 'password' => '', 694d628dcf3SAndreas Gohr 'foruser' => $foruser 6958a285f7fSAndreas Gohr ); 6968a285f7fSAndreas Gohr 6978a285f7fSAndreas Gohr $evt = new Doku_Event('AUTH_PASSWORD_GENERATE', $data); 6988a285f7fSAndreas Gohr if($evt->advise_before(true)) { 699f3f0262cSandi $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones 700f3f0262cSandi $v = 'aeiou'; //vowels 701f3f0262cSandi $a = $c.$v; //both 702*987c8d26SAndreas Gohr $s = '!$%&?+*~#-_:.;,'; // specials 703f3f0262cSandi 704*987c8d26SAndreas Gohr //use thre syllables... 705*987c8d26SAndreas Gohr for($i = 0; $i < 3; $i++) { 706*987c8d26SAndreas Gohr $data['password'] .= $c[mt_rand(0, strlen($c) - 1)]; 707*987c8d26SAndreas Gohr $data['password'] .= $v[mt_rand(0, strlen($v) - 1)]; 708*987c8d26SAndreas Gohr $data['password'] .= $a[mt_rand(0, strlen($a) - 1)]; 709f3f0262cSandi } 710*987c8d26SAndreas Gohr //... and add a nice number and special 711*987c8d26SAndreas Gohr $data['password'] .= mt_rand(10, 99).$s[mt_rand(0, strlen($s) - 1)]; 7128a285f7fSAndreas Gohr } 7138a285f7fSAndreas Gohr $evt->advise_after(); 714f3f0262cSandi 7158a285f7fSAndreas Gohr return $data['password']; 716f3f0262cSandi} 717f3f0262cSandi 718f3f0262cSandi/** 719f3f0262cSandi * Sends a password to the given user 720f3f0262cSandi * 72115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 722ab5d26daSAndreas Gohr * @param string $user Login name of the user 723ab5d26daSAndreas Gohr * @param string $password The new password in clear text 72415fae107Sandi * @return bool true on success 725f3f0262cSandi */ 726f3f0262cSandifunction auth_sendPassword($user, $password) { 727f3f0262cSandi global $lang; 728ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 729cd52f92dSchris global $auth; 730beca106aSAdrian Lang if(!$auth) return false; 731cd52f92dSchris 732d752aedeSAndreas Gohr $user = $auth->cleanUser($user); 733cd52f92dSchris $userinfo = $auth->getUserData($user); 734f3f0262cSandi 73587ddda95Sandi if(!$userinfo['mail']) return false; 736f3f0262cSandi 737f3f0262cSandi $text = rawLocale('password'); 738d7169d19SAndreas Gohr $trep = array( 739d7169d19SAndreas Gohr 'FULLNAME' => $userinfo['name'], 740d7169d19SAndreas Gohr 'LOGIN' => $user, 741d7169d19SAndreas Gohr 'PASSWORD' => $password 742d7169d19SAndreas Gohr ); 743f3f0262cSandi 744d7169d19SAndreas Gohr $mail = new Mailer(); 745d7169d19SAndreas Gohr $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>'); 746d7169d19SAndreas Gohr $mail->subject($lang['regpwmail']); 747d7169d19SAndreas Gohr $mail->setBody($text, $trep); 748d7169d19SAndreas Gohr return $mail->send(); 749f3f0262cSandi} 750f3f0262cSandi 751f3f0262cSandi/** 75215fae107Sandi * Register a new user 753f3f0262cSandi * 75415fae107Sandi * This registers a new user - Data is read directly from $_POST 75515fae107Sandi * 75615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 75715fae107Sandi * @return bool true on success, false on any error 758f3f0262cSandi */ 759f3f0262cSandifunction register() { 760f3f0262cSandi global $lang; 761eb5d07e4Sjan global $conf; 762ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 763cd52f92dSchris global $auth; 76464273335SAndreas Gohr global $INPUT; 765f3f0262cSandi 76664273335SAndreas Gohr if(!$INPUT->post->bool('save')) return false; 7673a48618aSAnika Henke if(!actionOK('register')) return false; 768640145a5Sandi 76964273335SAndreas Gohr // gather input 77064273335SAndreas Gohr $login = trim($auth->cleanUser($INPUT->post->str('login'))); 77164273335SAndreas Gohr $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname'))); 77264273335SAndreas Gohr $email = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email'))); 77364273335SAndreas Gohr $pass = $INPUT->post->str('pass'); 77464273335SAndreas Gohr $passchk = $INPUT->post->str('passchk'); 775d752aedeSAndreas Gohr 77664273335SAndreas Gohr if(empty($login) || empty($fullname) || empty($email)) { 777f3f0262cSandi msg($lang['regmissing'], -1); 778f3f0262cSandi return false; 779f3f0262cSandi } 780f3f0262cSandi 781cab2716aSmatthias.grimm if($conf['autopasswd']) { 7828a285f7fSAndreas Gohr $pass = auth_pwgen($login); // automatically generate password 78364273335SAndreas Gohr } elseif(empty($pass) || empty($passchk)) { 784bf12ec81Sjan msg($lang['regmissing'], -1); // complain about missing passwords 785cab2716aSmatthias.grimm return false; 78664273335SAndreas Gohr } elseif($pass != $passchk) { 787bf12ec81Sjan msg($lang['regbadpass'], -1); // complain about misspelled passwords 788cab2716aSmatthias.grimm return false; 789cab2716aSmatthias.grimm } 790cab2716aSmatthias.grimm 791f3f0262cSandi //check mail 79264273335SAndreas Gohr if(!mail_isvalid($email)) { 793f3f0262cSandi msg($lang['regbadmail'], -1); 794f3f0262cSandi return false; 795f3f0262cSandi } 796f3f0262cSandi 797f3f0262cSandi //okay try to create the user 79864273335SAndreas Gohr if(!$auth->triggerUserMod('create', array($login, $pass, $fullname, $email))) { 799f3f0262cSandi msg($lang['reguexists'], -1); 800f3f0262cSandi return false; 801f3f0262cSandi } 802f3f0262cSandi 803790b7720SAndreas Gohr // send notification about the new user 804790b7720SAndreas Gohr $subscription = new Subscription(); 805790b7720SAndreas Gohr $subscription->send_register($login, $fullname, $email); 80602a498e7Schris 807790b7720SAndreas Gohr // are we done? 808cab2716aSmatthias.grimm if(!$conf['autopasswd']) { 809cab2716aSmatthias.grimm msg($lang['regsuccess2'], 1); 810cab2716aSmatthias.grimm return true; 811cab2716aSmatthias.grimm } 812cab2716aSmatthias.grimm 813790b7720SAndreas Gohr // autogenerated password? then send password to user 81464273335SAndreas Gohr if(auth_sendPassword($login, $pass)) { 815f3f0262cSandi msg($lang['regsuccess'], 1); 816f3f0262cSandi return true; 817f3f0262cSandi } else { 818f3f0262cSandi msg($lang['regmailfail'], -1); 819f3f0262cSandi return false; 820f3f0262cSandi } 821f3f0262cSandi} 822f3f0262cSandi 82310a76f6fSfrank/** 8248b06d178Schris * Update user profile 8258b06d178Schris * 8268b06d178Schris * @author Christopher Smith <chris@jalakai.co.uk> 8278b06d178Schris */ 8288b06d178Schrisfunction updateprofile() { 8298b06d178Schris global $conf; 8308b06d178Schris global $lang; 831ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 832cd52f92dSchris global $auth; 833bcc94b2cSAndreas Gohr /* @var Input $INPUT */ 834bcc94b2cSAndreas Gohr global $INPUT; 8358b06d178Schris 836bcc94b2cSAndreas Gohr if(!$INPUT->post->bool('save')) return false; 8371b2a85e8SAndreas Gohr if(!checkSecurityToken()) return false; 8388b06d178Schris 8393a48618aSAnika Henke if(!actionOK('profile')) { 8408b06d178Schris msg($lang['profna'], -1); 8418b06d178Schris return false; 8428b06d178Schris } 8438b06d178Schris 844bcc94b2cSAndreas Gohr $changes = array(); 845bcc94b2cSAndreas Gohr $changes['pass'] = $INPUT->post->str('newpass'); 846bcc94b2cSAndreas Gohr $changes['name'] = $INPUT->post->str('fullname'); 847bcc94b2cSAndreas Gohr $changes['mail'] = $INPUT->post->str('email'); 848bcc94b2cSAndreas Gohr 849bcc94b2cSAndreas Gohr // check misspelled passwords 850bcc94b2cSAndreas Gohr if($changes['pass'] != $INPUT->post->str('passchk')) { 851bcc94b2cSAndreas Gohr msg($lang['regbadpass'], -1); 8528b06d178Schris return false; 8538b06d178Schris } 8548b06d178Schris 8558b06d178Schris // clean fullname and email 856bcc94b2cSAndreas Gohr $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name'])); 857bcc94b2cSAndreas Gohr $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail'])); 8588b06d178Schris 859bcc94b2cSAndreas Gohr // no empty name and email (except the backend doesn't support them) 860bcc94b2cSAndreas Gohr if((empty($changes['name']) && $auth->canDo('modName')) || 861bcc94b2cSAndreas Gohr (empty($changes['mail']) && $auth->canDo('modMail')) 862ab5d26daSAndreas Gohr ) { 8638b06d178Schris msg($lang['profnoempty'], -1); 8648b06d178Schris return false; 8658b06d178Schris } 866bcc94b2cSAndreas Gohr if(!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) { 8678b06d178Schris msg($lang['regbadmail'], -1); 8688b06d178Schris return false; 8698b06d178Schris } 8708b06d178Schris 871bcc94b2cSAndreas Gohr $changes = array_filter($changes); 8724c21b7eeSAndreas Gohr 873bcc94b2cSAndreas Gohr // check for unavailable capabilities 874bcc94b2cSAndreas Gohr if(!$auth->canDo('modName')) unset($changes['name']); 875bcc94b2cSAndreas Gohr if(!$auth->canDo('modMail')) unset($changes['mail']); 876bcc94b2cSAndreas Gohr if(!$auth->canDo('modPass')) unset($changes['pass']); 877bcc94b2cSAndreas Gohr 878bcc94b2cSAndreas Gohr // anything to do? 8798b06d178Schris if(!count($changes)) { 8808b06d178Schris msg($lang['profnochange'], -1); 8818b06d178Schris return false; 8828b06d178Schris } 8838b06d178Schris 8848b06d178Schris if($conf['profileconfirm']) { 885bcc94b2cSAndreas Gohr if(!$auth->checkPass($_SERVER['REMOTE_USER'], $INPUT->post->str('oldpass'))) { 8868b06d178Schris msg($lang['badlogin'], -1); 8878b06d178Schris return false; 8888b06d178Schris } 8898b06d178Schris } 8908b06d178Schris 891a0b5b007SChris Smith if($result = $auth->triggerUserMod('modify', array($_SERVER['REMOTE_USER'], $changes))) { 892a0b5b007SChris Smith // update cookie and session with the changed data 89332ed2b36SAndreas Gohr if($changes['pass']) { 894ab5d26daSAndreas Gohr list( /*user*/, $sticky, /*pass*/) = auth_getCookie(); 89532ed2b36SAndreas Gohr $pass = PMA_blowfish_encrypt($changes['pass'], auth_cookiesalt(!$sticky)); 896a0b5b007SChris Smith auth_setCookie($_SERVER['REMOTE_USER'], $pass, (bool) $sticky); 89732ed2b36SAndreas Gohr } 89825b2a98cSMichael Klier return true; 899a0b5b007SChris Smith } 900ab5d26daSAndreas Gohr 901ab5d26daSAndreas Gohr return false; 9028b06d178Schris} 9038b06d178Schris 9048b06d178Schris/** 9058b06d178Schris * Send a new password 9068b06d178Schris * 9071d5856cfSAndreas Gohr * This function handles both phases of the password reset: 9081d5856cfSAndreas Gohr * 9091d5856cfSAndreas Gohr * - handling the first request of password reset 9101d5856cfSAndreas Gohr * - validating the password reset auth token 9111d5856cfSAndreas Gohr * 9128b06d178Schris * @author Benoit Chesneau <benoit@bchesneau.info> 9138b06d178Schris * @author Chris Smith <chris@jalakai.co.uk> 9141d5856cfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 9158b06d178Schris * 9168b06d178Schris * @return bool true on success, false on any error 9178b06d178Schris */ 9188b06d178Schrisfunction act_resendpwd() { 9198b06d178Schris global $lang; 9208b06d178Schris global $conf; 921ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 922cd52f92dSchris global $auth; 923bcc94b2cSAndreas Gohr /* @var Input $INPUT */ 924bcc94b2cSAndreas Gohr global $INPUT; 9258b06d178Schris 9263a48618aSAnika Henke if(!actionOK('resendpwd')) { 9278b06d178Schris msg($lang['resendna'], -1); 9288b06d178Schris return false; 9298b06d178Schris } 9308b06d178Schris 931bcc94b2cSAndreas Gohr $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth')); 9328b06d178Schris 9331d5856cfSAndreas Gohr if($token) { 934cc204bbdSAndreas Gohr // we're in token phase - get user info from token 9351d5856cfSAndreas Gohr 9361d5856cfSAndreas Gohr $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth'; 9371d5856cfSAndreas Gohr if(!@file_exists($tfile)) { 9381d5856cfSAndreas Gohr msg($lang['resendpwdbadauth'], -1); 939bcc94b2cSAndreas Gohr $INPUT->remove('pwauth'); 9401d5856cfSAndreas Gohr return false; 9411d5856cfSAndreas Gohr } 9428a9735e3SAndreas Gohr // token is only valid for 3 days 9438a9735e3SAndreas Gohr if((time() - filemtime($tfile)) > (3 * 60 * 60 * 24)) { 9448a9735e3SAndreas Gohr msg($lang['resendpwdbadauth'], -1); 945bcc94b2cSAndreas Gohr $INPUT->remove('pwauth'); 9461d5856cfSAndreas Gohr @unlink($tfile); 9478a9735e3SAndreas Gohr return false; 9488a9735e3SAndreas Gohr } 9498a9735e3SAndreas Gohr 9508b06d178Schris $user = io_readfile($tfile); 951cd52f92dSchris $userinfo = $auth->getUserData($user); 9528b06d178Schris if(!$userinfo['mail']) { 9538b06d178Schris msg($lang['resendpwdnouser'], -1); 9548b06d178Schris return false; 9558b06d178Schris } 9568b06d178Schris 957cc204bbdSAndreas Gohr if(!$conf['autopasswd']) { // we let the user choose a password 958bcc94b2cSAndreas Gohr $pass = $INPUT->str('pass'); 959bcc94b2cSAndreas Gohr 960cc204bbdSAndreas Gohr // password given correctly? 961bcc94b2cSAndreas Gohr if(!$pass) return false; 962bcc94b2cSAndreas Gohr if($pass != $INPUT->str('passchk')) { 963451e1b4dSAndreas Gohr msg($lang['regbadpass'], -1); 964cc204bbdSAndreas Gohr return false; 965cc204bbdSAndreas Gohr } 966cc204bbdSAndreas Gohr 967bcc94b2cSAndreas Gohr // change it 968cc204bbdSAndreas Gohr if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) { 969cc204bbdSAndreas Gohr msg('error modifying user data', -1); 970cc204bbdSAndreas Gohr return false; 971cc204bbdSAndreas Gohr } 972cc204bbdSAndreas Gohr 973cc204bbdSAndreas Gohr } else { // autogenerate the password and send by mail 974cc204bbdSAndreas Gohr 9758a285f7fSAndreas Gohr $pass = auth_pwgen($user); 9767d3c8d42SGabriel Birke if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) { 9778b06d178Schris msg('error modifying user data', -1); 9788b06d178Schris return false; 9798b06d178Schris } 9808b06d178Schris 9818b06d178Schris if(auth_sendPassword($user, $pass)) { 9828b06d178Schris msg($lang['resendpwdsuccess'], 1); 9838b06d178Schris } else { 9848b06d178Schris msg($lang['regmailfail'], -1); 9858b06d178Schris } 986cc204bbdSAndreas Gohr } 987cc204bbdSAndreas Gohr 988cc204bbdSAndreas Gohr @unlink($tfile); 9898b06d178Schris return true; 9901d5856cfSAndreas Gohr 9911d5856cfSAndreas Gohr } else { 9921d5856cfSAndreas Gohr // we're in request phase 9931d5856cfSAndreas Gohr 994bcc94b2cSAndreas Gohr if(!$INPUT->post->bool('save')) return false; 9951d5856cfSAndreas Gohr 996bcc94b2cSAndreas Gohr if(!$INPUT->post->str('login')) { 9971d5856cfSAndreas Gohr msg($lang['resendpwdmissing'], -1); 9981d5856cfSAndreas Gohr return false; 9991d5856cfSAndreas Gohr } else { 1000bcc94b2cSAndreas Gohr $user = trim($auth->cleanUser($INPUT->post->str('login'))); 10011d5856cfSAndreas Gohr } 10021d5856cfSAndreas Gohr 10031d5856cfSAndreas Gohr $userinfo = $auth->getUserData($user); 10041d5856cfSAndreas Gohr if(!$userinfo['mail']) { 10051d5856cfSAndreas Gohr msg($lang['resendpwdnouser'], -1); 10061d5856cfSAndreas Gohr return false; 10071d5856cfSAndreas Gohr } 10081d5856cfSAndreas Gohr 10091d5856cfSAndreas Gohr // generate auth token 1010183a7b88SAndreas Gohr $token = md5(uniqid(mt_rand(), true)); // random secret 10111d5856cfSAndreas Gohr $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth'; 10121d5856cfSAndreas Gohr $url = wl('', array('do'=> 'resendpwd', 'pwauth'=> $token), true, '&'); 10131d5856cfSAndreas Gohr 10141d5856cfSAndreas Gohr io_saveFile($tfile, $user); 10151d5856cfSAndreas Gohr 10161d5856cfSAndreas Gohr $text = rawLocale('pwconfirm'); 1017d7169d19SAndreas Gohr $trep = array( 1018d7169d19SAndreas Gohr 'FULLNAME' => $userinfo['name'], 1019d7169d19SAndreas Gohr 'LOGIN' => $user, 1020d7169d19SAndreas Gohr 'CONFIRM' => $url 1021d7169d19SAndreas Gohr ); 10221d5856cfSAndreas Gohr 1023d7169d19SAndreas Gohr $mail = new Mailer(); 1024d7169d19SAndreas Gohr $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>'); 1025d7169d19SAndreas Gohr $mail->subject($lang['regpwmail']); 1026d7169d19SAndreas Gohr $mail->setBody($text, $trep); 1027d7169d19SAndreas Gohr if($mail->send()) { 10281d5856cfSAndreas Gohr msg($lang['resendpwdconfirm'], 1); 10291d5856cfSAndreas Gohr } else { 10301d5856cfSAndreas Gohr msg($lang['regmailfail'], -1); 10311d5856cfSAndreas Gohr } 10321d5856cfSAndreas Gohr return true; 10331d5856cfSAndreas Gohr } 1034ab5d26daSAndreas Gohr // never reached 10358b06d178Schris} 10368b06d178Schris 10378b06d178Schris/** 1038b0855b11Sandi * Encrypts a password using the given method and salt 1039b0855b11Sandi * 1040b0855b11Sandi * If the selected method needs a salt and none was given, a random one 1041b0855b11Sandi * is chosen. 1042b0855b11Sandi * 1043b0855b11Sandi * @author Andreas Gohr <andi@splitbrain.org> 1044ab5d26daSAndreas Gohr * @param string $clear The clear text password 1045ab5d26daSAndreas Gohr * @param string $method The hashing method 1046ab5d26daSAndreas Gohr * @param string $salt A salt, null for random 1047b0855b11Sandi * @return string The crypted password 1048b0855b11Sandi */ 1049577c7cdaSAndreas Gohrfunction auth_cryptPassword($clear, $method = '', $salt = null) { 1050b0855b11Sandi global $conf; 1051b0855b11Sandi if(empty($method)) $method = $conf['passcrypt']; 105210a76f6fSfrank 10533a0a2d05SAndreas Gohr $pass = new PassHash(); 10543a0a2d05SAndreas Gohr $call = 'hash_'.$method; 1055b0855b11Sandi 10563a0a2d05SAndreas Gohr if(!method_exists($pass, $call)) { 1057b0855b11Sandi msg("Unsupported crypt method $method", -1); 10583a0a2d05SAndreas Gohr return false; 1059b0855b11Sandi } 10603a0a2d05SAndreas Gohr 10613a0a2d05SAndreas Gohr return $pass->$call($clear, $salt); 1062b0855b11Sandi} 1063b0855b11Sandi 1064b0855b11Sandi/** 1065b0855b11Sandi * Verifies a cleartext password against a crypted hash 1066b0855b11Sandi * 1067b0855b11Sandi * @author Andreas Gohr <andi@splitbrain.org> 1068ab5d26daSAndreas Gohr * @param string $clear The clear text password 1069ab5d26daSAndreas Gohr * @param string $crypt The hash to compare with 1070ab5d26daSAndreas Gohr * @return bool true if both match 1071b0855b11Sandi */ 1072b0855b11Sandifunction auth_verifyPassword($clear, $crypt) { 10733a0a2d05SAndreas Gohr $pass = new PassHash(); 10743a0a2d05SAndreas Gohr return $pass->verify_hash($clear, $crypt); 1075b0855b11Sandi} 1076340756e4Sandi 1077a0b5b007SChris Smith/** 1078a0b5b007SChris Smith * Set the authentication cookie and add user identification data to the session 1079a0b5b007SChris Smith * 1080a0b5b007SChris Smith * @param string $user username 1081a0b5b007SChris Smith * @param string $pass encrypted password 1082a0b5b007SChris Smith * @param bool $sticky whether or not the cookie will last beyond the session 1083ab5d26daSAndreas Gohr * @return bool 1084a0b5b007SChris Smith */ 1085a0b5b007SChris Smithfunction auth_setCookie($user, $pass, $sticky) { 1086a0b5b007SChris Smith global $conf; 1087ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 1088a0b5b007SChris Smith global $auth; 108979d00841SOliver Geisen global $USERINFO; 1090a0b5b007SChris Smith 1091beca106aSAdrian Lang if(!$auth) return false; 1092a0b5b007SChris Smith $USERINFO = $auth->getUserData($user); 1093a0b5b007SChris Smith 1094a0b5b007SChris Smith // set cookie 1095645c0a36SAndreas Gohr $cookie = base64_encode($user).'|'.((int) $sticky).'|'.base64_encode($pass); 109673ab87deSGabriel Birke $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 1097c66972f2SAdrian Lang $time = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year 1098a0b5b007SChris Smith if(version_compare(PHP_VERSION, '5.2.0', '>')) { 109973ab87deSGabriel Birke setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true); 1100a0b5b007SChris Smith } else { 110173ab87deSGabriel Birke setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl())); 1102a0b5b007SChris Smith } 1103a0b5b007SChris Smith // set session 1104a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['user'] = $user; 1105234ce57eSAndreas Gohr $_SESSION[DOKU_COOKIE]['auth']['pass'] = sha1($pass); 1106a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['buid'] = auth_browseruid(); 1107a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO; 1108a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['time'] = time(); 1109ab5d26daSAndreas Gohr 1110ab5d26daSAndreas Gohr return true; 1111a0b5b007SChris Smith} 1112a0b5b007SChris Smith 1113645c0a36SAndreas Gohr/** 1114645c0a36SAndreas Gohr * Returns the user, (encrypted) password and sticky bit from cookie 1115645c0a36SAndreas Gohr * 1116645c0a36SAndreas Gohr * @returns array 1117645c0a36SAndreas Gohr */ 1118645c0a36SAndreas Gohrfunction auth_getCookie() { 1119c66972f2SAdrian Lang if(!isset($_COOKIE[DOKU_COOKIE])) { 1120c66972f2SAdrian Lang return array(null, null, null); 1121c66972f2SAdrian Lang } 1122645c0a36SAndreas Gohr list($user, $sticky, $pass) = explode('|', $_COOKIE[DOKU_COOKIE], 3); 1123645c0a36SAndreas Gohr $sticky = (bool) $sticky; 1124645c0a36SAndreas Gohr $pass = base64_decode($pass); 1125645c0a36SAndreas Gohr $user = base64_decode($user); 1126645c0a36SAndreas Gohr return array($user, $sticky, $pass); 1127645c0a36SAndreas Gohr} 1128645c0a36SAndreas Gohr 1129e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 : 1130