]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/LdapAuthentication/LdapAuthenticationPlugin.php
1b5dc92e3f12c6c48fd60c9b600573cdab858b42
[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, $nickname)
100     {
101         if(is_null($nickname)){
102             $nickname = $username;
103         }
104         $entry = $this->ldap_get_user($username,$this->attributes);
105         if($entry){
106             $registration_data = array();
107             foreach($this->attributes as $sn_attribute=>$ldap_attribute){
108                 $registration_data[$sn_attribute]=$entry->getValue($ldap_attribute,'single');
109             }
110             if(isset($registration_data['email']) && !empty($registration_data['email'])){
111                 $registration_data['email_confirmed']=true;
112             }
113             $registration_data['nickname'] = $nickname;
114             //set the database saved password to a random string.
115             $registration_data['password']=common_good_rand(16);
116             return User::register($registration_data);
117         }else{
118             //user isn't in ldap, so we cannot register him
119             return false;
120         }
121     }
122
123     function changePassword($username,$oldpassword,$newpassword)
124     {
125         if(! isset($this->attributes['password']) || !isset($this->password_encoding)){
126             //throw new Exception(_('Sorry, changing LDAP passwords is not supported at this time'));
127             return false;
128         }
129         $entry = $this->ldap_get_user($username);
130         if(!$entry){
131             return false;
132         }else{
133             $config = $this->ldap_get_config();
134             $config['binddn']=$entry->dn();
135             $config['bindpw']=$oldpassword;
136             if($ldap = $this->ldap_get_connection($config)){
137                 $entry = $this->ldap_get_user($username,array(),$ldap);
138                 
139                 $newCryptedPassword = $this->hashPassword($newpassword, $this->password_encoding);
140                 if ($newCryptedPassword===false) {
141                     return false;
142                 }
143                 if($this->password_encoding=='ad') {
144                     //TODO I believe this code will work once this bug is fixed: http://pear.php.net/bugs/bug.php?id=16796
145                     $oldCryptedPassword = $this->hashPassword($oldpassword, $this->password_encoding);
146                     $entry->delete( array($this->attributes['password'] => $oldCryptedPassword ));
147                 }
148                 $entry->replace( array($this->attributes['password'] => $newCryptedPassword ), true);
149                 if( Net_LDAP2::isError($entry->upate()) ) {
150                     return false;
151                 }
152                 return true;
153             }else{
154                 return false;
155             }
156         }
157
158         return false;
159     }
160
161     function suggestNicknameForUsername($username)
162     {
163         $entry = $this->ldap_get_user($username, $this->attributes);
164         if(!$entry){
165             //this really shouldn't happen
166             return $username;
167         }else{
168             $nickname = $entry->getValue($this->attributes['nickname'],'single');
169             if($nickname){
170                 return $nickname;
171             }else{
172                 return $username;
173             }
174         }
175     }
176     
177     //---utility functions---//
178     function ldap_get_config(){
179         $config = array();
180         $keys = array('host','port','version','starttls','binddn','bindpw','basedn','options','filter','scope');
181         foreach($keys as $key){
182             $value = $this->$key;
183             if($value!==null){
184                 $config[$key]=$value;
185             }
186         }
187         return $config;
188     }
189     
190     function ldap_get_connection($config = null){
191         if($config == null && isset($this->default_ldap)){
192             return $this->default_ldap;
193         }
194         
195         //cannot use Net_LDAP2::connect() as StatusNet uses
196         //PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
197         //PEAR handling can be overridden on instance objects, so we do that.
198         $ldap = new Net_LDAP2(isset($config)?$config:$this->ldap_get_config());
199         $ldap->setErrorHandling(PEAR_ERROR_RETURN);
200         $err=$ldap->bind();
201         if (Net_LDAP2::isError($err)) {
202             throw new Exception('Could not connect to LDAP server: '.$err->getMessage());
203         }
204         if($config == null) $this->default_ldap=$ldap;
205
206         $c = common_memcache();
207         if (!empty($c)) {
208             $cacheObj = new MemcacheSchemaCache(
209                 array('c'=>$c,
210                    'cacheKey' => common_cache_key('ldap_schema:' . crc32(serialize($config)))));
211             $ldap->registerSchemaCache($cacheObj);
212         }
213         return $ldap;
214     }
215     
216     /**
217      * get an LDAP entry for a user with a given username
218      * 
219      * @param string $username
220      * $param array $attributes LDAP attributes to retrieve
221      * @return string DN
222      */
223     function ldap_get_user($username,$attributes=array(),$ldap=null){
224         if($ldap==null) {
225             $ldap = $this->ldap_get_connection();
226         }
227         $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals',  $username);
228         $options = array(
229             'attributes' => $attributes
230         );
231         $search = $ldap->search($this->basedn, $filter, $options);
232         
233         if (PEAR::isError($search)) {
234             common_log(LOG_WARNING, 'Error while getting DN for user: '.$search->getMessage());
235             return false;
236         }
237
238         $searchcount = $search->count();
239         if($searchcount == 0) {
240             return false;
241         }else if($searchcount == 1) {
242             $entry = $search->shiftEntry();
243             return $entry;
244         }else{
245             common_log(LOG_WARNING, 'Found ' . $searchcount . ' ldap user with the username: ' . $username);
246             return false;
247         }
248     }
249     
250     /**
251      * Code originaly from the phpLDAPadmin development team
252      * http://phpldapadmin.sourceforge.net/
253      *
254      * Hashes a password and returns the hash based on the specified enc_type.
255      *
256      * @param string $passwordClear The password to hash in clear text.
257      * @param string $encodageType Standard LDAP encryption type which must be one of
258      *        crypt, ext_des, md5crypt, blowfish, md5, sha, smd5, ssha, or clear.
259      * @return string The hashed password.
260      *
261      */
262
263     function hashPassword( $passwordClear, $encodageType ) 
264     {
265         $encodageType = strtolower( $encodageType );
266         switch( $encodageType ) {
267             case 'crypt': 
268                 $cryptedPassword = '{CRYPT}' . crypt($passwordClear,$this->randomSalt(2)); 
269                 break;
270                 
271             case 'ext_des':
272                 // extended des crypt. see OpenBSD crypt man page.
273                 if ( ! defined( 'CRYPT_EXT_DES' ) || CRYPT_EXT_DES == 0 ) {return FALSE;} //Your system crypt library does not support extended DES encryption.
274                 $cryptedPassword = '{CRYPT}' . crypt( $passwordClear, '_' . $this->randomSalt(8) );
275                 break;
276
277             case 'md5crypt':
278                 if( ! defined( 'CRYPT_MD5' ) || CRYPT_MD5 == 0 ) {return FALSE;} //Your system crypt library does not support md5crypt encryption.
279                 $cryptedPassword = '{CRYPT}' . crypt( $passwordClear , '$1$' . $this->randomSalt(9) );
280                 break;
281
282             case 'blowfish':
283                 if( ! defined( 'CRYPT_BLOWFISH' ) || CRYPT_BLOWFISH == 0 ) {return FALSE;} //Your system crypt library does not support blowfish encryption.
284                 $cryptedPassword = '{CRYPT}' . crypt( $passwordClear , '$2a$12$' . $this->randomSalt(13) ); // hardcoded to second blowfish version and set number of rounds
285                 break;
286
287             case 'md5':
288                 $cryptedPassword = '{MD5}' . base64_encode( pack( 'H*' , md5( $passwordClear) ) );
289                 break;
290
291             case 'sha':
292                 if( function_exists('sha1') ) {
293                     // use php 4.3.0+ sha1 function, if it is available.
294                     $cryptedPassword = '{SHA}' . base64_encode( pack( 'H*' , sha1( $passwordClear) ) );
295                 } elseif( function_exists( 'mhash' ) ) {
296                     $cryptedPassword = '{SHA}' . base64_encode( mhash( MHASH_SHA1, $passwordClear) );
297                 } else {
298                     return FALSE; //Your PHP install does not have the mhash() function. Cannot do SHA hashes.
299                 }
300                 break;
301
302             case 'ssha':
303                 if( function_exists( 'mhash' ) && function_exists( 'mhash_keygen_s2k' ) ) {
304                     mt_srand( (double) microtime() * 1000000 );
305                     $salt = mhash_keygen_s2k( MHASH_SHA1, $passwordClear, substr( pack( "h*", md5( mt_rand() ) ), 0, 8 ), 4 );
306                     $cryptedPassword = "{SSHA}".base64_encode( mhash( MHASH_SHA1, $passwordClear.$salt ).$salt );
307                 } else {
308                     return FALSE; //Your PHP install does not have the mhash() function. Cannot do SHA hashes.
309                 }
310                 break;
311
312             case 'smd5':
313                 if( function_exists( 'mhash' ) && function_exists( 'mhash_keygen_s2k' ) ) {
314                     mt_srand( (double) microtime() * 1000000 );
315                     $salt = mhash_keygen_s2k( MHASH_MD5, $passwordClear, substr( pack( "h*", md5( mt_rand() ) ), 0, 8 ), 4 );
316                     $cryptedPassword = "{SMD5}".base64_encode( mhash( MHASH_MD5, $passwordClear.$salt ).$salt );
317                 } else {
318                     return FALSE; //Your PHP install does not have the mhash() function. Cannot do SHA hashes.
319                 }
320                 break;
321
322             case 'ad':
323                 $cryptedPassword = '';
324                 $passwordClear = "\"" . $passwordClear . "\"";
325                 $len = strlen($passwordClear);
326                 for ($i = 0; $i < $len; $i++) {
327                     $cryptedPassword .= "{$passwordClear{$i}}\000";
328                 }
329
330             case 'clear':
331             default:
332                 $cryptedPassword = $passwordClear;
333         }
334
335         return $cryptedPassword;
336     }
337
338     /**
339      * Code originaly from the phpLDAPadmin development team
340      * http://phpldapadmin.sourceforge.net/
341      *
342      * Used to generate a random salt for crypt-style passwords. Salt strings are used
343      * to make pre-built hash cracking dictionaries difficult to use as the hash algorithm uses
344      * not only the user's password but also a randomly generated string. The string is
345      * stored as the first N characters of the hash for reference of hashing algorithms later.
346      *
347      * --- added 20021125 by bayu irawan <bayuir@divnet.telkom.co.id> ---
348      * --- ammended 20030625 by S C Rigler <srigler@houston.rr.com> ---
349      *
350      * @param int $length The length of the salt string to generate.
351      * @return string The generated salt string.
352      */
353      
354     function randomSalt( $length ) 
355     {
356         $possible = '0123456789'.
357             'abcdefghijklmnopqrstuvwxyz'.
358             'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
359             './';
360         $str = "";
361         mt_srand((double)microtime() * 1000000);
362
363         while( strlen( $str ) < $length )
364             $str .= substr( $possible, ( rand() % strlen( $possible ) ), 1 );
365
366         return $str;
367     }
368
369     function onPluginVersion(&$versions)
370     {
371         $versions[] = array('name' => 'LDAP Authentication',
372                             'version' => STATUSNET_VERSION,
373                             'author' => 'Craig Andrews',
374                             'homepage' => 'http://status.net/wiki/Plugin:LdapAuthentication',
375                             'rawdescription' =>
376                             _m('The LDAP Authentication plugin allows for StatusNet to handle authentication through LDAP.'));
377         return true;
378     }
379 }