1<?php 2/** 3 * Authentication library 4 * 5 * Including this file will automatically try to login 6 * a user by calling auth_login() 7 * 8 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 9 * @author Andreas Gohr <andi@splitbrain.org> 10 */ 11 12if(!defined('DOKU_INC')) die('meh.'); 13 14// some ACL level defines 15define('AUTH_NONE', 0); 16define('AUTH_READ', 1); 17define('AUTH_EDIT', 2); 18define('AUTH_CREATE', 4); 19define('AUTH_UPLOAD', 8); 20define('AUTH_DELETE', 16); 21define('AUTH_ADMIN', 255); 22 23/** 24 * Initialize the auth system. 25 * 26 * This function is automatically called at the end of init.php 27 * 28 * This used to be the main() of the auth.php 29 * 30 * @todo backend loading maybe should be handled by the class autoloader 31 * @todo maybe split into multiple functions at the XXX marked positions 32 * @triggers AUTH_LOGIN_CHECK 33 * @return bool 34 */ 35function auth_setup() { 36 global $conf; 37 /* @var DokuWiki_Auth_Plugin $auth */ 38 global $auth; 39 /* @var Input $INPUT */ 40 global $INPUT; 41 global $AUTH_ACL; 42 global $lang; 43 /* @var Doku_Plugin_Controller $plugin_controller */ 44 global $plugin_controller; 45 $AUTH_ACL = array(); 46 47 if(!$conf['useacl']) return false; 48 49 // try to load auth backend from plugins 50 foreach ($plugin_controller->getList('auth') as $plugin) { 51 if ($conf['authtype'] === $plugin) { 52 $auth = $plugin_controller->load('auth', $plugin); 53 break; 54 } elseif ('auth' . $conf['authtype'] === $plugin) { 55 // matches old auth backends (pre-Weatherwax) 56 $auth = $plugin_controller->load('auth', $plugin); 57 msg('Your authtype setting is deprecated. You must set $conf[\'authtype\'] = "auth' . $conf['authtype'] . '"' 58 . ' in your configuration (see <a href="https://www.dokuwiki.org/auth">Authentication Backends</a>)',-1,'','',MSG_ADMINS_ONLY); 59 } 60 } 61 62 if(!isset($auth) || !$auth){ 63 msg($lang['authtempfail'], -1); 64 return false; 65 } 66 67 if ($auth->success == false) { 68 // degrade to unauthenticated user 69 unset($auth); 70 auth_logoff(); 71 msg($lang['authtempfail'], -1); 72 return false; 73 } 74 75 // do the login either by cookie or provided credentials XXX 76 $INPUT->set('http_credentials', false); 77 if(!$conf['rememberme']) $INPUT->set('r', false); 78 79 // handle renamed HTTP_AUTHORIZATION variable (can happen when a fix like 80 // the one presented at 81 // http://www.besthostratings.com/articles/http-auth-php-cgi.html is used 82 // for enabling HTTP authentication with CGI/SuExec) 83 if(isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) 84 $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION']; 85 // streamline HTTP auth credentials (IIS/rewrite -> mod_php) 86 if(isset($_SERVER['HTTP_AUTHORIZATION'])) { 87 list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = 88 explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); 89 } 90 91 // if no credentials were given try to use HTTP auth (for SSO) 92 if(!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])) { 93 $INPUT->set('u', $_SERVER['PHP_AUTH_USER']); 94 $INPUT->set('p', $_SERVER['PHP_AUTH_PW']); 95 $INPUT->set('http_credentials', true); 96 } 97 98 // apply cleaning (auth specific user names, remove control chars) 99 if (true === $auth->success) { 100 $INPUT->set('u', $auth->cleanUser(stripctl($INPUT->str('u')))); 101 $INPUT->set('p', stripctl($INPUT->str('p'))); 102 } 103 104 if($INPUT->str('authtok')) { 105 // when an authentication token is given, trust the session 106 auth_validateToken($INPUT->str('authtok')); 107 } elseif(!is_null($auth) && $auth->canDo('external')) { 108 // external trust mechanism in place 109 $auth->trustExternal($INPUT->str('u'), $INPUT->str('p'), $INPUT->bool('r')); 110 } else { 111 $evdata = array( 112 'user' => $INPUT->str('u'), 113 'password' => $INPUT->str('p'), 114 'sticky' => $INPUT->bool('r'), 115 'silent' => $INPUT->bool('http_credentials') 116 ); 117 trigger_event('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper'); 118 } 119 120 //load ACL into a global array XXX 121 $AUTH_ACL = auth_loadACL(); 122 123 return true; 124} 125 126/** 127 * Loads the ACL setup and handle user wildcards 128 * 129 * @author Andreas Gohr <andi@splitbrain.org> 130 * 131 * @return array 132 */ 133function auth_loadACL() { 134 global $config_cascade; 135 global $USERINFO; 136 /* @var Input $INPUT */ 137 global $INPUT; 138 139 if(!is_readable($config_cascade['acl']['default'])) return array(); 140 141 $acl = file($config_cascade['acl']['default']); 142 143 $out = array(); 144 foreach($acl as $line) { 145 $line = trim($line); 146 if(empty($line) || ($line{0} == '#')) continue; // skip blank lines & comments 147 list($id,$rest) = preg_split('/[ \t]+/',$line,2); 148 149 // substitute user wildcard first (its 1:1) 150 if(strstr($line, '%USER%')){ 151 // if user is not logged in, this ACL line is meaningless - skip it 152 if (!$INPUT->server->has('REMOTE_USER')) continue; 153 154 $id = str_replace('%USER%',cleanID($INPUT->server->str('REMOTE_USER')),$id); 155 $rest = str_replace('%USER%',auth_nameencode($INPUT->server->str('REMOTE_USER')),$rest); 156 } 157 158 // substitute group wildcard (its 1:m) 159 if(strstr($line, '%GROUP%')){ 160 // if user is not logged in, grps is empty, no output will be added (i.e. skipped) 161 foreach((array) $USERINFO['grps'] as $grp){ 162 $nid = str_replace('%GROUP%',cleanID($grp),$id); 163 $nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest); 164 $out[] = "$nid\t$nrest"; 165 } 166 } else { 167 $out[] = "$id\t$rest"; 168 } 169 } 170 171 return $out; 172} 173 174/** 175 * Event hook callback for AUTH_LOGIN_CHECK 176 * 177 * @param array $evdata 178 * @return bool 179 */ 180function auth_login_wrapper($evdata) { 181 return auth_login( 182 $evdata['user'], 183 $evdata['password'], 184 $evdata['sticky'], 185 $evdata['silent'] 186 ); 187} 188 189/** 190 * This tries to login the user based on the sent auth credentials 191 * 192 * The authentication works like this: if a username was given 193 * a new login is assumed and user/password are checked. If they 194 * are correct the password is encrypted with blowfish and stored 195 * together with the username in a cookie - the same info is stored 196 * in the session, too. Additonally a browserID is stored in the 197 * session. 198 * 199 * If no username was given the cookie is checked: if the username, 200 * crypted password and browserID match between session and cookie 201 * no further testing is done and the user is accepted 202 * 203 * If a cookie was found but no session info was availabe the 204 * blowfish encrypted password from the cookie is decrypted and 205 * together with username rechecked by calling this function again. 206 * 207 * On a successful login $_SERVER[REMOTE_USER] and $USERINFO 208 * are set. 209 * 210 * @author Andreas Gohr <andi@splitbrain.org> 211 * 212 * @param string $user Username 213 * @param string $pass Cleartext Password 214 * @param bool $sticky Cookie should not expire 215 * @param bool $silent Don't show error on bad auth 216 * @return bool true on successful auth 217 */ 218function auth_login($user, $pass, $sticky = false, $silent = false) { 219 global $USERINFO; 220 global $conf; 221 global $lang; 222 /* @var DokuWiki_Auth_Plugin $auth */ 223 global $auth; 224 /* @var Input $INPUT */ 225 global $INPUT; 226 227 $sticky ? $sticky = true : $sticky = false; //sanity check 228 229 if(!$auth) return false; 230 231 if(!empty($user)) { 232 //usual login 233 if(!empty($pass) && $auth->checkPass($user, $pass)) { 234 // make logininfo globally available 235 $INPUT->server->set('REMOTE_USER', $user); 236 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session 237 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky); 238 return true; 239 } else { 240 //invalid credentials - log off 241 if(!$silent) msg($lang['badlogin'], -1); 242 auth_logoff(); 243 return false; 244 } 245 } else { 246 // read cookie information 247 list($user, $sticky, $pass) = auth_getCookie(); 248 if($user && $pass) { 249 // we got a cookie - see if we can trust it 250 251 // get session info 252 $session = $_SESSION[DOKU_COOKIE]['auth']; 253 if(isset($session) && 254 $auth->useSessionCache($user) && 255 ($session['time'] >= time() - $conf['auth_security_timeout']) && 256 ($session['user'] == $user) && 257 ($session['pass'] == sha1($pass)) && //still crypted 258 ($session['buid'] == auth_browseruid()) 259 ) { 260 261 // he has session, cookie and browser right - let him in 262 $INPUT->server->set('REMOTE_USER', $user); 263 $USERINFO = $session['info']; //FIXME move all references to session 264 return true; 265 } 266 // no we don't trust it yet - recheck pass but silent 267 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session 268 $pass = auth_decrypt($pass, $secret); 269 return auth_login($user, $pass, $sticky, true); 270 } 271 } 272 //just to be sure 273 auth_logoff(true); 274 return false; 275} 276 277/** 278 * Checks if a given authentication token was stored in the session 279 * 280 * Will setup authentication data using data from the session if the 281 * token is correct. Will exit with a 401 Status if not. 282 * 283 * @author Andreas Gohr <andi@splitbrain.org> 284 * 285 * @param string $token The authentication token 286 * @return boolean|null true (or will exit on failure) 287 */ 288function auth_validateToken($token) { 289 if(!$token || $token != $_SESSION[DOKU_COOKIE]['auth']['token']) { 290 // bad token 291 http_status(401); 292 print 'Invalid auth token - maybe the session timed out'; 293 unset($_SESSION[DOKU_COOKIE]['auth']['token']); // no second chance 294 exit; 295 } 296 // still here? trust the session data 297 global $USERINFO; 298 /* @var Input $INPUT */ 299 global $INPUT; 300 301 $INPUT->server->set('REMOTE_USER',$_SESSION[DOKU_COOKIE]['auth']['user']); 302 $USERINFO = $_SESSION[DOKU_COOKIE]['auth']['info']; 303 return true; 304} 305 306/** 307 * Create an auth token and store it in the session 308 * 309 * NOTE: this is completely unrelated to the getSecurityToken() function 310 * 311 * @author Andreas Gohr <andi@splitbrain.org> 312 * 313 * @return string The auth token 314 */ 315function auth_createToken() { 316 $token = md5(auth_randombytes(16)); 317 @session_start(); // reopen the session if needed 318 $_SESSION[DOKU_COOKIE]['auth']['token'] = $token; 319 session_write_close(); 320 return $token; 321} 322 323/** 324 * Builds a pseudo UID from browser and IP data 325 * 326 * This is neither unique nor unfakable - still it adds some 327 * security. Using the first part of the IP makes sure 328 * proxy farms like AOLs are still okay. 329 * 330 * @author Andreas Gohr <andi@splitbrain.org> 331 * 332 * @return string a MD5 sum of various browser headers 333 */ 334function auth_browseruid() { 335 /* @var Input $INPUT */ 336 global $INPUT; 337 338 $ip = clientIP(true); 339 $uid = ''; 340 $uid .= $INPUT->server->str('HTTP_USER_AGENT'); 341 $uid .= $INPUT->server->str('HTTP_ACCEPT_CHARSET'); 342 $uid .= substr($ip, 0, strpos($ip, '.')); 343 $uid = strtolower($uid); 344 return md5($uid); 345} 346 347/** 348 * Creates a random key to encrypt the password in cookies 349 * 350 * This function tries to read the password for encrypting 351 * cookies from $conf['metadir'].'/_htcookiesalt' 352 * if no such file is found a random key is created and 353 * and stored in this file. 354 * 355 * @author Andreas Gohr <andi@splitbrain.org> 356 * 357 * @param bool $addsession if true, the sessionid is added to the salt 358 * @param bool $secure if security is more important than keeping the old value 359 * @return string 360 */ 361function auth_cookiesalt($addsession = false, $secure = false) { 362 global $conf; 363 $file = $conf['metadir'].'/_htcookiesalt'; 364 if ($secure || !file_exists($file)) { 365 $file = $conf['metadir'].'/_htcookiesalt2'; 366 } 367 $salt = io_readFile($file); 368 if(empty($salt)) { 369 $salt = bin2hex(auth_randombytes(64)); 370 io_saveFile($file, $salt); 371 } 372 if($addsession) { 373 $salt .= session_id(); 374 } 375 return $salt; 376} 377 378/** 379 * Return truly (pseudo) random bytes if available, otherwise fall back to mt_rand 380 * 381 * @author Mark Seecof 382 * @author Michael Hamann <michael@content-space.de> 383 * @link http://www.php.net/manual/de/function.mt-rand.php#83655 384 * 385 * @param int $length number of bytes to get 386 * @return string binary random strings 387 */ 388function auth_randombytes($length) { 389 $strong = false; 390 $rbytes = false; 391 392 if (function_exists('openssl_random_pseudo_bytes') 393 && (version_compare(PHP_VERSION, '5.3.4') >= 0 394 || strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') 395 ) { 396 $rbytes = openssl_random_pseudo_bytes($length, $strong); 397 } 398 399 if (!$strong && function_exists('mcrypt_create_iv') 400 && (version_compare(PHP_VERSION, '5.3.7') >= 0 401 || strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') 402 ) { 403 $rbytes = mcrypt_create_iv($length, MCRYPT_DEV_URANDOM); 404 if ($rbytes !== false && strlen($rbytes) === $length) { 405 $strong = true; 406 } 407 } 408 409 // If no strong randoms available, try OS the specific ways 410 if(!$strong) { 411 // Unix/Linux platform 412 $fp = @fopen('/dev/urandom', 'rb'); 413 if($fp !== false) { 414 $rbytes = fread($fp, $length); 415 fclose($fp); 416 } 417 418 // MS-Windows platform 419 if(class_exists('COM')) { 420 // http://msdn.microsoft.com/en-us/library/aa388176(VS.85).aspx 421 try { 422 $CAPI_Util = new COM('CAPICOM.Utilities.1'); 423 $rbytes = $CAPI_Util->GetRandom($length, 0); 424 425 // if we ask for binary data PHP munges it, so we 426 // request base64 return value. 427 if($rbytes) $rbytes = base64_decode($rbytes); 428 } catch(Exception $ex) { 429 // fail 430 } 431 } 432 } 433 if(strlen($rbytes) < $length) $rbytes = false; 434 435 // still no random bytes available - fall back to mt_rand() 436 if($rbytes === false) { 437 $rbytes = ''; 438 for ($i = 0; $i < $length; ++$i) { 439 $rbytes .= chr(mt_rand(0, 255)); 440 } 441 } 442 443 return $rbytes; 444} 445 446/** 447 * Random number generator using the best available source 448 * 449 * @author Michael Samuel 450 * @author Michael Hamann <michael@content-space.de> 451 * 452 * @param int $min 453 * @param int $max 454 * @return int 455 */ 456function auth_random($min, $max) { 457 $abs_max = $max - $min; 458 459 $nbits = 0; 460 for ($n = $abs_max; $n > 0; $n >>= 1) { 461 ++$nbits; 462 } 463 464 $mask = (1 << $nbits) - 1; 465 do { 466 $bytes = auth_randombytes(PHP_INT_SIZE); 467 $integers = unpack('Inum', $bytes); 468 $integer = $integers["num"] & $mask; 469 } while ($integer > $abs_max); 470 471 return $min + $integer; 472} 473 474/** 475 * Encrypt data using the given secret using AES 476 * 477 * The mode is CBC with a random initialization vector, the key is derived 478 * using pbkdf2. 479 * 480 * @param string $data The data that shall be encrypted 481 * @param string $secret The secret/password that shall be used 482 * @return string The ciphertext 483 */ 484function auth_encrypt($data, $secret) { 485 $iv = auth_randombytes(16); 486 $cipher = new Crypt_AES(); 487 $cipher->setPassword($secret); 488 489 /* 490 this uses the encrypted IV as IV as suggested in 491 http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf, Appendix C 492 for unique but necessarily random IVs. The resulting ciphertext is 493 compatible to ciphertext that was created using a "normal" IV. 494 */ 495 return $cipher->encrypt($iv.$data); 496} 497 498/** 499 * Decrypt the given AES ciphertext 500 * 501 * The mode is CBC, the key is derived using pbkdf2 502 * 503 * @param string $ciphertext The encrypted data 504 * @param string $secret The secret/password that shall be used 505 * @return string The decrypted data 506 */ 507function auth_decrypt($ciphertext, $secret) { 508 $iv = substr($ciphertext, 0, 16); 509 $cipher = new Crypt_AES(); 510 $cipher->setPassword($secret); 511 $cipher->setIV($iv); 512 513 return $cipher->decrypt(substr($ciphertext, 16)); 514} 515 516/** 517 * Log out the current user 518 * 519 * This clears all authentication data and thus log the user 520 * off. It also clears session data. 521 * 522 * @author Andreas Gohr <andi@splitbrain.org> 523 * 524 * @param bool $keepbc - when true, the breadcrumb data is not cleared 525 */ 526function auth_logoff($keepbc = false) { 527 global $conf; 528 global $USERINFO; 529 /* @var DokuWiki_Auth_Plugin $auth */ 530 global $auth; 531 /* @var Input $INPUT */ 532 global $INPUT; 533 534 // make sure the session is writable (it usually is) 535 @session_start(); 536 537 if(isset($_SESSION[DOKU_COOKIE]['auth']['user'])) 538 unset($_SESSION[DOKU_COOKIE]['auth']['user']); 539 if(isset($_SESSION[DOKU_COOKIE]['auth']['pass'])) 540 unset($_SESSION[DOKU_COOKIE]['auth']['pass']); 541 if(isset($_SESSION[DOKU_COOKIE]['auth']['info'])) 542 unset($_SESSION[DOKU_COOKIE]['auth']['info']); 543 if(!$keepbc && isset($_SESSION[DOKU_COOKIE]['bc'])) 544 unset($_SESSION[DOKU_COOKIE]['bc']); 545 $INPUT->server->remove('REMOTE_USER'); 546 $USERINFO = null; //FIXME 547 548 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 549 setcookie(DOKU_COOKIE, '', time() - 600000, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true); 550 551 if($auth) $auth->logOff(); 552} 553 554/** 555 * Check if a user is a manager 556 * 557 * Should usually be called without any parameters to check the current 558 * user. 559 * 560 * The info is available through $INFO['ismanager'], too 561 * 562 * @author Andreas Gohr <andi@splitbrain.org> 563 * @see auth_isadmin 564 * 565 * @param string $user Username 566 * @param array $groups List of groups the user is in 567 * @param bool $adminonly when true checks if user is admin 568 * @return bool 569 */ 570function auth_ismanager($user = null, $groups = null, $adminonly = false) { 571 global $conf; 572 global $USERINFO; 573 /* @var DokuWiki_Auth_Plugin $auth */ 574 global $auth; 575 /* @var Input $INPUT */ 576 global $INPUT; 577 578 579 if(!$auth) return false; 580 if(is_null($user)) { 581 if(!$INPUT->server->has('REMOTE_USER')) { 582 return false; 583 } else { 584 $user = $INPUT->server->str('REMOTE_USER'); 585 } 586 } 587 if(is_null($groups)) { 588 $groups = (array) $USERINFO['grps']; 589 } 590 591 // check superuser match 592 if(auth_isMember($conf['superuser'], $user, $groups)) return true; 593 if($adminonly) return false; 594 // check managers 595 if(auth_isMember($conf['manager'], $user, $groups)) return true; 596 597 return false; 598} 599 600/** 601 * Check if a user is admin 602 * 603 * Alias to auth_ismanager with adminonly=true 604 * 605 * The info is available through $INFO['isadmin'], too 606 * 607 * @author Andreas Gohr <andi@splitbrain.org> 608 * @see auth_ismanager() 609 * 610 * @param string $user Username 611 * @param array $groups List of groups the user is in 612 * @return bool 613 */ 614function auth_isadmin($user = null, $groups = null) { 615 return auth_ismanager($user, $groups, true); 616} 617 618/** 619 * Match a user and his groups against a comma separated list of 620 * users and groups to determine membership status 621 * 622 * Note: all input should NOT be nameencoded. 623 * 624 * @param string $memberlist commaseparated list of allowed users and groups 625 * @param string $user user to match against 626 * @param array $groups groups the user is member of 627 * @return bool true for membership acknowledged 628 */ 629function auth_isMember($memberlist, $user, array $groups) { 630 /* @var DokuWiki_Auth_Plugin $auth */ 631 global $auth; 632 if(!$auth) return false; 633 634 // clean user and groups 635 if(!$auth->isCaseSensitive()) { 636 $user = utf8_strtolower($user); 637 $groups = array_map('utf8_strtolower', $groups); 638 } 639 $user = $auth->cleanUser($user); 640 $groups = array_map(array($auth, 'cleanGroup'), $groups); 641 642 // extract the memberlist 643 $members = explode(',', $memberlist); 644 $members = array_map('trim', $members); 645 $members = array_unique($members); 646 $members = array_filter($members); 647 648 // compare cleaned values 649 foreach($members as $member) { 650 if($member == '@ALL' ) return true; 651 if(!$auth->isCaseSensitive()) $member = utf8_strtolower($member); 652 if($member[0] == '@') { 653 $member = $auth->cleanGroup(substr($member, 1)); 654 if(in_array($member, $groups)) return true; 655 } else { 656 $member = $auth->cleanUser($member); 657 if($member == $user) return true; 658 } 659 } 660 661 // still here? not a member! 662 return false; 663} 664 665/** 666 * Convinience function for auth_aclcheck() 667 * 668 * This checks the permissions for the current user 669 * 670 * @author Andreas Gohr <andi@splitbrain.org> 671 * 672 * @param string $id page ID (needs to be resolved and cleaned) 673 * @return int permission level 674 */ 675function auth_quickaclcheck($id) { 676 global $conf; 677 global $USERINFO; 678 /* @var Input $INPUT */ 679 global $INPUT; 680 # if no ACL is used always return upload rights 681 if(!$conf['useacl']) return AUTH_UPLOAD; 682 return auth_aclcheck($id, $INPUT->server->str('REMOTE_USER'), $USERINFO['grps']); 683} 684 685/** 686 * Returns the maximum rights a user has for the given ID or its namespace 687 * 688 * @author Andreas Gohr <andi@splitbrain.org> 689 * 690 * @triggers AUTH_ACL_CHECK 691 * @param string $id page ID (needs to be resolved and cleaned) 692 * @param string $user Username 693 * @param array|null $groups Array of groups the user is in 694 * @return int permission level 695 */ 696function auth_aclcheck($id, $user, $groups) { 697 $data = array( 698 'id' => $id, 699 'user' => $user, 700 'groups' => $groups 701 ); 702 703 return trigger_event('AUTH_ACL_CHECK', $data, 'auth_aclcheck_cb'); 704} 705 706/** 707 * default ACL check method 708 * 709 * DO NOT CALL DIRECTLY, use auth_aclcheck() instead 710 * 711 * @author Andreas Gohr <andi@splitbrain.org> 712 * 713 * @param array $data event data 714 * @return int permission level 715 */ 716function auth_aclcheck_cb($data) { 717 $id =& $data['id']; 718 $user =& $data['user']; 719 $groups =& $data['groups']; 720 721 global $conf; 722 global $AUTH_ACL; 723 /* @var DokuWiki_Auth_Plugin $auth */ 724 global $auth; 725 726 // if no ACL is used always return upload rights 727 if(!$conf['useacl']) return AUTH_UPLOAD; 728 if(!$auth) return AUTH_NONE; 729 730 //make sure groups is an array 731 if(!is_array($groups)) $groups = array(); 732 733 //if user is superuser or in superusergroup return 255 (acl_admin) 734 if(auth_isadmin($user, $groups)) { 735 return AUTH_ADMIN; 736 } 737 738 if(!$auth->isCaseSensitive()) { 739 $user = utf8_strtolower($user); 740 $groups = array_map('utf8_strtolower', $groups); 741 } 742 $user = $auth->cleanUser($user); 743 $groups = array_map(array($auth, 'cleanGroup'), (array) $groups); 744 $user = auth_nameencode($user); 745 746 //prepend groups with @ and nameencode 747 $cnt = count($groups); 748 for($i = 0; $i < $cnt; $i++) { 749 $groups[$i] = '@'.auth_nameencode($groups[$i]); 750 } 751 752 $ns = getNS($id); 753 $perm = -1; 754 755 if($user || count($groups)) { 756 //add ALL group 757 $groups[] = '@ALL'; 758 //add User 759 if($user) $groups[] = $user; 760 } else { 761 $groups[] = '@ALL'; 762 } 763 764 //check exact match first 765 $matches = preg_grep('/^'.preg_quote($id, '/').'[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL); 766 if(count($matches)) { 767 foreach($matches as $match) { 768 $match = preg_replace('/#.*$/', '', $match); //ignore comments 769 $acl = preg_split('/[ \t]+/', $match); 770 if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') { 771 $acl[1] = utf8_strtolower($acl[1]); 772 } 773 if(!in_array($acl[1], $groups)) { 774 continue; 775 } 776 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 777 if($acl[2] > $perm) { 778 $perm = $acl[2]; 779 } 780 } 781 if($perm > -1) { 782 //we had a match - return it 783 return (int) $perm; 784 } 785 } 786 787 //still here? do the namespace checks 788 if($ns) { 789 $path = $ns.':*'; 790 } else { 791 $path = '*'; //root document 792 } 793 794 do { 795 $matches = preg_grep('/^'.preg_quote($path, '/').'[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL); 796 if(count($matches)) { 797 foreach($matches as $match) { 798 $match = preg_replace('/#.*$/', '', $match); //ignore comments 799 $acl = preg_split('/[ \t]+/', $match); 800 if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') { 801 $acl[1] = utf8_strtolower($acl[1]); 802 } 803 if(!in_array($acl[1], $groups)) { 804 continue; 805 } 806 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 807 if($acl[2] > $perm) { 808 $perm = $acl[2]; 809 } 810 } 811 //we had a match - return it 812 if($perm != -1) { 813 return (int) $perm; 814 } 815 } 816 //get next higher namespace 817 $ns = getNS($ns); 818 819 if($path != '*') { 820 $path = $ns.':*'; 821 if($path == ':*') $path = '*'; 822 } else { 823 //we did this already 824 //looks like there is something wrong with the ACL 825 //break here 826 msg('No ACL setup yet! Denying access to everyone.'); 827 return AUTH_NONE; 828 } 829 } while(1); //this should never loop endless 830 return AUTH_NONE; 831} 832 833/** 834 * Encode ASCII special chars 835 * 836 * Some auth backends allow special chars in their user and groupnames 837 * The special chars are encoded with this function. Only ASCII chars 838 * are encoded UTF-8 multibyte are left as is (different from usual 839 * urlencoding!). 840 * 841 * Decoding can be done with rawurldecode 842 * 843 * @author Andreas Gohr <gohr@cosmocode.de> 844 * @see rawurldecode() 845 * 846 * @param string $name 847 * @param bool $skip_group 848 * @return string 849 */ 850function auth_nameencode($name, $skip_group = false) { 851 global $cache_authname; 852 $cache =& $cache_authname; 853 $name = (string) $name; 854 855 // never encode wildcard FS#1955 856 if($name == '%USER%') return $name; 857 if($name == '%GROUP%') return $name; 858 859 if(!isset($cache[$name][$skip_group])) { 860 if($skip_group && $name{0} == '@') { 861 $cache[$name][$skip_group] = '@'.preg_replace_callback( 862 '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/', 863 'auth_nameencode_callback', substr($name, 1) 864 ); 865 } else { 866 $cache[$name][$skip_group] = preg_replace_callback( 867 '/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f])/', 868 'auth_nameencode_callback', $name 869 ); 870 } 871 } 872 873 return $cache[$name][$skip_group]; 874} 875 876/** 877 * callback encodes the matches 878 * 879 * @param array $matches first complete match, next matching subpatterms 880 * @return string 881 */ 882function auth_nameencode_callback($matches) { 883 return '%'.dechex(ord(substr($matches[1],-1))); 884} 885 886/** 887 * Create a pronouncable password 888 * 889 * The $foruser variable might be used by plugins to run additional password 890 * policy checks, but is not used by the default implementation 891 * 892 * @author Andreas Gohr <andi@splitbrain.org> 893 * @link http://www.phpbuilder.com/annotate/message.php3?id=1014451 894 * @triggers AUTH_PASSWORD_GENERATE 895 * 896 * @param string $foruser username for which the password is generated 897 * @return string pronouncable password 898 */ 899function auth_pwgen($foruser = '') { 900 $data = array( 901 'password' => '', 902 'foruser' => $foruser 903 ); 904 905 $evt = new Doku_Event('AUTH_PASSWORD_GENERATE', $data); 906 if($evt->advise_before(true)) { 907 $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones 908 $v = 'aeiou'; //vowels 909 $a = $c.$v; //both 910 $s = '!$%&?+*~#-_:.;,'; // specials 911 912 //use thre syllables... 913 for($i = 0; $i < 3; $i++) { 914 $data['password'] .= $c[auth_random(0, strlen($c) - 1)]; 915 $data['password'] .= $v[auth_random(0, strlen($v) - 1)]; 916 $data['password'] .= $a[auth_random(0, strlen($a) - 1)]; 917 } 918 //... and add a nice number and special 919 $data['password'] .= auth_random(10, 99).$s[auth_random(0, strlen($s) - 1)]; 920 } 921 $evt->advise_after(); 922 923 return $data['password']; 924} 925 926/** 927 * Sends a password to the given user 928 * 929 * @author Andreas Gohr <andi@splitbrain.org> 930 * 931 * @param string $user Login name of the user 932 * @param string $password The new password in clear text 933 * @return bool true on success 934 */ 935function auth_sendPassword($user, $password) { 936 global $lang; 937 /* @var DokuWiki_Auth_Plugin $auth */ 938 global $auth; 939 if(!$auth) return false; 940 941 $user = $auth->cleanUser($user); 942 $userinfo = $auth->getUserData($user, $requireGroups = false); 943 944 if(!$userinfo['mail']) return false; 945 946 $text = rawLocale('password'); 947 $trep = array( 948 'FULLNAME' => $userinfo['name'], 949 'LOGIN' => $user, 950 'PASSWORD' => $password 951 ); 952 953 $mail = new Mailer(); 954 $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>'); 955 $mail->subject($lang['regpwmail']); 956 $mail->setBody($text, $trep); 957 return $mail->send(); 958} 959 960/** 961 * Register a new user 962 * 963 * This registers a new user - Data is read directly from $_POST 964 * 965 * @author Andreas Gohr <andi@splitbrain.org> 966 * 967 * @return bool true on success, false on any error 968 */ 969function register() { 970 global $lang; 971 global $conf; 972 /* @var DokuWiki_Auth_Plugin $auth */ 973 global $auth; 974 global $INPUT; 975 976 if(!$INPUT->post->bool('save')) return false; 977 if(!actionOK('register')) return false; 978 979 // gather input 980 $login = trim($auth->cleanUser($INPUT->post->str('login'))); 981 $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname'))); 982 $email = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email'))); 983 $pass = $INPUT->post->str('pass'); 984 $passchk = $INPUT->post->str('passchk'); 985 986 if(empty($login) || empty($fullname) || empty($email)) { 987 msg($lang['regmissing'], -1); 988 return false; 989 } 990 991 if($conf['autopasswd']) { 992 $pass = auth_pwgen($login); // automatically generate password 993 } elseif(empty($pass) || empty($passchk)) { 994 msg($lang['regmissing'], -1); // complain about missing passwords 995 return false; 996 } elseif($pass != $passchk) { 997 msg($lang['regbadpass'], -1); // complain about misspelled passwords 998 return false; 999 } 1000 1001 //check mail 1002 if(!mail_isvalid($email)) { 1003 msg($lang['regbadmail'], -1); 1004 return false; 1005 } 1006 1007 //okay try to create the user 1008 if(!$auth->triggerUserMod('create', array($login, $pass, $fullname, $email))) { 1009 msg($lang['regfail'], -1); 1010 return false; 1011 } 1012 1013 // send notification about the new user 1014 $subscription = new Subscription(); 1015 $subscription->send_register($login, $fullname, $email); 1016 1017 // are we done? 1018 if(!$conf['autopasswd']) { 1019 msg($lang['regsuccess2'], 1); 1020 return true; 1021 } 1022 1023 // autogenerated password? then send password to user 1024 if(auth_sendPassword($login, $pass)) { 1025 msg($lang['regsuccess'], 1); 1026 return true; 1027 } else { 1028 msg($lang['regmailfail'], -1); 1029 return false; 1030 } 1031} 1032 1033/** 1034 * Update user profile 1035 * 1036 * @author Christopher Smith <chris@jalakai.co.uk> 1037 */ 1038function updateprofile() { 1039 global $conf; 1040 global $lang; 1041 /* @var DokuWiki_Auth_Plugin $auth */ 1042 global $auth; 1043 /* @var Input $INPUT */ 1044 global $INPUT; 1045 1046 if(!$INPUT->post->bool('save')) return false; 1047 if(!checkSecurityToken()) return false; 1048 1049 if(!actionOK('profile')) { 1050 msg($lang['profna'], -1); 1051 return false; 1052 } 1053 1054 $changes = array(); 1055 $changes['pass'] = $INPUT->post->str('newpass'); 1056 $changes['name'] = $INPUT->post->str('fullname'); 1057 $changes['mail'] = $INPUT->post->str('email'); 1058 1059 // check misspelled passwords 1060 if($changes['pass'] != $INPUT->post->str('passchk')) { 1061 msg($lang['regbadpass'], -1); 1062 return false; 1063 } 1064 1065 // clean fullname and email 1066 $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name'])); 1067 $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail'])); 1068 1069 // no empty name and email (except the backend doesn't support them) 1070 if((empty($changes['name']) && $auth->canDo('modName')) || 1071 (empty($changes['mail']) && $auth->canDo('modMail')) 1072 ) { 1073 msg($lang['profnoempty'], -1); 1074 return false; 1075 } 1076 if(!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) { 1077 msg($lang['regbadmail'], -1); 1078 return false; 1079 } 1080 1081 $changes = array_filter($changes); 1082 1083 // check for unavailable capabilities 1084 if(!$auth->canDo('modName')) unset($changes['name']); 1085 if(!$auth->canDo('modMail')) unset($changes['mail']); 1086 if(!$auth->canDo('modPass')) unset($changes['pass']); 1087 1088 // anything to do? 1089 if(!count($changes)) { 1090 msg($lang['profnochange'], -1); 1091 return false; 1092 } 1093 1094 if($conf['profileconfirm']) { 1095 if(!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) { 1096 msg($lang['badpassconfirm'], -1); 1097 return false; 1098 } 1099 } 1100 1101 if(!$auth->triggerUserMod('modify', array($INPUT->server->str('REMOTE_USER'), &$changes))) { 1102 msg($lang['proffail'], -1); 1103 return false; 1104 } 1105 1106 // update cookie and session with the changed data 1107 if($changes['pass']) { 1108 list( /*user*/, $sticky, /*pass*/) = auth_getCookie(); 1109 $pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true)); 1110 auth_setCookie($INPUT->server->str('REMOTE_USER'), $pass, (bool) $sticky); 1111 } 1112 return true; 1113} 1114 1115/** 1116 * Delete the current logged-in user 1117 * 1118 * @return bool true on success, false on any error 1119 */ 1120function auth_deleteprofile(){ 1121 global $conf; 1122 global $lang; 1123 /* @var DokuWiki_Auth_Plugin $auth */ 1124 global $auth; 1125 /* @var Input $INPUT */ 1126 global $INPUT; 1127 1128 if(!$INPUT->post->bool('delete')) return false; 1129 if(!checkSecurityToken()) return false; 1130 1131 // action prevented or auth module disallows 1132 if(!actionOK('profile_delete') || !$auth->canDo('delUser')) { 1133 msg($lang['profnodelete'], -1); 1134 return false; 1135 } 1136 1137 if(!$INPUT->post->bool('confirm_delete')){ 1138 msg($lang['profconfdeletemissing'], -1); 1139 return false; 1140 } 1141 1142 if($conf['profileconfirm']) { 1143 if(!$auth->checkPass($INPUT->server->str('REMOTE_USER'), $INPUT->post->str('oldpass'))) { 1144 msg($lang['badpassconfirm'], -1); 1145 return false; 1146 } 1147 } 1148 1149 $deleted = array(); 1150 $deleted[] = $INPUT->server->str('REMOTE_USER'); 1151 if($auth->triggerUserMod('delete', array($deleted))) { 1152 // force and immediate logout including removing the sticky cookie 1153 auth_logoff(); 1154 return true; 1155 } 1156 1157 return false; 1158} 1159 1160/** 1161 * Send a new password 1162 * 1163 * This function handles both phases of the password reset: 1164 * 1165 * - handling the first request of password reset 1166 * - validating the password reset auth token 1167 * 1168 * @author Benoit Chesneau <benoit@bchesneau.info> 1169 * @author Chris Smith <chris@jalakai.co.uk> 1170 * @author Andreas Gohr <andi@splitbrain.org> 1171 * 1172 * @return bool true on success, false on any error 1173 */ 1174function act_resendpwd() { 1175 global $lang; 1176 global $conf; 1177 /* @var DokuWiki_Auth_Plugin $auth */ 1178 global $auth; 1179 /* @var Input $INPUT */ 1180 global $INPUT; 1181 1182 if(!actionOK('resendpwd')) { 1183 msg($lang['resendna'], -1); 1184 return false; 1185 } 1186 1187 $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth')); 1188 1189 if($token) { 1190 // we're in token phase - get user info from token 1191 1192 $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth'; 1193 if(!file_exists($tfile)) { 1194 msg($lang['resendpwdbadauth'], -1); 1195 $INPUT->remove('pwauth'); 1196 return false; 1197 } 1198 // token is only valid for 3 days 1199 if((time() - filemtime($tfile)) > (3 * 60 * 60 * 24)) { 1200 msg($lang['resendpwdbadauth'], -1); 1201 $INPUT->remove('pwauth'); 1202 @unlink($tfile); 1203 return false; 1204 } 1205 1206 $user = io_readfile($tfile); 1207 $userinfo = $auth->getUserData($user, $requireGroups = false); 1208 if(!$userinfo['mail']) { 1209 msg($lang['resendpwdnouser'], -1); 1210 return false; 1211 } 1212 1213 if(!$conf['autopasswd']) { // we let the user choose a password 1214 $pass = $INPUT->str('pass'); 1215 1216 // password given correctly? 1217 if(!$pass) return false; 1218 if($pass != $INPUT->str('passchk')) { 1219 msg($lang['regbadpass'], -1); 1220 return false; 1221 } 1222 1223 // change it 1224 if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) { 1225 msg($lang['proffail'], -1); 1226 return false; 1227 } 1228 1229 } else { // autogenerate the password and send by mail 1230 1231 $pass = auth_pwgen($user); 1232 if(!$auth->triggerUserMod('modify', array($user, array('pass' => $pass)))) { 1233 msg($lang['proffail'], -1); 1234 return false; 1235 } 1236 1237 if(auth_sendPassword($user, $pass)) { 1238 msg($lang['resendpwdsuccess'], 1); 1239 } else { 1240 msg($lang['regmailfail'], -1); 1241 } 1242 } 1243 1244 @unlink($tfile); 1245 return true; 1246 1247 } else { 1248 // we're in request phase 1249 1250 if(!$INPUT->post->bool('save')) return false; 1251 1252 if(!$INPUT->post->str('login')) { 1253 msg($lang['resendpwdmissing'], -1); 1254 return false; 1255 } else { 1256 $user = trim($auth->cleanUser($INPUT->post->str('login'))); 1257 } 1258 1259 $userinfo = $auth->getUserData($user, $requireGroups = false); 1260 if(!$userinfo['mail']) { 1261 msg($lang['resendpwdnouser'], -1); 1262 return false; 1263 } 1264 1265 // generate auth token 1266 $token = md5(auth_randombytes(16)); // random secret 1267 $tfile = $conf['cachedir'].'/'.$token{0}.'/'.$token.'.pwauth'; 1268 $url = wl('', array('do'=> 'resendpwd', 'pwauth'=> $token), true, '&'); 1269 1270 io_saveFile($tfile, $user); 1271 1272 $text = rawLocale('pwconfirm'); 1273 $trep = array( 1274 'FULLNAME' => $userinfo['name'], 1275 'LOGIN' => $user, 1276 'CONFIRM' => $url 1277 ); 1278 1279 $mail = new Mailer(); 1280 $mail->to($userinfo['name'].' <'.$userinfo['mail'].'>'); 1281 $mail->subject($lang['regpwmail']); 1282 $mail->setBody($text, $trep); 1283 if($mail->send()) { 1284 msg($lang['resendpwdconfirm'], 1); 1285 } else { 1286 msg($lang['regmailfail'], -1); 1287 } 1288 return true; 1289 } 1290 // never reached 1291} 1292 1293/** 1294 * Encrypts a password using the given method and salt 1295 * 1296 * If the selected method needs a salt and none was given, a random one 1297 * is chosen. 1298 * 1299 * @author Andreas Gohr <andi@splitbrain.org> 1300 * 1301 * @param string $clear The clear text password 1302 * @param string $method The hashing method 1303 * @param string $salt A salt, null for random 1304 * @return string The crypted password 1305 */ 1306function auth_cryptPassword($clear, $method = '', $salt = null) { 1307 global $conf; 1308 if(empty($method)) $method = $conf['passcrypt']; 1309 1310 $pass = new PassHash(); 1311 $call = 'hash_'.$method; 1312 1313 if(!method_exists($pass, $call)) { 1314 msg("Unsupported crypt method $method", -1); 1315 return false; 1316 } 1317 1318 return $pass->$call($clear, $salt); 1319} 1320 1321/** 1322 * Verifies a cleartext password against a crypted hash 1323 * 1324 * @author Andreas Gohr <andi@splitbrain.org> 1325 * 1326 * @param string $clear The clear text password 1327 * @param string $crypt The hash to compare with 1328 * @return bool true if both match 1329 */ 1330function auth_verifyPassword($clear, $crypt) { 1331 $pass = new PassHash(); 1332 return $pass->verify_hash($clear, $crypt); 1333} 1334 1335/** 1336 * Set the authentication cookie and add user identification data to the session 1337 * 1338 * @param string $user username 1339 * @param string $pass encrypted password 1340 * @param bool $sticky whether or not the cookie will last beyond the session 1341 * @return bool 1342 */ 1343function auth_setCookie($user, $pass, $sticky) { 1344 global $conf; 1345 /* @var DokuWiki_Auth_Plugin $auth */ 1346 global $auth; 1347 global $USERINFO; 1348 1349 if(!$auth) return false; 1350 $USERINFO = $auth->getUserData($user); 1351 1352 // set cookie 1353 $cookie = base64_encode($user).'|'.((int) $sticky).'|'.base64_encode($pass); 1354 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 1355 $time = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year 1356 setcookie(DOKU_COOKIE, $cookie, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true); 1357 1358 // set session 1359 $_SESSION[DOKU_COOKIE]['auth']['user'] = $user; 1360 $_SESSION[DOKU_COOKIE]['auth']['pass'] = sha1($pass); 1361 $_SESSION[DOKU_COOKIE]['auth']['buid'] = auth_browseruid(); 1362 $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO; 1363 $_SESSION[DOKU_COOKIE]['auth']['time'] = time(); 1364 1365 return true; 1366} 1367 1368/** 1369 * Returns the user, (encrypted) password and sticky bit from cookie 1370 * 1371 * @returns array 1372 */ 1373function auth_getCookie() { 1374 if(!isset($_COOKIE[DOKU_COOKIE])) { 1375 return array(null, null, null); 1376 } 1377 list($user, $sticky, $pass) = explode('|', $_COOKIE[DOKU_COOKIE], 3); 1378 $sticky = (bool) $sticky; 1379 $pass = base64_decode($pass); 1380 $user = base64_decode($user); 1381 return array($user, $sticky, $pass); 1382} 1383 1384//Setup VIM: ex: et ts=2 : 1385