]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/LdapAuthentication/LdapAuthenticationPlugin.php
Removed unused stub class
[quix0rs-gnu-social.git] / plugins / LdapAuthentication / LdapAuthenticationPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Plugin to enable LDAP Authentication
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Craig Andrews <candrews@integralblue.com>
25  * @copyright 2009 Craig Andrews http://candrews.integralblue.com
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once 'Net/LDAP2.php';
35
36 class LdapAuthenticationPlugin extends AuthenticationPlugin
37 {
38     public $host=null;
39     public $port=null;
40     public $version=null;
41     public $starttls=null;
42     public $binddn=null;
43     public $bindpw=null;
44     public $basedn=null;
45     public $options=null;
46     public $filter=null;
47     public $scope=null;
48     public $password_encoding=null;
49     public $attributes=array();
50
51     function onInitializePlugin(){
52         parent::onInitializePlugin();
53         if(!isset($this->host)){
54             throw new Exception("must specify a host");
55         }
56         if(!isset($this->basedn)){
57             throw new Exception("must specify a basedn");
58         }
59         if(!isset($this->attributes['nickname'])){
60             throw new Exception("must specify a nickname attribute");
61         }
62         if(!isset($this->attributes['username'])){
63             throw new Exception("must specify a username attribute");
64         }
65         if($this->password_changeable && (! isset($this->attributes['password']) || !isset($this->password_encoding))){
66             throw new Exception("if password_changeable is set, the password attribute and password_encoding must also be specified");
67         }
68     }
69
70     function onAutoload($cls)
71     {   
72         switch ($cls)
73         {
74          case 'MemcacheSchemaCache':
75             require_once(INSTALLDIR.'/plugins/LdapAuthentication/MemcacheSchemaCache.php');
76             return false;
77         }
78     }
79     
80     //---interface implementation---//
81
82     function checkPassword($username, $password)
83     {
84         $entry = $this->ldap_get_user($username);
85         if(!$entry){
86             return false;
87         }else{
88             $config = $this->ldap_get_config();
89             $config['binddn']=$entry->dn();
90             $config['bindpw']=$password;
91             if($this->ldap_get_connection($config)){
92                 return true;
93             }else{
94                 return false;
95             }
96         }
97     }
98
99     function autoRegister($username)
100     {
101         $entry = $this->ldap_get_user($username,$this->attributes);
102         if($entry){
103             $registration_data = array();
104             foreach($this->attributes as $sn_attribute=>$ldap_attribute){
105                 $registration_data[$sn_attribute]=$entry->getValue($ldap_attribute,'single');
106             }
107             if(isset($registration_data['email']) && !empty($registration_data['email'])){
108                 $registration_data['email_confirmed']=true;
109             }
110             //set the database saved password to a random string.
111             $registration_data['password']=common_good_rand(16);
112             return User::register($registration_data);
113         }else{
114             //user isn't in ldap, so we cannot register him
115             return false;
116         }
117     }
118
119     function changePassword($username,$oldpassword,$newpassword)
120     {
121         if(! isset($this->attributes['password']) || !isset($this->password_encoding)){
122             //throw new Exception(_('Sorry, changing LDAP passwords is not supported at this time'));
123             return false;
124         }
125         $entry = $this->ldap_get_user($username);
126         if(!$entry){
127             return false;
128         }else{
129             $config = $this->ldap_get_config();
130             $config['binddn']=$entry->dn();
131             $config['bindpw']=$oldpassword;
132             if($ldap = $this->ldap_get_connection($config)){
133                 $entry = $this->ldap_get_user($username,array(),$ldap);
134                 
135                 $newCryptedPassword = $this->hashPassword($newpassword, $this->password_encoding);
136                 if ($newCryptedPassword===false) {
137                     return false;
138                 }
139                 if($this->password_encoding=='ad') {
140                     //TODO I believe this code will work once this bug is fixed: http://pear.php.net/bugs/bug.php?id=16796
141                     $oldCryptedPassword = $this->hashPassword($oldpassword, $this->password_encoding);
142                     $entry->delete( array($this->attributes['password'] => $oldCryptedPassword ));
143                 }
144                 $entry->replace( array($this->attributes['password'] => $newCryptedPassword ), true);
145                 if( Net_LDAP2::isError($entry->upate()) ) {
146                     return false;
147                 }
148                 return true;
149             }else{
150                 return false;
151             }
152         }
153
154         return false;
155     }
156     
157     //---utility functions---//
158     function ldap_get_config(){
159         $config = array();
160         $keys = array('host','port','version','starttls','binddn','bindpw','basedn','options','filter','scope');
161         foreach($keys as $key){
162             $value = $this->$key;
163             if($value!==null){
164                 $config[$key]=$value;
165             }
166         }
167         return $config;
168     }
169     
170     function ldap_get_connection($config = null){
171         if($config == null && isset($this->default_ldap)){
172             return $this->default_ldap;
173         }
174         
175         //cannot use Net_LDAP2::connect() as StatusNet uses
176         //PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
177         //PEAR handling can be overridden on instance objects, so we do that.
178         $ldap = new Net_LDAP2(isset($config)?$config:$this->ldap_get_config());
179         $ldap->setErrorHandling(PEAR_ERROR_RETURN);
180         $err=$ldap->bind();
181         if (Net_LDAP2::isError($err)) {
182             common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$err->getMessage());
183             return false;
184         }
185         if($config == null) $this->default_ldap=$ldap;
186
187         $c = common_memcache();
188         if (!empty($c)) {
189             $cacheObj = new MemcacheSchemaCache(
190                 array('c'=>$c,
191                    'cacheKey' => common_cache_key('ldap_schema:' . crc32(serialize($config)))));
192             $ldap->registerSchemaCache($cacheObj);
193         }
194         return $ldap;
195     }
196     
197     /**
198      * get an LDAP entry for a user with a given username
199      * 
200      * @param string $username
201      * $param array $attributes LDAP attributes to retrieve
202      * @return string DN
203      */
204     function ldap_get_user($username,$attributes=array(),$ldap=null){
205         if($ldap==null) {
206             $ldap = $this->ldap_get_connection();
207         }
208         $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals',  $username);
209         $options = array(
210             'attributes' => $attributes
211         );
212         $search = $ldap->search($this->basedn, $filter, $options);
213         
214         if (PEAR::isError($search)) {
215             common_log(LOG_WARNING, 'Error while getting DN for user: '.$search->getMessage());
216             return false;
217         }
218
219         $searchcount = $search->count();
220         if($searchcount == 0) {
221             return false;
222         }else if($searchcount == 1) {
223             $entry = $search->shiftEntry();
224             return $entry;
225         }else{
226             common_log(LOG_WARNING, 'Found ' . $searchcount . ' ldap user with the username: ' . $username);
227             return false;
228         }
229     }
230     
231     /**
232      * Code originaly from the phpLDAPadmin development team
233      * http://phpldapadmin.sourceforge.net/
234      *
235      * Hashes a password and returns the hash based on the specified enc_type.
236      *
237      * @param string $passwordClear The password to hash in clear text.
238      * @param string $encodageType Standard LDAP encryption type which must be one of
239      *        crypt, ext_des, md5crypt, blowfish, md5, sha, smd5, ssha, or clear.
240      * @return string The hashed password.
241      *
242      */
243
244     function hashPassword( $passwordClear, $encodageType ) 
245     {
246         $encodageType = strtolower( $encodageType );
247         switch( $encodageType ) {
248             case 'crypt': 
249                 $cryptedPassword = '{CRYPT}' . crypt($passwordClear,$this->randomSalt(2)); 
250                 break;
251                 
252             case 'ext_des':
253                 // extended des crypt. see OpenBSD crypt man page.
254                 if ( ! defined( 'CRYPT_EXT_DES' ) || CRYPT_EXT_DES == 0 ) {return FALSE;} //Your system crypt library does not support extended DES encryption.
255                 $cryptedPassword = '{CRYPT}' . crypt( $passwordClear, '_' . $this->randomSalt(8) );
256                 break;
257
258             case 'md5crypt':
259                 if( ! defined( 'CRYPT_MD5' ) || CRYPT_MD5 == 0 ) {return FALSE;} //Your system crypt library does not support md5crypt encryption.
260                 $cryptedPassword = '{CRYPT}' . crypt( $passwordClear , '$1$' . $this->randomSalt(9) );
261                 break;
262
263             case 'blowfish':
264                 if( ! defined( 'CRYPT_BLOWFISH' ) || CRYPT_BLOWFISH == 0 ) {return FALSE;} //Your system crypt library does not support blowfish encryption.
265                 $cryptedPassword = '{CRYPT}' . crypt( $passwordClear , '$2a$12$' . $this->randomSalt(13) ); // hardcoded to second blowfish version and set number of rounds
266                 break;
267
268             case 'md5':
269                 $cryptedPassword = '{MD5}' . base64_encode( pack( 'H*' , md5( $passwordClear) ) );
270                 break;
271
272             case 'sha':
273                 if( function_exists('sha1') ) {
274                     // use php 4.3.0+ sha1 function, if it is available.
275                     $cryptedPassword = '{SHA}' . base64_encode( pack( 'H*' , sha1( $passwordClear) ) );
276                 } elseif( function_exists( 'mhash' ) ) {
277                     $cryptedPassword = '{SHA}' . base64_encode( mhash( MHASH_SHA1, $passwordClear) );
278                 } else {
279                     return FALSE; //Your PHP install does not have the mhash() function. Cannot do SHA hashes.
280                 }
281                 break;
282
283             case 'ssha':
284                 if( function_exists( 'mhash' ) && function_exists( 'mhash_keygen_s2k' ) ) {
285                     mt_srand( (double) microtime() * 1000000 );
286                     $salt = mhash_keygen_s2k( MHASH_SHA1, $passwordClear, substr( pack( "h*", md5( mt_rand() ) ), 0, 8 ), 4 );
287                     $cryptedPassword = "{SSHA}".base64_encode( mhash( MHASH_SHA1, $passwordClear.$salt ).$salt );
288                 } else {
289                     return FALSE; //Your PHP install does not have the mhash() function. Cannot do SHA hashes.
290                 }
291                 break;
292
293             case 'smd5':
294                 if( function_exists( 'mhash' ) && function_exists( 'mhash_keygen_s2k' ) ) {
295                     mt_srand( (double) microtime() * 1000000 );
296                     $salt = mhash_keygen_s2k( MHASH_MD5, $passwordClear, substr( pack( "h*", md5( mt_rand() ) ), 0, 8 ), 4 );
297                     $cryptedPassword = "{SMD5}".base64_encode( mhash( MHASH_MD5, $passwordClear.$salt ).$salt );
298                 } else {
299                     return FALSE; //Your PHP install does not have the mhash() function. Cannot do SHA hashes.
300                 }
301                 break;
302
303             case 'ad':
304                 $cryptedPassword = '';
305                 $passwordClear = "\"" . $passwordClear . "\"";
306                 $len = strlen($passwordClear);
307                 for ($i = 0; $i < $len; $i++) {
308                     $cryptedPassword .= "{$passwordClear{$i}}\000";
309                 }
310
311             case 'clear':
312             default:
313                 $cryptedPassword = $passwordClear;
314         }
315
316         return $cryptedPassword;
317     }
318
319     /**
320      * Code originaly from the phpLDAPadmin development team
321      * http://phpldapadmin.sourceforge.net/
322      *
323      * Used to generate a random salt for crypt-style passwords. Salt strings are used
324      * to make pre-built hash cracking dictionaries difficult to use as the hash algorithm uses
325      * not only the user's password but also a randomly generated string. The string is
326      * stored as the first N characters of the hash for reference of hashing algorithms later.
327      *
328      * --- added 20021125 by bayu irawan <bayuir@divnet.telkom.co.id> ---
329      * --- ammended 20030625 by S C Rigler <srigler@houston.rr.com> ---
330      *
331      * @param int $length The length of the salt string to generate.
332      * @return string The generated salt string.
333      */
334      
335     function randomSalt( $length ) 
336     {
337         $possible = '0123456789'.
338             'abcdefghijklmnopqrstuvwxyz'.
339             'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
340             './';
341         $str = "";
342         mt_srand((double)microtime() * 1000000);
343
344         while( strlen( $str ) < $length )
345             $str .= substr( $possible, ( rand() % strlen( $possible ) ), 1 );
346
347         return $str;
348     }
349
350     function onPluginVersion(&$versions)
351     {
352         $versions[] = array('name' => 'LDAP Authentication',
353                             'version' => STATUSNET_VERSION,
354                             'author' => 'Craig Andrews',
355                             'homepage' => 'http://status.net/wiki/Plugin:LdapAuthentication',
356                             'rawdescription' =>
357                             _m('The LDAP Authentication plugin allows for StatusNet to handle authentication through LDAP.'));
358         return true;
359     }
360 }