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; 37ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 3803c4aec3Schris global $auth; 39bcc94b2cSAndreas Gohr /* @var Input $INPUT */ 40bcc94b2cSAndreas Gohr global $INPUT; 419a9714acSDominik Eckelmann global $AUTH_ACL; 429a9714acSDominik Eckelmann global $lang; 439a9714acSDominik Eckelmann $AUTH_ACL = array(); 4403c4aec3Schris 4516905344SAndreas Gohr if(!$conf['useacl']) return false; 4616905344SAndreas Gohr 4716905344SAndreas Gohr // load the the backend auth functions and instantiate the auth object XXX 488b06d178Schris if(@file_exists(DOKU_INC.'inc/auth/'.$conf['authtype'].'.class.php')) { 498b06d178Schris require_once(DOKU_INC.'inc/auth/basic.class.php'); 508b06d178Schris require_once(DOKU_INC.'inc/auth/'.$conf['authtype'].'.class.php'); 518b06d178Schris 528b06d178Schris $auth_class = "auth_".$conf['authtype']; 53cd52f92dSchris if(class_exists($auth_class)) { 548b06d178Schris $auth = new $auth_class(); 55d2dde4ebSMatthias Grimm if($auth->success == false) { 560f4f4adfSAndreas Gohr // degrade to unauthenticated user 57d2dde4ebSMatthias Grimm unset($auth); 580f4f4adfSAndreas Gohr auth_logoff(); 59cd52f92dSchris msg($lang['authtempfail'], -1); 60d2dde4ebSMatthias Grimm } 618b06d178Schris } else { 623816dcbcSAndreas Gohr nice_die($lang['authmodfailed']); 63cd52f92dSchris } 64cd52f92dSchris } else { 653816dcbcSAndreas Gohr nice_die($lang['authmodfailed']); 668b06d178Schris } 67f3f0262cSandi 68ab5d26daSAndreas Gohr if(!$auth) return false; 6916905344SAndreas Gohr 7016905344SAndreas Gohr // do the login either by cookie or provided credentials XXX 71bcc94b2cSAndreas Gohr $INPUT->set('http_credentials', false); 72bcc94b2cSAndreas Gohr if(!$conf['rememberme']) $INPUT->set('r', false); 73bbbd6568SAndreas Gohr 74b2665af7SMichael Hamann // handle renamed HTTP_AUTHORIZATION variable (can happen when a fix like 75b2665af7SMichael Hamann // the one presented at 76b2665af7SMichael Hamann // http://www.besthostratings.com/articles/http-auth-php-cgi.html is used 77b2665af7SMichael Hamann // for enabling HTTP authentication with CGI/SuExec) 78b2665af7SMichael Hamann if(isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) 79b2665af7SMichael Hamann $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION']; 80528ddc7cSAndreas Gohr // streamline HTTP auth credentials (IIS/rewrite -> mod_php) 8106156f3cSAndreas Gohr if(isset($_SERVER['HTTP_AUTHORIZATION'])) { 82528ddc7cSAndreas Gohr list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = 83528ddc7cSAndreas Gohr explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); 84528ddc7cSAndreas Gohr } 85528ddc7cSAndreas Gohr 861e8c9c90SAndreas Gohr // if no credentials were given try to use HTTP auth (for SSO) 87bcc94b2cSAndreas Gohr if(!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])) { 88bcc94b2cSAndreas Gohr $INPUT->set('u', $_SERVER['PHP_AUTH_USER']); 89bcc94b2cSAndreas Gohr $INPUT->set('p', $_SERVER['PHP_AUTH_PW']); 90bcc94b2cSAndreas Gohr $INPUT->set('http_credentials', true); 911e8c9c90SAndreas Gohr } 921e8c9c90SAndreas Gohr 93191bb90aSAndreas Gohr // apply cleaning 94bcc94b2cSAndreas Gohr $INPUT->set('u', $auth->cleanUser($INPUT->str('u'))); 95191bb90aSAndreas Gohr 96bcc94b2cSAndreas Gohr if($INPUT->str('authtok')) { 97f13fa892SAndreas Gohr // when an authentication token is given, trust the session 98bcc94b2cSAndreas Gohr auth_validateToken($INPUT->str('authtok')); 99f13fa892SAndreas Gohr } elseif(!is_null($auth) && $auth->canDo('external')) { 100f13fa892SAndreas Gohr // external trust mechanism in place 101bcc94b2cSAndreas Gohr $auth->trustExternal($INPUT->str('u'), $INPUT->str('p'), $INPUT->bool('r')); 102f5cb575dSAndreas Gohr } else { 1036080c584SRobin Gareus $evdata = array( 104bcc94b2cSAndreas Gohr 'user' => $INPUT->str('u'), 105bcc94b2cSAndreas Gohr 'password' => $INPUT->str('p'), 106bcc94b2cSAndreas Gohr 'sticky' => $INPUT->bool('r'), 107bcc94b2cSAndreas Gohr 'silent' => $INPUT->bool('http_credentials') 1086080c584SRobin Gareus ); 109b5ee21aaSAdrian Lang trigger_event('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper'); 110f5cb575dSAndreas Gohr } 111f5cb575dSAndreas Gohr 11216905344SAndreas Gohr //load ACL into a global array XXX 11375c93b77SAndreas Gohr $AUTH_ACL = auth_loadACL(); 114ab5d26daSAndreas Gohr 115ab5d26daSAndreas Gohr return true; 11675c93b77SAndreas Gohr} 11775c93b77SAndreas Gohr 11875c93b77SAndreas Gohr/** 11975c93b77SAndreas Gohr * Loads the ACL setup and handle user wildcards 12075c93b77SAndreas Gohr * 12175c93b77SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 122ab5d26daSAndreas Gohr * @return array 12375c93b77SAndreas Gohr */ 12475c93b77SAndreas Gohrfunction auth_loadACL() { 12575c93b77SAndreas Gohr global $config_cascade; 126b78bf706Sromain global $USERINFO; 12775c93b77SAndreas Gohr 12875c93b77SAndreas Gohr if(!is_readable($config_cascade['acl']['default'])) return array(); 12975c93b77SAndreas Gohr 13075c93b77SAndreas Gohr $acl = file($config_cascade['acl']['default']); 13175c93b77SAndreas Gohr 132191bb90aSAndreas Gohr //support user wildcard 133*32e82180SAndreas Gohr $out = array(); 13411f03531SAndreas Gohr if(isset($_SERVER['REMOTE_USER'])){ 13575c93b77SAndreas Gohr $len = count($acl); 13675c93b77SAndreas Gohr for($i = 0; $i < $len; $i++) { 13775c93b77SAndreas Gohr if($acl[$i]{0} == '#') continue; 138*32e82180SAndreas Gohr if(!trim($acl[$i])) continue; 13975c93b77SAndreas Gohr list($id,$rest) = preg_split('/\s+/',$acl[$i],2); 140*32e82180SAndreas Gohr 141d0f8d50bSAndreas Gohr if(strstr($acl[$i], '%GROUP%')){ 142b78bf706Sromain foreach($USERINFO['grps'] as $grp){ 143b78bf706Sromain $nid = str_replace('%GROUP%',cleanID($grp),$id); 144*32e82180SAndreas Gohr $nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest); 145*32e82180SAndreas Gohr $out[] = "$nid\t$nrest"; 146b78bf706Sromain } 147*32e82180SAndreas Gohr } else { 14875c93b77SAndreas Gohr $id = str_replace('%USER%',cleanID($_SERVER['REMOTE_USER']),$id); 14975c93b77SAndreas Gohr $rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest); 150*32e82180SAndreas Gohr $out[] = "$id\t$rest"; 151a8fe108bSGuy Brand } 15211799630Sandi } 153*32e82180SAndreas Gohr } 154*32e82180SAndreas Gohr return $out; 155f3f0262cSandi} 156f3f0262cSandi 157ab5d26daSAndreas Gohr/** 158ab5d26daSAndreas Gohr * Event hook callback for AUTH_LOGIN_CHECK 159ab5d26daSAndreas Gohr * 160ab5d26daSAndreas Gohr * @param $evdata 161ab5d26daSAndreas Gohr * @return bool 162ab5d26daSAndreas Gohr */ 163b5ee21aaSAdrian Langfunction auth_login_wrapper($evdata) { 164ab5d26daSAndreas Gohr return auth_login( 165ab5d26daSAndreas Gohr $evdata['user'], 166b5ee21aaSAdrian Lang $evdata['password'], 167b5ee21aaSAdrian Lang $evdata['sticky'], 168ab5d26daSAndreas Gohr $evdata['silent'] 169ab5d26daSAndreas Gohr ); 170b5ee21aaSAdrian Lang} 171b5ee21aaSAdrian Lang 172f3f0262cSandi/** 173f3f0262cSandi * This tries to login the user based on the sent auth credentials 174f3f0262cSandi * 175f3f0262cSandi * The authentication works like this: if a username was given 17615fae107Sandi * a new login is assumed and user/password are checked. If they 17715fae107Sandi * are correct the password is encrypted with blowfish and stored 17815fae107Sandi * together with the username in a cookie - the same info is stored 17915fae107Sandi * in the session, too. Additonally a browserID is stored in the 18015fae107Sandi * session. 18115fae107Sandi * 18215fae107Sandi * If no username was given the cookie is checked: if the username, 18315fae107Sandi * crypted password and browserID match between session and cookie 18415fae107Sandi * no further testing is done and the user is accepted 18515fae107Sandi * 18615fae107Sandi * If a cookie was found but no session info was availabe the 187136ce040Sandi * blowfish encrypted password from the cookie is decrypted and 18815fae107Sandi * together with username rechecked by calling this function again. 189f3f0262cSandi * 190f3f0262cSandi * On a successful login $_SERVER[REMOTE_USER] and $USERINFO 191f3f0262cSandi * are set. 19215fae107Sandi * 19315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 19415fae107Sandi * 19515fae107Sandi * @param string $user Username 19615fae107Sandi * @param string $pass Cleartext Password 19715fae107Sandi * @param bool $sticky Cookie should not expire 198f112c2faSAndreas Gohr * @param bool $silent Don't show error on bad auth 19915fae107Sandi * @return bool true on successful auth 200f3f0262cSandi */ 201f112c2faSAndreas Gohrfunction auth_login($user, $pass, $sticky = false, $silent = false) { 202f3f0262cSandi global $USERINFO; 203f3f0262cSandi global $conf; 204f3f0262cSandi global $lang; 205ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 206cd52f92dSchris global $auth; 207ab5d26daSAndreas Gohr 208132bdbfeSandi $sticky ? $sticky = true : $sticky = false; //sanity check 209f3f0262cSandi 210beca106aSAdrian Lang if(!$auth) return false; 211beca106aSAdrian Lang 212bbbd6568SAndreas Gohr if(!empty($user)) { 213132bdbfeSandi //usual login 214cd52f92dSchris if($auth->checkPass($user, $pass)) { 215132bdbfeSandi // make logininfo globally available 216f3f0262cSandi $_SERVER['REMOTE_USER'] = $user; 21732ed2b36SAndreas Gohr $secret = auth_cookiesalt(!$sticky); //bind non-sticky to session 218e940aea4SAndreas Gohr auth_setCookie($user, PMA_blowfish_encrypt($pass, $secret), $sticky); 219132bdbfeSandi return true; 220f3f0262cSandi } else { 221f3f0262cSandi //invalid credentials - log off 222f112c2faSAndreas Gohr if(!$silent) msg($lang['badlogin'], -1); 223f3f0262cSandi auth_logoff(); 224132bdbfeSandi return false; 225f3f0262cSandi } 226f3f0262cSandi } else { 227132bdbfeSandi // read cookie information 228645c0a36SAndreas Gohr list($user, $sticky, $pass) = auth_getCookie(); 229132bdbfeSandi if($user && $pass) { 230132bdbfeSandi // we got a cookie - see if we can trust it 231fa7c70ffSAdrian Lang 232fa7c70ffSAdrian Lang // get session info 233fa7c70ffSAdrian Lang $session = $_SESSION[DOKU_COOKIE]['auth']; 234132bdbfeSandi if(isset($session) && 2357172dbc0SAndreas Gohr $auth->useSessionCache($user) && 2364c989037SChris Smith ($session['time'] >= time() - $conf['auth_security_timeout']) && 237132bdbfeSandi ($session['user'] == $user) && 238234ce57eSAndreas Gohr ($session['pass'] == sha1($pass)) && //still crypted 239ab5d26daSAndreas Gohr ($session['buid'] == auth_browseruid()) 240ab5d26daSAndreas Gohr ) { 241234ce57eSAndreas Gohr 242132bdbfeSandi // he has session, cookie and browser right - let him in 243132bdbfeSandi $_SERVER['REMOTE_USER'] = $user; 244132bdbfeSandi $USERINFO = $session['info']; //FIXME move all references to session 245132bdbfeSandi return true; 246132bdbfeSandi } 247f112c2faSAndreas Gohr // no we don't trust it yet - recheck pass but silent 24832ed2b36SAndreas Gohr $secret = auth_cookiesalt(!$sticky); //bind non-sticky to session 249e940aea4SAndreas Gohr $pass = PMA_blowfish_decrypt($pass, $secret); 250f112c2faSAndreas Gohr return auth_login($user, $pass, $sticky, true); 251132bdbfeSandi } 252132bdbfeSandi } 253f3f0262cSandi //just to be sure 254883179a4SAndreas Gohr auth_logoff(true); 255132bdbfeSandi return false; 256f3f0262cSandi} 257132bdbfeSandi 258132bdbfeSandi/** 259f13fa892SAndreas Gohr * Checks if a given authentication token was stored in the session 260f13fa892SAndreas Gohr * 261f13fa892SAndreas Gohr * Will setup authentication data using data from the session if the 262f13fa892SAndreas Gohr * token is correct. Will exit with a 401 Status if not. 263f13fa892SAndreas Gohr * 264f13fa892SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 265f13fa892SAndreas Gohr * @param string $token The authentication token 266f13fa892SAndreas Gohr * @return boolean true (or will exit on failure) 267f13fa892SAndreas Gohr */ 268f13fa892SAndreas Gohrfunction auth_validateToken($token) { 269f13fa892SAndreas Gohr if(!$token || $token != $_SESSION[DOKU_COOKIE]['auth']['token']) { 270f13fa892SAndreas Gohr // bad token 271f13fa892SAndreas Gohr header("HTTP/1.0 401 Unauthorized"); 272f13fa892SAndreas Gohr print 'Invalid auth token - maybe the session timed out'; 273f13fa892SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['token']); // no second chance 274f13fa892SAndreas Gohr exit; 275f13fa892SAndreas Gohr } 276f13fa892SAndreas Gohr // still here? trust the session data 277f13fa892SAndreas Gohr global $USERINFO; 278f13fa892SAndreas Gohr $_SERVER['REMOTE_USER'] = $_SESSION[DOKU_COOKIE]['auth']['user']; 279f13fa892SAndreas Gohr $USERINFO = $_SESSION[DOKU_COOKIE]['auth']['info']; 280f13fa892SAndreas Gohr return true; 281f13fa892SAndreas Gohr} 282f13fa892SAndreas Gohr 283f13fa892SAndreas Gohr/** 284f13fa892SAndreas Gohr * Create an auth token and store it in the session 285f13fa892SAndreas Gohr * 286f13fa892SAndreas Gohr * NOTE: this is completely unrelated to the getSecurityToken() function 287f13fa892SAndreas Gohr * 288f13fa892SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 289f13fa892SAndreas Gohr * @return string The auth token 290f13fa892SAndreas Gohr */ 291f13fa892SAndreas Gohrfunction auth_createToken() { 292f13fa892SAndreas Gohr $token = md5(mt_rand()); 29309c2d803SAndreas Gohr @session_start(); // reopen the session if needed 294f13fa892SAndreas Gohr $_SESSION[DOKU_COOKIE]['auth']['token'] = $token; 29509c2d803SAndreas Gohr session_write_close(); 296f13fa892SAndreas Gohr return $token; 297f13fa892SAndreas Gohr} 298f13fa892SAndreas Gohr 299f13fa892SAndreas Gohr/** 300136ce040Sandi * Builds a pseudo UID from browser and IP data 301132bdbfeSandi * 302132bdbfeSandi * This is neither unique nor unfakable - still it adds some 303136ce040Sandi * security. Using the first part of the IP makes sure 304136ce040Sandi * proxy farms like AOLs are stil okay. 30515fae107Sandi * 30615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 30715fae107Sandi * 30815fae107Sandi * @return string a MD5 sum of various browser headers 309132bdbfeSandi */ 310132bdbfeSandifunction auth_browseruid() { 3112f9daf16SAndreas Gohr $ip = clientIP(true); 312132bdbfeSandi $uid = ''; 313132bdbfeSandi $uid .= $_SERVER['HTTP_USER_AGENT']; 314132bdbfeSandi $uid .= $_SERVER['HTTP_ACCEPT_ENCODING']; 315132bdbfeSandi $uid .= $_SERVER['HTTP_ACCEPT_LANGUAGE']; 316132bdbfeSandi $uid .= $_SERVER['HTTP_ACCEPT_CHARSET']; 3172f9daf16SAndreas Gohr $uid .= substr($ip, 0, strpos($ip, '.')); 318132bdbfeSandi return md5($uid); 319132bdbfeSandi} 320132bdbfeSandi 321132bdbfeSandi/** 322132bdbfeSandi * Creates a random key to encrypt the password in cookies 32315fae107Sandi * 32415fae107Sandi * This function tries to read the password for encrypting 32598407a7aSandi * cookies from $conf['metadir'].'/_htcookiesalt' 32615fae107Sandi * if no such file is found a random key is created and 32715fae107Sandi * and stored in this file. 32815fae107Sandi * 32915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 33032ed2b36SAndreas Gohr * @param bool $addsession if true, the sessionid is added to the salt 33115fae107Sandi * @return string 332132bdbfeSandi */ 33332ed2b36SAndreas Gohrfunction auth_cookiesalt($addsession = false) { 334132bdbfeSandi global $conf; 33598407a7aSandi $file = $conf['metadir'].'/_htcookiesalt'; 336132bdbfeSandi $salt = io_readFile($file); 337132bdbfeSandi if(empty($salt)) { 338132bdbfeSandi $salt = uniqid(rand(), true); 339132bdbfeSandi io_saveFile($file, $salt); 340132bdbfeSandi } 34132ed2b36SAndreas Gohr if($addsession) { 34232ed2b36SAndreas Gohr $salt .= session_id(); 34332ed2b36SAndreas Gohr } 344132bdbfeSandi return $salt; 345f3f0262cSandi} 346f3f0262cSandi 347f3f0262cSandi/** 348883179a4SAndreas Gohr * Log out the current user 349883179a4SAndreas Gohr * 350f3f0262cSandi * This clears all authentication data and thus log the user 351883179a4SAndreas Gohr * off. It also clears session data. 35215fae107Sandi * 35315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 354883179a4SAndreas Gohr * @param bool $keepbc - when true, the breadcrumb data is not cleared 355f3f0262cSandi */ 356883179a4SAndreas Gohrfunction auth_logoff($keepbc = false) { 357f3f0262cSandi global $conf; 358f3f0262cSandi global $USERINFO; 359ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 3605298a619SAndreas Gohr global $auth; 36137065e65Sandi 362d4869846SAndreas Gohr // make sure the session is writable (it usually is) 363e9621d07SAndreas Gohr @session_start(); 364e9621d07SAndreas Gohr 365e71ce681SAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['auth']['user'])) 366e71ce681SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['user']); 367e71ce681SAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['auth']['pass'])) 368e71ce681SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['pass']); 369e71ce681SAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['auth']['info'])) 370e71ce681SAndreas Gohr unset($_SESSION[DOKU_COOKIE]['auth']['info']); 371883179a4SAndreas Gohr if(!$keepbc && isset($_SESSION[DOKU_COOKIE]['bc'])) 372e16eccb7SGuy Brand unset($_SESSION[DOKU_COOKIE]['bc']); 37337065e65Sandi if(isset($_SERVER['REMOTE_USER'])) 374f3f0262cSandi unset($_SERVER['REMOTE_USER']); 375132bdbfeSandi $USERINFO = null; //FIXME 376f5c6743cSAndreas Gohr 37773ab87deSGabriel Birke $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 378f5c6743cSAndreas Gohr if(version_compare(PHP_VERSION, '5.2.0', '>')) { 37973ab87deSGabriel Birke setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true); 380f5c6743cSAndreas Gohr } else { 38173ab87deSGabriel Birke setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl())); 382f5c6743cSAndreas Gohr } 3835298a619SAndreas Gohr 384880f62faSAndreas Gohr if($auth) $auth->logOff(); 385f3f0262cSandi} 386f3f0262cSandi 387f3f0262cSandi/** 388f8cc712eSAndreas Gohr * Check if a user is a manager 389f8cc712eSAndreas Gohr * 390f8cc712eSAndreas Gohr * Should usually be called without any parameters to check the current 391f8cc712eSAndreas Gohr * user. 392f8cc712eSAndreas Gohr * 393f8cc712eSAndreas Gohr * The info is available through $INFO['ismanager'], too 394f8cc712eSAndreas Gohr * 395f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 396f8cc712eSAndreas Gohr * @see auth_isadmin 397ab5d26daSAndreas Gohr * @param string $user Username 398ab5d26daSAndreas Gohr * @param array $groups List of groups the user is in 399ab5d26daSAndreas Gohr * @param bool $adminonly when true checks if user is admin 400ab5d26daSAndreas Gohr * @return bool 401f8cc712eSAndreas Gohr */ 402f8cc712eSAndreas Gohrfunction auth_ismanager($user = null, $groups = null, $adminonly = false) { 403f8cc712eSAndreas Gohr global $conf; 404f8cc712eSAndreas Gohr global $USERINFO; 405ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 406d752aedeSAndreas Gohr global $auth; 407f8cc712eSAndreas Gohr 408beca106aSAdrian Lang if(!$auth) return false; 409c66972f2SAdrian Lang if(is_null($user)) { 410c66972f2SAdrian Lang if(!isset($_SERVER['REMOTE_USER'])) { 411c66972f2SAdrian Lang return false; 412c66972f2SAdrian Lang } else { 413c66972f2SAdrian Lang $user = $_SERVER['REMOTE_USER']; 414c66972f2SAdrian Lang } 415c66972f2SAdrian Lang } 416d6dc956fSAndreas Gohr if(is_null($groups)) { 417d6dc956fSAndreas Gohr $groups = (array) $USERINFO['grps']; 418e259aa79SAndreas Gohr } 419e259aa79SAndreas Gohr 420d6dc956fSAndreas Gohr // check superuser match 421d6dc956fSAndreas Gohr if(auth_isMember($conf['superuser'], $user, $groups)) return true; 422d6dc956fSAndreas Gohr if($adminonly) return false; 423e259aa79SAndreas Gohr // check managers 424d6dc956fSAndreas Gohr if(auth_isMember($conf['manager'], $user, $groups)) return true; 42500ce12daSChris Smith 426f8cc712eSAndreas Gohr return false; 427f8cc712eSAndreas Gohr} 428f8cc712eSAndreas Gohr 429f8cc712eSAndreas Gohr/** 430f8cc712eSAndreas Gohr * Check if a user is admin 431f8cc712eSAndreas Gohr * 432f8cc712eSAndreas Gohr * Alias to auth_ismanager with adminonly=true 433f8cc712eSAndreas Gohr * 434f8cc712eSAndreas Gohr * The info is available through $INFO['isadmin'], too 435f8cc712eSAndreas Gohr * 436f8cc712eSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 437ab5d26daSAndreas Gohr * @see auth_ismanager() 438ab5d26daSAndreas Gohr * @param string $user Username 439ab5d26daSAndreas Gohr * @param array $groups List of groups the user is in 440ab5d26daSAndreas Gohr * @return bool 441f8cc712eSAndreas Gohr */ 442f8cc712eSAndreas Gohrfunction auth_isadmin($user = null, $groups = null) { 443f8cc712eSAndreas Gohr return auth_ismanager($user, $groups, true); 444f8cc712eSAndreas Gohr} 445f8cc712eSAndreas Gohr 446d6dc956fSAndreas Gohr/** 447d6dc956fSAndreas Gohr * Match a user and his groups against a comma separated list of 448d6dc956fSAndreas Gohr * users and groups to determine membership status 449d6dc956fSAndreas Gohr * 450d6dc956fSAndreas Gohr * Note: all input should NOT be nameencoded. 451d6dc956fSAndreas Gohr * 452d6dc956fSAndreas Gohr * @param $memberlist string commaseparated list of allowed users and groups 453d6dc956fSAndreas Gohr * @param $user string user to match against 454d6dc956fSAndreas Gohr * @param $groups array groups the user is member of 4555446f3ffSDominik Eckelmann * @return bool true for membership acknowledged 456d6dc956fSAndreas Gohr */ 457d6dc956fSAndreas Gohrfunction auth_isMember($memberlist, $user, array $groups) { 458ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 459d6dc956fSAndreas Gohr global $auth; 460d6dc956fSAndreas Gohr if(!$auth) return false; 461d6dc956fSAndreas Gohr 462d6dc956fSAndreas Gohr // clean user and groups 4634f56ecbfSAdrian Lang if(!$auth->isCaseSensitive()) { 464d6dc956fSAndreas Gohr $user = utf8_strtolower($user); 465d6dc956fSAndreas Gohr $groups = array_map('utf8_strtolower', $groups); 466d6dc956fSAndreas Gohr } 467d6dc956fSAndreas Gohr $user = $auth->cleanUser($user); 468d6dc956fSAndreas Gohr $groups = array_map(array($auth, 'cleanGroup'), $groups); 469d6dc956fSAndreas Gohr 470d6dc956fSAndreas Gohr // extract the memberlist 471d6dc956fSAndreas Gohr $members = explode(',', $memberlist); 472d6dc956fSAndreas Gohr $members = array_map('trim', $members); 473d6dc956fSAndreas Gohr $members = array_unique($members); 474d6dc956fSAndreas Gohr $members = array_filter($members); 475d6dc956fSAndreas Gohr 476d6dc956fSAndreas Gohr // compare cleaned values 477d6dc956fSAndreas Gohr foreach($members as $member) { 4784f56ecbfSAdrian Lang if(!$auth->isCaseSensitive()) $member = utf8_strtolower($member); 479d6dc956fSAndreas Gohr if($member[0] == '@') { 480d6dc956fSAndreas Gohr $member = $auth->cleanGroup(substr($member, 1)); 481d6dc956fSAndreas Gohr if(in_array($member, $groups)) return true; 482d6dc956fSAndreas Gohr } else { 483d6dc956fSAndreas Gohr $member = $auth->cleanUser($member); 484d6dc956fSAndreas Gohr if($member == $user) return true; 485d6dc956fSAndreas Gohr } 486d6dc956fSAndreas Gohr } 487d6dc956fSAndreas Gohr 488d6dc956fSAndreas Gohr // still here? not a member! 489d6dc956fSAndreas Gohr return false; 490d6dc956fSAndreas Gohr} 491d6dc956fSAndreas Gohr 492f8cc712eSAndreas Gohr/** 49315fae107Sandi * Convinience function for auth_aclcheck() 49415fae107Sandi * 49515fae107Sandi * This checks the permissions for the current user 49615fae107Sandi * 49715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 49815fae107Sandi * 4991698b983Smichael * @param string $id page ID (needs to be resolved and cleaned) 50015fae107Sandi * @return int permission level 501f3f0262cSandi */ 502f3f0262cSandifunction auth_quickaclcheck($id) { 503f3f0262cSandi global $conf; 504f3f0262cSandi global $USERINFO; 505f3f0262cSandi # if no ACL is used always return upload rights 506f3f0262cSandi if(!$conf['useacl']) return AUTH_UPLOAD; 507f3f0262cSandi return auth_aclcheck($id, $_SERVER['REMOTE_USER'], $USERINFO['grps']); 508f3f0262cSandi} 509f3f0262cSandi 510f3f0262cSandi/** 511f3f0262cSandi * Returns the maximum rights a user has for 512f3f0262cSandi * the given ID or its namespace 51315fae107Sandi * 51415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 51515fae107Sandi * 5161698b983Smichael * @param string $id page ID (needs to be resolved and cleaned) 51715fae107Sandi * @param string $user Username 5183272d797SAndreas Gohr * @param array|null $groups Array of groups the user is in 51915fae107Sandi * @return int permission level 520f3f0262cSandi */ 521f3f0262cSandifunction auth_aclcheck($id, $user, $groups) { 522f3f0262cSandi global $conf; 523f3f0262cSandi global $AUTH_ACL; 524ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 525d752aedeSAndreas Gohr global $auth; 526f3f0262cSandi 52785d03f68SAndreas Gohr // if no ACL is used always return upload rights 528f3f0262cSandi if(!$conf['useacl']) return AUTH_UPLOAD; 529beca106aSAdrian Lang if(!$auth) return AUTH_NONE; 530f3f0262cSandi 531074cf26bSandi //make sure groups is an array 532074cf26bSandi if(!is_array($groups)) $groups = array(); 533074cf26bSandi 53485d03f68SAndreas Gohr //if user is superuser or in superusergroup return 255 (acl_admin) 535ab5d26daSAndreas Gohr if(auth_isadmin($user, $groups)) { 536ab5d26daSAndreas Gohr return AUTH_ADMIN; 537ab5d26daSAndreas Gohr } 53885d03f68SAndreas Gohr 539e259aa79SAndreas Gohr $ci = ''; 540e259aa79SAndreas Gohr if(!$auth->isCaseSensitive()) $ci = 'ui'; 541d752aedeSAndreas Gohr 542d752aedeSAndreas Gohr $user = $auth->cleanUser($user); 543d752aedeSAndreas Gohr $groups = array_map(array($auth, 'cleanGroup'), (array) $groups); 54485d03f68SAndreas Gohr $user = auth_nameencode($user); 54585d03f68SAndreas Gohr 5466c2bb100SAndreas Gohr //prepend groups with @ and nameencode 5472cd2db38Sandi $cnt = count($groups); 5482cd2db38Sandi for($i = 0; $i < $cnt; $i++) { 5496c2bb100SAndreas Gohr $groups[$i] = '@'.auth_nameencode($groups[$i]); 55010a76f6fSfrank } 55110a76f6fSfrank 552f3f0262cSandi $ns = getNS($id); 553f3f0262cSandi $perm = -1; 554f3f0262cSandi 55534aeb4afSAndreas Gohr if($user || count($groups)) { 556f3f0262cSandi //add ALL group 557f3f0262cSandi $groups[] = '@ALL'; 558f3f0262cSandi //add User 55934aeb4afSAndreas Gohr if($user) $groups[] = $user; 560f3f0262cSandi } else { 56148d7b7a6SDominik Eckelmann $groups[] = '@ALL'; 562f3f0262cSandi } 563f3f0262cSandi 564f3f0262cSandi //check exact match first 56548d7b7a6SDominik Eckelmann $matches = preg_grep('/^'.preg_quote($id, '/').'\s+(\S+)\s+/'.$ci, $AUTH_ACL); 566f3f0262cSandi if(count($matches)) { 567f3f0262cSandi foreach($matches as $match) { 568f3f0262cSandi $match = preg_replace('/#.*$/', '', $match); //ignore comments 569f3f0262cSandi $acl = preg_split('/\s+/', $match); 57048d7b7a6SDominik Eckelmann if(!in_array($acl[1], $groups)) { 57148d7b7a6SDominik Eckelmann continue; 57248d7b7a6SDominik Eckelmann } 5738ef6b7caSandi if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 574f3f0262cSandi if($acl[2] > $perm) { 575f3f0262cSandi $perm = $acl[2]; 576f3f0262cSandi } 577f3f0262cSandi } 578f3f0262cSandi if($perm > -1) { 579f3f0262cSandi //we had a match - return it 580f3f0262cSandi return $perm; 581f3f0262cSandi } 582f3f0262cSandi } 583f3f0262cSandi 584f3f0262cSandi //still here? do the namespace checks 585f3f0262cSandi if($ns) { 5863e304b55SMichael Hamann $path = $ns.':*'; 587f3f0262cSandi } else { 5883e304b55SMichael Hamann $path = '*'; //root document 589f3f0262cSandi } 590f3f0262cSandi 591f3f0262cSandi do { 59248d7b7a6SDominik Eckelmann $matches = preg_grep('/^'.preg_quote($path, '/').'\s+(\S+)\s+/'.$ci, $AUTH_ACL); 593f3f0262cSandi if(count($matches)) { 594f3f0262cSandi foreach($matches as $match) { 595f3f0262cSandi $match = preg_replace('/#.*$/', '', $match); //ignore comments 596f3f0262cSandi $acl = preg_split('/\s+/', $match); 59748d7b7a6SDominik Eckelmann if(!in_array($acl[1], $groups)) { 59848d7b7a6SDominik Eckelmann continue; 59948d7b7a6SDominik Eckelmann } 6008ef6b7caSandi if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 601f3f0262cSandi if($acl[2] > $perm) { 602f3f0262cSandi $perm = $acl[2]; 603f3f0262cSandi } 604f3f0262cSandi } 605f3f0262cSandi //we had a match - return it 60648d7b7a6SDominik Eckelmann if($perm != -1) { 607f3f0262cSandi return $perm; 608f3f0262cSandi } 60948d7b7a6SDominik Eckelmann } 610f3f0262cSandi //get next higher namespace 611f3f0262cSandi $ns = getNS($ns); 612f3f0262cSandi 6133e304b55SMichael Hamann if($path != '*') { 6143e304b55SMichael Hamann $path = $ns.':*'; 6153e304b55SMichael Hamann if($path == ':*') $path = '*'; 616f3f0262cSandi } else { 617f3f0262cSandi //we did this already 618f3f0262cSandi //looks like there is something wrong with the ACL 619f3f0262cSandi //break here 620d5ce66f6SAndreas Gohr msg('No ACL setup yet! Denying access to everyone.'); 621d5ce66f6SAndreas Gohr return AUTH_NONE; 622f3f0262cSandi } 623f3f0262cSandi } while(1); //this should never loop endless 624ab5d26daSAndreas Gohr return AUTH_NONE; 625f3f0262cSandi} 626f3f0262cSandi 627f3f0262cSandi/** 6286c2bb100SAndreas Gohr * Encode ASCII special chars 6296c2bb100SAndreas Gohr * 6306c2bb100SAndreas Gohr * Some auth backends allow special chars in their user and groupnames 6316c2bb100SAndreas Gohr * The special chars are encoded with this function. Only ASCII chars 6326c2bb100SAndreas Gohr * are encoded UTF-8 multibyte are left as is (different from usual 6336c2bb100SAndreas Gohr * urlencoding!). 6346c2bb100SAndreas Gohr * 6356c2bb100SAndreas Gohr * Decoding can be done with rawurldecode 6366c2bb100SAndreas Gohr * 6376c2bb100SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 6386c2bb100SAndreas Gohr * @see rawurldecode() 6396c2bb100SAndreas Gohr */ 640e838fc2eSAndreas Gohrfunction auth_nameencode($name, $skip_group = false) { 641a424cd8eSchris global $cache_authname; 642a424cd8eSchris $cache =& $cache_authname; 64331784267SAndreas Gohr $name = (string) $name; 644a424cd8eSchris 64580601d26SAndreas Gohr // never encode wildcard FS#1955 64680601d26SAndreas Gohr if($name == '%USER%') return $name; 647b78bf706Sromain if($name == '%GROUP%') return $name; 64880601d26SAndreas Gohr 649a424cd8eSchris if(!isset($cache[$name][$skip_group])) { 650e838fc2eSAndreas Gohr if($skip_group && $name{0} == '@') { 651ab5d26daSAndreas Gohr $cache[$name][$skip_group] = '@'.preg_replace( 652ab5d26daSAndreas Gohr '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/e', 653ab5d26daSAndreas Gohr "'%'.dechex(ord(substr('\\1',-1)))", substr($name, 1) 654ab5d26daSAndreas Gohr ); 655e838fc2eSAndreas Gohr } else { 656ab5d26daSAndreas Gohr $cache[$name][$skip_group] = preg_replace( 657ab5d26daSAndreas Gohr '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/e', 658ab5d26daSAndreas Gohr "'%'.dechex(ord(substr('\\1',-1)))", $name 659ab5d26daSAndreas Gohr ); 660e838fc2eSAndreas Gohr } 6616c2bb100SAndreas Gohr } 6626c2bb100SAndreas Gohr 663a424cd8eSchris return $cache[$name][$skip_group]; 664a424cd8eSchris} 665a424cd8eSchris 6666c2bb100SAndreas Gohr/** 667f3f0262cSandi * Create a pronouncable password 668f3f0262cSandi * 66915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 67015fae107Sandi * @link http://www.phpbuilder.com/annotate/message.php3?id=1014451 67115fae107Sandi * 67215fae107Sandi * @return string pronouncable password 673f3f0262cSandi */ 674f3f0262cSandifunction auth_pwgen() { 675f3f0262cSandi $pw = ''; 676f3f0262cSandi $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones 677f3f0262cSandi $v = 'aeiou'; //vowels 678f3f0262cSandi $a = $c.$v; //both 679f3f0262cSandi 680f3f0262cSandi //use two syllables... 681f3f0262cSandi for($i = 0; $i < 2; $i++) { 682f3f0262cSandi $pw .= $c[rand(0, strlen($c) - 1)]; 683f3f0262cSandi $pw .= $v[rand(0, strlen($v) - 1)]; 684f3f0262cSandi $pw .= $a[rand(0, strlen($a) - 1)]; 685f3f0262cSandi } 686f3f0262cSandi //... and add a nice number 687f3f0262cSandi $pw .= rand(10, 99); 688f3f0262cSandi 689f3f0262cSandi return $pw; 690f3f0262cSandi} 691f3f0262cSandi 692f3f0262cSandi/** 693f3f0262cSandi * Sends a password to the given user 694f3f0262cSandi * 69515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 696ab5d26daSAndreas Gohr * @param string $user Login name of the user 697ab5d26daSAndreas Gohr * @param string $password The new password in clear text 69815fae107Sandi * @return bool true on success 699f3f0262cSandi */ 700f3f0262cSandifunction auth_sendPassword($user, $password) { 701f3f0262cSandi global $lang; 702ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 703cd52f92dSchris global $auth; 704beca106aSAdrian Lang if(!$auth) return false; 705cd52f92dSchris 706d752aedeSAndreas Gohr $user = $auth->cleanUser($user); 707cd52f92dSchris $userinfo = $auth->getUserData($user); 708f3f0262cSandi 70987ddda95Sandi if(!$userinfo['mail']) return false; 710f3f0262cSandi 711f3f0262cSandi $text = rawLocale('password'); 712d7169d19SAndreas Gohr $trep = array( 713d7169d19SAndreas Gohr 'FULLNAME' => $userinfo['name'], 714d7169d19SAndreas Gohr 'LOGIN' => $user, 715d7169d19SAndreas Gohr 'PASSWORD' => $password 716d7169d19SAndreas Gohr ); 717f3f0262cSandi 718d7169d19SAndreas Gohr $mail = new Mailer(); 719d7169d19SAndreas Gohr $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>'); 720d7169d19SAndreas Gohr $mail->subject($lang['regpwmail']); 721d7169d19SAndreas Gohr $mail->setBody($text, $trep); 722d7169d19SAndreas Gohr return $mail->send(); 723f3f0262cSandi} 724f3f0262cSandi 725f3f0262cSandi/** 72615fae107Sandi * Register a new user 727f3f0262cSandi * 72815fae107Sandi * This registers a new user - Data is read directly from $_POST 72915fae107Sandi * 73015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 73115fae107Sandi * @return bool true on success, false on any error 732f3f0262cSandi */ 733f3f0262cSandifunction register() { 734f3f0262cSandi global $lang; 735eb5d07e4Sjan global $conf; 736ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 737cd52f92dSchris global $auth; 738f3f0262cSandi 739f3f0262cSandi if(!$_POST['save']) return false; 7403a48618aSAnika Henke if(!actionOK('register')) return false; 741640145a5Sandi 742f3f0262cSandi //clean username 743d752aedeSAndreas Gohr $_POST['login'] = trim($auth->cleanUser($_POST['login'])); 744d752aedeSAndreas Gohr 745f3f0262cSandi //clean fullname and email 74654f0e6eaSAndreas Gohr $_POST['fullname'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $_POST['fullname'])); 74754f0e6eaSAndreas Gohr $_POST['email'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $_POST['email'])); 748f3f0262cSandi 749f3f0262cSandi if(empty($_POST['login']) || 750f3f0262cSandi empty($_POST['fullname']) || 751ab5d26daSAndreas Gohr empty($_POST['email']) 752ab5d26daSAndreas Gohr ) { 753f3f0262cSandi msg($lang['regmissing'], -1); 754f3f0262cSandi return false; 755f3f0262cSandi } 756f3f0262cSandi 757cab2716aSmatthias.grimm if($conf['autopasswd']) { 758cab2716aSmatthias.grimm $pass = auth_pwgen(); // automatically generate password 759cab2716aSmatthias.grimm } elseif(empty($_POST['pass']) || 760ab5d26daSAndreas Gohr empty($_POST['passchk']) 761ab5d26daSAndreas Gohr ) { 762bf12ec81Sjan msg($lang['regmissing'], -1); // complain about missing passwords 763cab2716aSmatthias.grimm return false; 764cab2716aSmatthias.grimm } elseif($_POST['pass'] != $_POST['passchk']) { 765bf12ec81Sjan msg($lang['regbadpass'], -1); // complain about misspelled passwords 766cab2716aSmatthias.grimm return false; 767cab2716aSmatthias.grimm } else { 768cab2716aSmatthias.grimm $pass = $_POST['pass']; // accept checked and valid password 769cab2716aSmatthias.grimm } 770cab2716aSmatthias.grimm 771f3f0262cSandi //check mail 77244f669e9Sandi if(!mail_isvalid($_POST['email'])) { 773f3f0262cSandi msg($lang['regbadmail'], -1); 774f3f0262cSandi return false; 775f3f0262cSandi } 776f3f0262cSandi 777f3f0262cSandi //okay try to create the user 7787d3c8d42SGabriel Birke if(!$auth->triggerUserMod('create', array($_POST['login'], $pass, $_POST['fullname'], $_POST['email']))) { 779f3f0262cSandi msg($lang['reguexists'], -1); 780f3f0262cSandi return false; 781f3f0262cSandi } 782f3f0262cSandi 78302a498e7Schris // create substitutions for use in notification email 78402a498e7Schris $substitutions = array( 78502a498e7Schris 'NEWUSER' => $_POST['login'], 78602a498e7Schris 'NEWNAME' => $_POST['fullname'], 78702a498e7Schris 'NEWEMAIL' => $_POST['email'], 78802a498e7Schris ); 78902a498e7Schris 790cab2716aSmatthias.grimm if(!$conf['autopasswd']) { 791cab2716aSmatthias.grimm msg($lang['regsuccess2'], 1); 79202a498e7Schris notify('', 'register', '', $_POST['login'], false, $substitutions); 793cab2716aSmatthias.grimm return true; 794cab2716aSmatthias.grimm } 795cab2716aSmatthias.grimm 796cab2716aSmatthias.grimm // autogenerated password? then send him the password 797f3f0262cSandi if(auth_sendPassword($_POST['login'], $pass)) { 798f3f0262cSandi msg($lang['regsuccess'], 1); 79902a498e7Schris notify('', 'register', '', $_POST['login'], false, $substitutions); 800f3f0262cSandi return true; 801f3f0262cSandi } else { 802f3f0262cSandi msg($lang['regmailfail'], -1); 803f3f0262cSandi return false; 804f3f0262cSandi } 805f3f0262cSandi} 806f3f0262cSandi 80710a76f6fSfrank/** 8088b06d178Schris * Update user profile 8098b06d178Schris * 8108b06d178Schris * @author Christopher Smith <chris@jalakai.co.uk> 8118b06d178Schris */ 8128b06d178Schrisfunction updateprofile() { 8138b06d178Schris global $conf; 8148b06d178Schris global $lang; 815ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 816cd52f92dSchris global $auth; 817bcc94b2cSAndreas Gohr /* @var Input $INPUT */ 818bcc94b2cSAndreas Gohr global $INPUT; 8198b06d178Schris 820bcc94b2cSAndreas Gohr if(!$INPUT->post->bool('save')) return false; 8211b2a85e8SAndreas Gohr if(!checkSecurityToken()) return false; 8228b06d178Schris 8233a48618aSAnika Henke if(!actionOK('profile')) { 8248b06d178Schris msg($lang['profna'], -1); 8258b06d178Schris return false; 8268b06d178Schris } 8278b06d178Schris 828bcc94b2cSAndreas Gohr $changes = array(); 829bcc94b2cSAndreas Gohr $changes['pass'] = $INPUT->post->str('newpass'); 830bcc94b2cSAndreas Gohr $changes['name'] = $INPUT->post->str('fullname'); 831bcc94b2cSAndreas Gohr $changes['mail'] = $INPUT->post->str('email'); 832bcc94b2cSAndreas Gohr 833bcc94b2cSAndreas Gohr // check misspelled passwords 834bcc94b2cSAndreas Gohr if($changes['pass'] != $INPUT->post->str('passchk')) { 835bcc94b2cSAndreas Gohr msg($lang['regbadpass'], -1); 8368b06d178Schris return false; 8378b06d178Schris } 8388b06d178Schris 8398b06d178Schris // clean fullname and email 840bcc94b2cSAndreas Gohr $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name'])); 841bcc94b2cSAndreas Gohr $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail'])); 8428b06d178Schris 843bcc94b2cSAndreas Gohr // no empty name and email (except the backend doesn't support them) 844bcc94b2cSAndreas Gohr if((empty($changes['name']) && $auth->canDo('modName')) || 845bcc94b2cSAndreas Gohr (empty($changes['mail']) && $auth->canDo('modMail')) 846ab5d26daSAndreas Gohr ) { 8478b06d178Schris msg($lang['profnoempty'], -1); 8488b06d178Schris return false; 8498b06d178Schris } 850bcc94b2cSAndreas Gohr if(!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) { 8518b06d178Schris msg($lang['regbadmail'], -1); 8528b06d178Schris return false; 8538b06d178Schris } 8548b06d178Schris 855bcc94b2cSAndreas Gohr $changes = array_filter($changes); 8564c21b7eeSAndreas Gohr 857bcc94b2cSAndreas Gohr // check for unavailable capabilities 858bcc94b2cSAndreas Gohr if(!$auth->canDo('modName')) unset($changes['name']); 859bcc94b2cSAndreas Gohr if(!$auth->canDo('modMail')) unset($changes['mail']); 860bcc94b2cSAndreas Gohr if(!$auth->canDo('modPass')) unset($changes['pass']); 861bcc94b2cSAndreas Gohr 862bcc94b2cSAndreas Gohr // anything to do? 8638b06d178Schris if(!count($changes)) { 8648b06d178Schris msg($lang['profnochange'], -1); 8658b06d178Schris return false; 8668b06d178Schris } 8678b06d178Schris 8688b06d178Schris if($conf['profileconfirm']) { 869bcc94b2cSAndreas Gohr if(!$auth->checkPass($_SERVER['REMOTE_USER'], $INPUT->post->str('oldpass'))) { 8708b06d178Schris msg($lang['badlogin'], -1); 8718b06d178Schris return false; 8728b06d178Schris } 8738b06d178Schris } 8748b06d178Schris 875a0b5b007SChris Smith if($result = $auth->triggerUserMod('modify', array($_SERVER['REMOTE_USER'], $changes))) { 876a0b5b007SChris Smith // update cookie and session with the changed data 87732ed2b36SAndreas Gohr if($changes['pass']) { 878ab5d26daSAndreas Gohr list( /*user*/, $sticky, /*pass*/) = auth_getCookie(); 87932ed2b36SAndreas Gohr $pass = PMA_blowfish_encrypt($changes['pass'], auth_cookiesalt(!$sticky)); 880a0b5b007SChris Smith auth_setCookie($_SERVER['REMOTE_USER'], $pass, (bool) $sticky); 88132ed2b36SAndreas Gohr } 88225b2a98cSMichael Klier return true; 883a0b5b007SChris Smith } 884ab5d26daSAndreas Gohr 885ab5d26daSAndreas Gohr return false; 8868b06d178Schris} 8878b06d178Schris 8888b06d178Schris/** 8898b06d178Schris * Send a new password 8908b06d178Schris * 8911d5856cfSAndreas Gohr * This function handles both phases of the password reset: 8921d5856cfSAndreas Gohr * 8931d5856cfSAndreas Gohr * - handling the first request of password reset 8941d5856cfSAndreas Gohr * - validating the password reset auth token 8951d5856cfSAndreas Gohr * 8968b06d178Schris * @author Benoit Chesneau <benoit@bchesneau.info> 8978b06d178Schris * @author Chris Smith <chris@jalakai.co.uk> 8981d5856cfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 8998b06d178Schris * 9008b06d178Schris * @return bool true on success, false on any error 9018b06d178Schris */ 9028b06d178Schrisfunction act_resendpwd() { 9038b06d178Schris global $lang; 9048b06d178Schris global $conf; 905ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 906cd52f92dSchris global $auth; 907bcc94b2cSAndreas Gohr /* @var Input $INPUT */ 908bcc94b2cSAndreas Gohr global $INPUT; 9098b06d178Schris 9103a48618aSAnika Henke if(!actionOK('resendpwd')) { 9118b06d178Schris msg($lang['resendna'], -1); 9128b06d178Schris return false; 9138b06d178Schris } 9148b06d178Schris 915bcc94b2cSAndreas Gohr $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth')); 9168b06d178Schris 9171d5856cfSAndreas Gohr if($token) { 918cc204bbdSAndreas Gohr // we're in token phase - get user info from token 9191d5856cfSAndreas Gohr 9201d5856cfSAndreas Gohr $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth'; 9211d5856cfSAndreas Gohr if(!@file_exists($tfile)) { 9221d5856cfSAndreas Gohr msg($lang['resendpwdbadauth'], -1); 923bcc94b2cSAndreas Gohr $INPUT->remove('pwauth'); 9241d5856cfSAndreas Gohr return false; 9251d5856cfSAndreas Gohr } 9268a9735e3SAndreas Gohr // token is only valid for 3 days 9278a9735e3SAndreas Gohr if((time() - filemtime($tfile)) > (3 * 60 * 60 * 24)) { 9288a9735e3SAndreas Gohr msg($lang['resendpwdbadauth'], -1); 929bcc94b2cSAndreas Gohr $INPUT->remove('pwauth'); 9301d5856cfSAndreas Gohr @unlink($tfile); 9318a9735e3SAndreas Gohr return false; 9328a9735e3SAndreas Gohr } 9338a9735e3SAndreas Gohr 9348b06d178Schris $user = io_readfile($tfile); 935cd52f92dSchris $userinfo = $auth->getUserData($user); 9368b06d178Schris if(!$userinfo['mail']) { 9378b06d178Schris msg($lang['resendpwdnouser'], -1); 9388b06d178Schris return false; 9398b06d178Schris } 9408b06d178Schris 941cc204bbdSAndreas Gohr if(!$conf['autopasswd']) { // we let the user choose a password 942bcc94b2cSAndreas Gohr $pass = $INPUT->str('pass'); 943bcc94b2cSAndreas Gohr 944cc204bbdSAndreas Gohr // password given correctly? 945bcc94b2cSAndreas Gohr if(!$pass) return false; 946bcc94b2cSAndreas Gohr if($pass != $INPUT->str('passchk')) { 947451e1b4dSAndreas Gohr msg($lang['regbadpass'], -1); 948cc204bbdSAndreas Gohr return false; 949cc204bbdSAndreas Gohr } 950cc204bbdSAndreas Gohr 951bcc94b2cSAndreas Gohr // change it 952cc204bbdSAndreas Gohr if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) { 953cc204bbdSAndreas Gohr msg('error modifying user data', -1); 954cc204bbdSAndreas Gohr return false; 955cc204bbdSAndreas Gohr } 956cc204bbdSAndreas Gohr 957cc204bbdSAndreas Gohr } else { // autogenerate the password and send by mail 958cc204bbdSAndreas Gohr 9598b06d178Schris $pass = auth_pwgen(); 9607d3c8d42SGabriel Birke if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) { 9618b06d178Schris msg('error modifying user data', -1); 9628b06d178Schris return false; 9638b06d178Schris } 9648b06d178Schris 9658b06d178Schris if(auth_sendPassword($user, $pass)) { 9668b06d178Schris msg($lang['resendpwdsuccess'], 1); 9678b06d178Schris } else { 9688b06d178Schris msg($lang['regmailfail'], -1); 9698b06d178Schris } 970cc204bbdSAndreas Gohr } 971cc204bbdSAndreas Gohr 972cc204bbdSAndreas Gohr @unlink($tfile); 9738b06d178Schris return true; 9741d5856cfSAndreas Gohr 9751d5856cfSAndreas Gohr } else { 9761d5856cfSAndreas Gohr // we're in request phase 9771d5856cfSAndreas Gohr 978bcc94b2cSAndreas Gohr if(!$INPUT->post->bool('save')) return false; 9791d5856cfSAndreas Gohr 980bcc94b2cSAndreas Gohr if(!$INPUT->post->str('login')) { 9811d5856cfSAndreas Gohr msg($lang['resendpwdmissing'], -1); 9821d5856cfSAndreas Gohr return false; 9831d5856cfSAndreas Gohr } else { 984bcc94b2cSAndreas Gohr $user = trim($auth->cleanUser($INPUT->post->str('login'))); 9851d5856cfSAndreas Gohr } 9861d5856cfSAndreas Gohr 9871d5856cfSAndreas Gohr $userinfo = $auth->getUserData($user); 9881d5856cfSAndreas Gohr if(!$userinfo['mail']) { 9891d5856cfSAndreas Gohr msg($lang['resendpwdnouser'], -1); 9901d5856cfSAndreas Gohr return false; 9911d5856cfSAndreas Gohr } 9921d5856cfSAndreas Gohr 9931d5856cfSAndreas Gohr // generate auth token 9941d5856cfSAndreas Gohr $token = md5(auth_cookiesalt().$user); //secret but user based 9951d5856cfSAndreas Gohr $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth'; 9961d5856cfSAndreas Gohr $url = wl('', array('do'=> 'resendpwd', 'pwauth'=> $token), true, '&'); 9971d5856cfSAndreas Gohr 9981d5856cfSAndreas Gohr io_saveFile($tfile, $user); 9991d5856cfSAndreas Gohr 10001d5856cfSAndreas Gohr $text = rawLocale('pwconfirm'); 1001d7169d19SAndreas Gohr $trep = array( 1002d7169d19SAndreas Gohr 'FULLNAME' => $userinfo['name'], 1003d7169d19SAndreas Gohr 'LOGIN' => $user, 1004d7169d19SAndreas Gohr 'CONFIRM' => $url 1005d7169d19SAndreas Gohr ); 10061d5856cfSAndreas Gohr 1007d7169d19SAndreas Gohr $mail = new Mailer(); 1008d7169d19SAndreas Gohr $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>'); 1009d7169d19SAndreas Gohr $mail->subject($lang['regpwmail']); 1010d7169d19SAndreas Gohr $mail->setBody($text, $trep); 1011d7169d19SAndreas Gohr if($mail->send()) { 10121d5856cfSAndreas Gohr msg($lang['resendpwdconfirm'], 1); 10131d5856cfSAndreas Gohr } else { 10141d5856cfSAndreas Gohr msg($lang['regmailfail'], -1); 10151d5856cfSAndreas Gohr } 10161d5856cfSAndreas Gohr return true; 10171d5856cfSAndreas Gohr } 1018ab5d26daSAndreas Gohr // never reached 10198b06d178Schris} 10208b06d178Schris 10218b06d178Schris/** 1022b0855b11Sandi * Encrypts a password using the given method and salt 1023b0855b11Sandi * 1024b0855b11Sandi * If the selected method needs a salt and none was given, a random one 1025b0855b11Sandi * is chosen. 1026b0855b11Sandi * 1027b0855b11Sandi * @author Andreas Gohr <andi@splitbrain.org> 1028ab5d26daSAndreas Gohr * @param string $clear The clear text password 1029ab5d26daSAndreas Gohr * @param string $method The hashing method 1030ab5d26daSAndreas Gohr * @param string $salt A salt, null for random 1031b0855b11Sandi * @return string The crypted password 1032b0855b11Sandi */ 1033577c7cdaSAndreas Gohrfunction auth_cryptPassword($clear, $method = '', $salt = null) { 1034b0855b11Sandi global $conf; 1035b0855b11Sandi if(empty($method)) $method = $conf['passcrypt']; 103610a76f6fSfrank 10373a0a2d05SAndreas Gohr $pass = new PassHash(); 10383a0a2d05SAndreas Gohr $call = 'hash_'.$method; 1039b0855b11Sandi 10403a0a2d05SAndreas Gohr if(!method_exists($pass, $call)) { 1041b0855b11Sandi msg("Unsupported crypt method $method", -1); 10423a0a2d05SAndreas Gohr return false; 1043b0855b11Sandi } 10443a0a2d05SAndreas Gohr 10453a0a2d05SAndreas Gohr return $pass->$call($clear, $salt); 1046b0855b11Sandi} 1047b0855b11Sandi 1048b0855b11Sandi/** 1049b0855b11Sandi * Verifies a cleartext password against a crypted hash 1050b0855b11Sandi * 1051b0855b11Sandi * @author Andreas Gohr <andi@splitbrain.org> 1052ab5d26daSAndreas Gohr * @param string $clear The clear text password 1053ab5d26daSAndreas Gohr * @param string $crypt The hash to compare with 1054ab5d26daSAndreas Gohr * @return bool true if both match 1055b0855b11Sandi */ 1056b0855b11Sandifunction auth_verifyPassword($clear, $crypt) { 10573a0a2d05SAndreas Gohr $pass = new PassHash(); 10583a0a2d05SAndreas Gohr return $pass->verify_hash($clear, $crypt); 1059b0855b11Sandi} 1060340756e4Sandi 1061a0b5b007SChris Smith/** 1062a0b5b007SChris Smith * Set the authentication cookie and add user identification data to the session 1063a0b5b007SChris Smith * 1064a0b5b007SChris Smith * @param string $user username 1065a0b5b007SChris Smith * @param string $pass encrypted password 1066a0b5b007SChris Smith * @param bool $sticky whether or not the cookie will last beyond the session 1067ab5d26daSAndreas Gohr * @return bool 1068a0b5b007SChris Smith */ 1069a0b5b007SChris Smithfunction auth_setCookie($user, $pass, $sticky) { 1070a0b5b007SChris Smith global $conf; 1071ab5d26daSAndreas Gohr /* @var auth_basic $auth */ 1072a0b5b007SChris Smith global $auth; 107379d00841SOliver Geisen global $USERINFO; 1074a0b5b007SChris Smith 1075beca106aSAdrian Lang if(!$auth) return false; 1076a0b5b007SChris Smith $USERINFO = $auth->getUserData($user); 1077a0b5b007SChris Smith 1078a0b5b007SChris Smith // set cookie 1079645c0a36SAndreas Gohr $cookie = base64_encode($user).'|'.((int) $sticky).'|'.base64_encode($pass); 108073ab87deSGabriel Birke $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 1081c66972f2SAdrian Lang $time = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year 1082a0b5b007SChris Smith if(version_compare(PHP_VERSION, '5.2.0', '>')) { 108373ab87deSGabriel Birke setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true); 1084a0b5b007SChris Smith } else { 108573ab87deSGabriel Birke setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl())); 1086a0b5b007SChris Smith } 1087a0b5b007SChris Smith // set session 1088a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['user'] = $user; 1089234ce57eSAndreas Gohr $_SESSION[DOKU_COOKIE]['auth']['pass'] = sha1($pass); 1090a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['buid'] = auth_browseruid(); 1091a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO; 1092a0b5b007SChris Smith $_SESSION[DOKU_COOKIE]['auth']['time'] = time(); 1093ab5d26daSAndreas Gohr 1094ab5d26daSAndreas Gohr return true; 1095a0b5b007SChris Smith} 1096a0b5b007SChris Smith 1097645c0a36SAndreas Gohr/** 1098645c0a36SAndreas Gohr * Returns the user, (encrypted) password and sticky bit from cookie 1099645c0a36SAndreas Gohr * 1100645c0a36SAndreas Gohr * @returns array 1101645c0a36SAndreas Gohr */ 1102645c0a36SAndreas Gohrfunction auth_getCookie() { 1103c66972f2SAdrian Lang if(!isset($_COOKIE[DOKU_COOKIE])) { 1104c66972f2SAdrian Lang return array(null, null, null); 1105c66972f2SAdrian Lang } 1106645c0a36SAndreas Gohr list($user, $sticky, $pass) = explode('|', $_COOKIE[DOKU_COOKIE], 3); 1107645c0a36SAndreas Gohr $sticky = (bool) $sticky; 1108645c0a36SAndreas Gohr $pass = base64_decode($pass); 1109645c0a36SAndreas Gohr $user = base64_decode($user); 1110645c0a36SAndreas Gohr return array($user, $sticky, $pass); 1111645c0a36SAndreas Gohr} 1112645c0a36SAndreas Gohr 1113e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 : 1114