xref: /dokuwiki/inc/auth.php (revision 074cf26b87d427287e6179f51b9e64c2b1e88ac2)
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
12ed7b5f09Sandi  if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../').'/');
13ed7b5f09Sandi  require_once(DOKU_INC.'inc/common.php');
14ed7b5f09Sandi  require_once(DOKU_INC.'inc/io.php');
15ed7b5f09Sandi  require_once(DOKU_INC.'inc/blowfish.php');
16ed7b5f09Sandi  require_once(DOKU_INC.'inc/mail.php');
1715fae107Sandi  // load the the auth functions
18ed7b5f09Sandi  require_once(DOKU_INC.'inc/auth_'.$conf['authtype'].'.php');
1910a76f6fSfrank  require_once(DOKU_INC.'inc/acl_admin.php');
20f3f0262cSandi
2115fae107Sandi  // some ACL level defines
22f3f0262cSandi  define('AUTH_NONE',0);
23f3f0262cSandi  define('AUTH_READ',1);
24f3f0262cSandi  define('AUTH_EDIT',2);
25f3f0262cSandi  define('AUTH_CREATE',4);
26f3f0262cSandi  define('AUTH_UPLOAD',8);
2710a76f6fSfrank  define('AUTH_ADMIN',255);
28f3f0262cSandi
29f3f0262cSandi  if($conf['useacl']){
30132bdbfeSandi    auth_login($_REQUEST['u'],$_REQUEST['p'],$_REQUEST['r']);
3115fae107Sandi    //load ACL into a global array
32f3f0262cSandi    $AUTH_ACL = file('conf/acl.auth');
33f3f0262cSandi  }
34f3f0262cSandi
35f3f0262cSandi/**
36f3f0262cSandi * This tries to login the user based on the sent auth credentials
37f3f0262cSandi *
38f3f0262cSandi * The authentication works like this: if a username was given
3915fae107Sandi * a new login is assumed and user/password are checked. If they
4015fae107Sandi * are correct the password is encrypted with blowfish and stored
4115fae107Sandi * together with the username in a cookie - the same info is stored
4215fae107Sandi * in the session, too. Additonally a browserID is stored in the
4315fae107Sandi * session.
4415fae107Sandi *
4515fae107Sandi * If no username was given the cookie is checked: if the username,
4615fae107Sandi * crypted password and browserID match between session and cookie
4715fae107Sandi * no further testing is done and the user is accepted
4815fae107Sandi *
4915fae107Sandi * If a cookie was found but no session info was availabe the
5015fae107Sandi * blowish encrypted password from the cookie is decrypted and
5115fae107Sandi * together with username rechecked by calling this function again.
52f3f0262cSandi *
53f3f0262cSandi * On a successful login $_SERVER[REMOTE_USER] and $USERINFO
54f3f0262cSandi * are set.
5515fae107Sandi *
5615fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
5715fae107Sandi *
5815fae107Sandi * @param   string  $user    Username
5915fae107Sandi * @param   string  $pass    Cleartext Password
6015fae107Sandi * @param   bool    $sticky  Cookie should not expire
6115fae107Sandi * @return  bool             true on successful auth
62f3f0262cSandi*/
63132bdbfeSandifunction auth_login($user,$pass,$sticky=false){
64f3f0262cSandi  global $USERINFO;
65f3f0262cSandi  global $conf;
66f3f0262cSandi  global $lang;
67132bdbfeSandi  $sticky ? $sticky = true : $sticky = false; //sanity check
68f3f0262cSandi
69f3f0262cSandi  if(isset($user)){
70132bdbfeSandi    //usual login
71f3f0262cSandi    if (auth_checkPass($user,$pass)){
72132bdbfeSandi      // make logininfo globally available
73f3f0262cSandi      $_SERVER['REMOTE_USER'] = $user;
74132bdbfeSandi      $USERINFO = auth_getUserData($user); //FIXME move all references to session
75132bdbfeSandi
76132bdbfeSandi      // set cookie
77132bdbfeSandi      $pass   = PMA_blowfish_encrypt($pass,auth_cookiesalt());
78132bdbfeSandi      $cookie = base64_encode("$user|$sticky|$pass");
79132bdbfeSandi      if($sticky) $time = time()+60*60*24*365; //one year
80132bdbfeSandi      setcookie('DokuWikiAUTH',$cookie,$time);
81132bdbfeSandi
82132bdbfeSandi      // set session
83132bdbfeSandi      $_SESSION[$conf['title']]['auth']['user'] = $user;
84132bdbfeSandi      $_SESSION[$conf['title']]['auth']['pass'] = $pass;
85132bdbfeSandi      $_SESSION[$conf['title']]['auth']['buid'] = auth_browseruid();
86132bdbfeSandi      $_SESSION[$conf['title']]['auth']['info'] = $USERINFO;
87132bdbfeSandi      return true;
88f3f0262cSandi    }else{
89f3f0262cSandi      //invalid credentials - log off
90f3f0262cSandi      msg($lang['badlogin'],-1);
91f3f0262cSandi      auth_logoff();
92132bdbfeSandi      return false;
93f3f0262cSandi    }
94f3f0262cSandi  }else{
95132bdbfeSandi    // read cookie information
96132bdbfeSandi    $cookie = base64_decode($_COOKIE['DokuWikiAUTH']);
97132bdbfeSandi    list($user,$sticky,$pass) = split('\|',$cookie,3);
98132bdbfeSandi    // get session info
99132bdbfeSandi    $session = $_SESSION[$conf['title']]['auth'];
100132bdbfeSandi
101132bdbfeSandi    if($user && $pass){
102132bdbfeSandi      // we got a cookie - see if we can trust it
103132bdbfeSandi      if(isset($session) &&
104132bdbfeSandi        ($session['user'] == $user) &&
105132bdbfeSandi        ($session['pass'] == $pass) &&  //still crypted
106132bdbfeSandi        ($session['buid'] == auth_browseruid()) ){
107132bdbfeSandi        // he has session, cookie and browser right - let him in
108132bdbfeSandi        $_SERVER['REMOTE_USER'] = $user;
109132bdbfeSandi        $USERINFO = $session['info']; //FIXME move all references to session
110132bdbfeSandi        return true;
111132bdbfeSandi      }
112132bdbfeSandi      // no we don't trust it yet - recheck pass
113132bdbfeSandi      $pass = PMA_blowfish_decrypt($pass,auth_cookiesalt());
114132bdbfeSandi      return auth_login($user,$pass,$sticky);
115132bdbfeSandi    }
116132bdbfeSandi  }
117f3f0262cSandi  //just to be sure
118f3f0262cSandi  auth_logoff();
119132bdbfeSandi  return false;
120f3f0262cSandi}
121132bdbfeSandi
122132bdbfeSandi/**
123132bdbfeSandi * Builds a pseudo UID from browserdata
124132bdbfeSandi *
125132bdbfeSandi * This is neither unique nor unfakable - still it adds some
126132bdbfeSandi * security
12715fae107Sandi *
12815fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
12915fae107Sandi *
13015fae107Sandi * @return  string  a MD5 sum of various browser headers
131132bdbfeSandi */
132132bdbfeSandifunction auth_browseruid(){
133132bdbfeSandi  $uid  = '';
134132bdbfeSandi  $uid .= $_SERVER['HTTP_USER_AGENT'];
135132bdbfeSandi  $uid .= $_SERVER['HTTP_ACCEPT_ENCODING'];
136132bdbfeSandi  $uid .= $_SERVER['HTTP_ACCEPT_LANGUAGE'];
137132bdbfeSandi  $uid .= $_SERVER['HTTP_ACCEPT_CHARSET'];
138132bdbfeSandi  return md5($uid);
139132bdbfeSandi}
140132bdbfeSandi
141132bdbfeSandi/**
142132bdbfeSandi * Creates a random key to encrypt the password in cookies
14315fae107Sandi *
14415fae107Sandi * This function tries to read the password for encrypting
145dfd3db4aSandi * cookies from $conf['datadir'].'/.cache/.htcookiesalt'
14615fae107Sandi * if no such file is found a random key is created and
14715fae107Sandi * and stored in this file.
14815fae107Sandi *
14915fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
15015fae107Sandi *
15115fae107Sandi * @return  string
152132bdbfeSandi */
153132bdbfeSandifunction auth_cookiesalt(){
154132bdbfeSandi  global $conf;
155dfd3db4aSandi  $file = $conf['datadir'].'/.cache/.htcookiesalt';
156132bdbfeSandi  $salt = io_readFile($file);
157132bdbfeSandi  if(empty($salt)){
158132bdbfeSandi    $salt = uniqid(rand(),true);
159132bdbfeSandi    io_saveFile($file,$salt);
160132bdbfeSandi  }
161132bdbfeSandi  return $salt;
162f3f0262cSandi}
163f3f0262cSandi
164f3f0262cSandi/**
165f3f0262cSandi * This clears all authenticationdata and thus log the user
166f3f0262cSandi * off
16715fae107Sandi *
16815fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
169f3f0262cSandi */
170f3f0262cSandifunction auth_logoff(){
171f3f0262cSandi  global $conf;
172f3f0262cSandi  global $USERINFO;
173132bdbfeSandi  unset($_SESSION[$conf['title']]['auth']['user']);
174132bdbfeSandi  unset($_SESSION[$conf['title']]['auth']['pass']);
175132bdbfeSandi  unset($_SESSION[$conf['title']]['auth']['info']);
176f3f0262cSandi  unset($_SERVER['REMOTE_USER']);
177132bdbfeSandi  $USERINFO=null; //FIXME
178132bdbfeSandi  setcookie('DokuWikiAUTH','',time()-3600);
179f3f0262cSandi}
180f3f0262cSandi
181f3f0262cSandi/**
18215fae107Sandi * Convinience function for auth_aclcheck()
18315fae107Sandi *
18415fae107Sandi * This checks the permissions for the current user
18515fae107Sandi *
18615fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
18715fae107Sandi *
18815fae107Sandi * @param  string  $id  page ID
18915fae107Sandi * @return int          permission level
190f3f0262cSandi */
191f3f0262cSandifunction auth_quickaclcheck($id){
192f3f0262cSandi  global $conf;
193f3f0262cSandi  global $USERINFO;
194f3f0262cSandi  # if no ACL is used always return upload rights
195f3f0262cSandi  if(!$conf['useacl']) return AUTH_UPLOAD;
196f3f0262cSandi  return auth_aclcheck($id,$_SERVER['REMOTE_USER'],$USERINFO['grps']);
197f3f0262cSandi}
198f3f0262cSandi
199f3f0262cSandi/**
200f3f0262cSandi * Returns the maximum rights a user has for
201f3f0262cSandi * the given ID or its namespace
20215fae107Sandi *
20315fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
20415fae107Sandi *
20515fae107Sandi * @param  string  $id     page ID
20615fae107Sandi * @param  string  $user   Username
20715fae107Sandi * @param  array   $groups Array of groups the user is in
20815fae107Sandi * @return int             permission level
209f3f0262cSandi */
210f3f0262cSandifunction auth_aclcheck($id,$user,$groups){
211f3f0262cSandi  global $conf;
212f3f0262cSandi  global $AUTH_ACL;
213f3f0262cSandi
214f3f0262cSandi  # if no ACL is used always return upload rights
215f3f0262cSandi  if(!$conf['useacl']) return AUTH_UPLOAD;
216f3f0262cSandi
21710a76f6fSfrank  //if user is superuser return 255 (acl_admin)
21810a76f6fSfrank  if($conf['superuser'] == $user) { return AUTH_ADMIN; }
21910a76f6fSfrank
220*074cf26bSandi  //make sure groups is an array
221*074cf26bSandi  if(!is_array($groups)) $groups = array();
222*074cf26bSandi
22310a76f6fSfrank  //prepend groups with @
22410a76f6fSfrank  for($i=0; $i<count($groups); $i++){
22510a76f6fSfrank    $groups[$i] = '@'.$groups[$i];
22610a76f6fSfrank  }
22710a76f6fSfrank  //if user is in superuser group return 255 (acl_admin)
22810a76f6fSfrank  if(in_array($conf['superuser'], $groups)) { return AUTH_ADMIN; }
22910a76f6fSfrank
230f3f0262cSandi  $ns    = getNS($id);
231f3f0262cSandi  $perm  = -1;
232f3f0262cSandi
233f3f0262cSandi  if($user){
234f3f0262cSandi    //prepend groups with @
235f3f0262cSandi    for($i=0; $i<count($groups); $i++){
236f3f0262cSandi      $groups[$i] = '@'.$groups[$i];
237f3f0262cSandi    }
238f3f0262cSandi    //add ALL group
239f3f0262cSandi    $groups[] = '@ALL';
240f3f0262cSandi    //add User
241f3f0262cSandi    $groups[] = $user;
242f3f0262cSandi    //build regexp
243f3f0262cSandi    $regexp   = join('|',$groups);
244f3f0262cSandi  }else{
245f3f0262cSandi    $regexp = '@ALL';
246f3f0262cSandi  }
247f3f0262cSandi
248f3f0262cSandi  //check exact match first
249f3f0262cSandi  $matches = preg_grep('/^'.$id.'\s+('.$regexp.')\s+/',$AUTH_ACL);
250f3f0262cSandi  if(count($matches)){
251f3f0262cSandi    foreach($matches as $match){
252f3f0262cSandi      $match = preg_replace('/#.*$/','',$match); //ignore comments
253f3f0262cSandi      $acl   = preg_split('/\s+/',$match);
25410a76f6fSfrank      if($acl[2] > AUTH_UPLOAD) $acl[2] = AUTH_UPLOAD; //no admins in the ACL!
255f3f0262cSandi      if($acl[2] > $perm){
256f3f0262cSandi        $perm = $acl[2];
257f3f0262cSandi      }
258f3f0262cSandi    }
259f3f0262cSandi    if($perm > -1){
260f3f0262cSandi      //we had a match - return it
261f3f0262cSandi      return $perm;
262f3f0262cSandi    }
263f3f0262cSandi  }
264f3f0262cSandi
265f3f0262cSandi  //still here? do the namespace checks
266f3f0262cSandi  if($ns){
267f3f0262cSandi    $path = $ns.':\*';
268f3f0262cSandi  }else{
269f3f0262cSandi    $path = '\*'; //root document
270f3f0262cSandi  }
271f3f0262cSandi
272f3f0262cSandi  do{
273f3f0262cSandi    $matches = preg_grep('/^'.$path.'\s+('.$regexp.')\s+/',$AUTH_ACL);
274f3f0262cSandi    if(count($matches)){
275f3f0262cSandi      foreach($matches as $match){
276f3f0262cSandi        $match = preg_replace('/#.*$/','',$match); //ignore comments
277f3f0262cSandi        $acl   = preg_split('/\s+/',$match);
27810a76f6fSfrank        if($acl[2] > AUTH_UPLOAD) $acl[2] = AUTH_UPLOAD; //no admins in the ACL!
279f3f0262cSandi        if($acl[2] > $perm){
280f3f0262cSandi          $perm = $acl[2];
281f3f0262cSandi        }
282f3f0262cSandi      }
283f3f0262cSandi      //we had a match - return it
284f3f0262cSandi      return $perm;
285f3f0262cSandi    }
286f3f0262cSandi
287f3f0262cSandi    //get next higher namespace
288f3f0262cSandi    $ns   = getNS($ns);
289f3f0262cSandi
290f3f0262cSandi    if($path != '\*'){
291f3f0262cSandi      $path = $ns.':\*';
292f3f0262cSandi      if($path == ':\*') $path = '\*';
293f3f0262cSandi    }else{
294f3f0262cSandi      //we did this already
295f3f0262cSandi      //looks like there is something wrong with the ACL
296f3f0262cSandi      //break here
297f3f0262cSandi      return $perm;
298f3f0262cSandi    }
299f3f0262cSandi  }while(1); //this should never loop endless
300f3f0262cSandi}
301f3f0262cSandi
302f3f0262cSandi/**
303f3f0262cSandi * Create a pronouncable password
304f3f0262cSandi *
30515fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
30615fae107Sandi * @link    http://www.phpbuilder.com/annotate/message.php3?id=1014451
30715fae107Sandi *
30815fae107Sandi * @return string  pronouncable password
309f3f0262cSandi */
310f3f0262cSandifunction auth_pwgen(){
311f3f0262cSandi  $pw = '';
312f3f0262cSandi  $c  = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones
313f3f0262cSandi  $v  = 'aeiou';              //vowels
314f3f0262cSandi  $a  = $c.$v;                //both
315f3f0262cSandi
316f3f0262cSandi  //use two syllables...
317f3f0262cSandi  for($i=0;$i < 2; $i++){
318f3f0262cSandi    $pw .= $c[rand(0, strlen($c)-1)];
319f3f0262cSandi    $pw .= $v[rand(0, strlen($v)-1)];
320f3f0262cSandi    $pw .= $a[rand(0, strlen($a)-1)];
321f3f0262cSandi  }
322f3f0262cSandi  //... and add a nice number
323f3f0262cSandi  $pw .= rand(10,99);
324f3f0262cSandi
325f3f0262cSandi  return $pw;
326f3f0262cSandi}
327f3f0262cSandi
328f3f0262cSandi/**
329f3f0262cSandi * Sends a password to the given user
330f3f0262cSandi *
33115fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
33215fae107Sandi *
33315fae107Sandi * @return bool  true on success
334f3f0262cSandi */
335f3f0262cSandifunction auth_sendPassword($user,$password){
336f3f0262cSandi  global $conf;
337f3f0262cSandi  global $lang;
338f3f0262cSandi  $hdrs  = '';
33987ddda95Sandi  $userinfo = auth_getUserData($user);
340f3f0262cSandi
34187ddda95Sandi  if(!$userinfo['mail']) return false;
342f3f0262cSandi
343f3f0262cSandi  $text = rawLocale('password');
344ed7b5f09Sandi  $text = str_replace('@DOKUWIKIURL@',DOKU_URL,$text);
34587ddda95Sandi  $text = str_replace('@FULLNAME@',$userinfo['name'],$text);
346f3f0262cSandi  $text = str_replace('@LOGIN@',$user,$text);
347f3f0262cSandi  $text = str_replace('@PASSWORD@',$password,$text);
348f3f0262cSandi  $text = str_replace('@TITLE@',$conf['title'],$text);
349f3f0262cSandi
35044f669e9Sandi  return mail_send($userinfo['name'].' <'.$userinfo['mail'].'>',
35144f669e9Sandi                   $lang['regpwmail'],
35244f669e9Sandi                   $text,
35344f669e9Sandi                   $conf['mailfrom']);
354f3f0262cSandi}
355f3f0262cSandi
356f3f0262cSandi/**
35715fae107Sandi * Register a new user
358f3f0262cSandi *
35915fae107Sandi * This registers a new user - Data is read directly from $_POST
36015fae107Sandi *
36115fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
36215fae107Sandi *
36315fae107Sandi * @return bool  true on success, false on any error
364f3f0262cSandi */
365f3f0262cSandifunction register(){
366f3f0262cSandi  global $lang;
367f3f0262cSandi  global $conf;
368f3f0262cSandi
369f3f0262cSandi  if(!$_POST['save']) return false;
370f3f0262cSandi  if(!$conf['openregister']) return false;
371f3f0262cSandi
372f3f0262cSandi  //clean username
373f3f0262cSandi  $_POST['login'] = preg_replace('/.*:/','',$_POST['login']);
374f3f0262cSandi  $_POST['login'] = cleanID($_POST['login']);
375f3f0262cSandi  //clean fullname and email
376f3f0262cSandi  $_POST['fullname'] = trim(str_replace(':','',$_POST['fullname']));
377f3f0262cSandi  $_POST['email']    = trim(str_replace(':','',$_POST['email']));
378f3f0262cSandi
379f3f0262cSandi  if( empty($_POST['login']) ||
380f3f0262cSandi      empty($_POST['fullname']) ||
381f3f0262cSandi      empty($_POST['email']) ){
382f3f0262cSandi    msg($lang['regmissing'],-1);
383f3f0262cSandi    return false;
384f3f0262cSandi  }
385f3f0262cSandi
386f3f0262cSandi  //check mail
38744f669e9Sandi  if(!mail_isvalid($_POST['email'])){
388f3f0262cSandi    msg($lang['regbadmail'],-1);
389f3f0262cSandi    return false;
390f3f0262cSandi  }
391f3f0262cSandi
392f3f0262cSandi  //okay try to create the user
393f3f0262cSandi  $pass = auth_createUser($_POST['login'],$_POST['fullname'],$_POST['email']);
394f3f0262cSandi  if(empty($pass)){
395f3f0262cSandi    msg($lang['reguexists'],-1);
396f3f0262cSandi    return false;
397f3f0262cSandi  }
398f3f0262cSandi
399f3f0262cSandi  //send him the password
400f3f0262cSandi  if (auth_sendPassword($_POST['login'],$pass)){
401f3f0262cSandi    msg($lang['regsuccess'],1);
402f3f0262cSandi    return true;
403f3f0262cSandi  }else{
404f3f0262cSandi    msg($lang['regmailfail'],-1);
405f3f0262cSandi    return false;
406f3f0262cSandi  }
407f3f0262cSandi}
408f3f0262cSandi
40910a76f6fSfrank/**
41010a76f6fSfrank * Uses a regular expresion to check if a given mail address is valid
41110a76f6fSfrank *
41210a76f6fSfrank * May not be completly RFC conform!
41310a76f6fSfrank *
41410a76f6fSfrank * @link    http://www.webmasterworld.com/forum88/135.htm
41510a76f6fSfrank *
41610a76f6fSfrank * @param   string $email the address to check
41710a76f6fSfrank * @return  bool          true if address is valid
41810a76f6fSfrank */
41910a76f6fSfrankfunction isvalidemail($email){
42010a76f6fSfrank  return eregi("^[0-9a-z]([-_.]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\\.[a-z]{2,4}$", $email);
42110a76f6fSfrank}
42210a76f6fSfrank
42310a76f6fSfrank
424f3f0262cSandi?>
425