2013-06-12 04:08:02 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Alexander Bergolth <leo@strike.wu.ac.at>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-08-30 12:43:29 +03:00
|
|
|
* @author Roger Szabo <roger.szabo@web.de>
|
2013-06-12 04:08:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-06-12 04:08:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-06-12 04:08:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-06-12 04:08:02 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-06-12 04:08:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-06-12 04:08:02 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 17:21:28 +03:00
|
|
|
namespace OCA\User_LDAP;
|
2013-06-12 04:08:02 +04:00
|
|
|
|
2015-04-22 16:22:11 +03:00
|
|
|
use OC\ServerNotAvailableException;
|
2016-08-30 12:43:29 +03:00
|
|
|
use OCA\User_LDAP\Exceptions\ConstraintViolationException;
|
2015-04-22 16:22:11 +03:00
|
|
|
|
2013-08-20 16:23:49 +04:00
|
|
|
class LDAP implements ILDAPWrapper {
|
2013-06-12 04:08:02 +04:00
|
|
|
protected $curFunc = '';
|
|
|
|
protected $curArgs = array();
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param resource $link
|
|
|
|
* @param string $dn
|
|
|
|
* @param string $password
|
|
|
|
* @return bool|mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function bind($link, $dn, $password) {
|
|
|
|
return $this->invokeLDAPMethod('bind', $link, $dn, $password);
|
2013-06-12 04:08:02 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param string $host
|
|
|
|
* @param string $port
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function connect($host, $port) {
|
2015-07-28 13:14:05 +03:00
|
|
|
if(strpos($host, '://') === false) {
|
|
|
|
$host = 'ldap://' . $host;
|
|
|
|
}
|
|
|
|
if(strpos($host, ':', strpos($host, '://') + 1) === false) {
|
|
|
|
//ldap_connect ignores port parameter when URLs are passed
|
|
|
|
$host .= ':' . $port;
|
|
|
|
}
|
|
|
|
return $this->invokeLDAPMethod('connect', $host);
|
2013-08-20 16:23:49 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
2018-01-02 14:20:44 +03:00
|
|
|
* @param resource $link
|
|
|
|
* @param resource $result
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $cookie
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return bool|LDAP
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function controlPagedResultResponse($link, $result, &$cookie) {
|
2013-06-12 04:08:02 +04:00
|
|
|
$this->preFunctionCall('ldap_control_paged_result_response',
|
2013-08-20 16:23:49 +04:00
|
|
|
array($link, $result, $cookie));
|
|
|
|
$result = ldap_control_paged_result_response($link, $result, $cookie);
|
2013-06-12 04:08:02 +04:00
|
|
|
$this->postFunctionCall();
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param int $pageSize
|
|
|
|
* @param bool $isCritical
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $cookie
|
2014-05-11 17:17:27 +04:00
|
|
|
* @return mixed|true
|
|
|
|
*/
|
|
|
|
public function controlPagedResult($link, $pageSize, $isCritical, $cookie) {
|
|
|
|
return $this->invokeLDAPMethod('control_paged_result', $link, $pageSize,
|
2013-08-20 16:23:49 +04:00
|
|
|
$isCritical, $cookie);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param LDAP $result
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2013-09-30 01:53:14 +04:00
|
|
|
public function countEntries($link, $result) {
|
|
|
|
return $this->invokeLDAPMethod('count_entries', $link, $result);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
2017-07-05 23:06:36 +03:00
|
|
|
* @return integer
|
2014-05-11 17:17:27 +04:00
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function errno($link) {
|
|
|
|
return $this->invokeLDAPMethod('errno', $link);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
2017-07-05 23:06:36 +03:00
|
|
|
* @return string
|
2014-05-11 17:17:27 +04:00
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function error($link) {
|
|
|
|
return $this->invokeLDAPMethod('error', $link);
|
|
|
|
}
|
|
|
|
|
2014-07-02 00:02:41 +04:00
|
|
|
/**
|
|
|
|
* Splits DN into its component parts
|
|
|
|
* @param string $dn
|
|
|
|
* @param int @withAttrib
|
|
|
|
* @return array|false
|
|
|
|
* @link http://www.php.net/manual/en/function.ldap-explode-dn.php
|
|
|
|
*/
|
|
|
|
public function explodeDN($dn, $withAttrib) {
|
2014-08-07 14:41:01 +04:00
|
|
|
return $this->invokeLDAPMethod('explode_dn', $dn, $withAttrib);
|
2014-07-02 00:02:41 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param LDAP $result
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function firstEntry($link, $result) {
|
|
|
|
return $this->invokeLDAPMethod('first_entry', $link, $result);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param LDAP $result
|
|
|
|
* @return array|mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function getAttributes($link, $result) {
|
|
|
|
return $this->invokeLDAPMethod('get_attributes', $link, $result);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param LDAP $result
|
|
|
|
* @return mixed|string
|
|
|
|
*/
|
2013-10-04 18:33:37 +04:00
|
|
|
public function getDN($link, $result) {
|
|
|
|
return $this->invokeLDAPMethod('get_dn', $link, $result);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param LDAP $result
|
|
|
|
* @return array|mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function getEntries($link, $result) {
|
|
|
|
return $this->invokeLDAPMethod('get_entries', $link, $result);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param resource $result
|
2016-05-12 17:21:28 +03:00
|
|
|
* @return mixed
|
2014-05-11 17:17:27 +04:00
|
|
|
*/
|
2013-10-04 18:33:37 +04:00
|
|
|
public function nextEntry($link, $result) {
|
2013-12-11 14:00:53 +04:00
|
|
|
return $this->invokeLDAPMethod('next_entry', $link, $result);
|
2013-10-04 18:33:37 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param string $baseDN
|
|
|
|
* @param string $filter
|
|
|
|
* @param array $attr
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function read($link, $baseDN, $filter, $attr) {
|
|
|
|
return $this->invokeLDAPMethod('read', $link, $baseDN, $filter, $attr);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param string $baseDN
|
|
|
|
* @param string $filter
|
|
|
|
* @param array $attr
|
|
|
|
* @param int $attrsOnly
|
|
|
|
* @param int $limit
|
|
|
|
* @return mixed
|
2018-11-05 20:35:50 +03:00
|
|
|
* @throws \Exception
|
2014-05-11 17:17:27 +04:00
|
|
|
*/
|
|
|
|
public function search($link, $baseDN, $filter, $attr, $attrsOnly = 0, $limit = 0) {
|
2018-11-05 20:35:50 +03:00
|
|
|
$oldHandler = set_error_handler(function($no, $message, $file, $line) use (&$oldHandler) {
|
|
|
|
if(strpos($message, 'Partial search results returned: Sizelimit exceeded') !== false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$oldHandler($no, $message, $file, $line);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
$result = $this->invokeLDAPMethod('search', $link, $baseDN, $filter, $attr, $attrsOnly, $limit);
|
|
|
|
restore_error_handler();
|
|
|
|
return $result;
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
restore_error_handler();
|
|
|
|
throw $e;
|
|
|
|
}
|
2013-08-20 16:23:49 +04:00
|
|
|
}
|
|
|
|
|
2016-08-30 12:43:29 +03:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param string $userDN
|
|
|
|
* @param string $password
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function modReplace($link, $userDN, $password) {
|
|
|
|
return $this->invokeLDAPMethod('mod_replace', $link, $userDN, array('userPassword' => $password));
|
|
|
|
}
|
|
|
|
|
2019-03-05 16:07:32 +03:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param string $userDN
|
|
|
|
* @param string $oldPassword
|
|
|
|
* @param string $password
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function exopPasswd($link, $userDN, $oldPassword, $password) {
|
|
|
|
return $this->invokeLDAPMethod('exop_passwd', $link, $userDN, $oldPassword, $password);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @param string $option
|
|
|
|
* @param int $value
|
|
|
|
* @return bool|mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function setOption($link, $option, $value) {
|
2013-12-06 15:04:17 +04:00
|
|
|
return $this->invokeLDAPMethod('set_option', $link, $option, $value);
|
2013-08-20 16:23:49 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param LDAP $link
|
|
|
|
* @return mixed|true
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function startTls($link) {
|
|
|
|
return $this->invokeLDAPMethod('start_tls', $link);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @param resource $link
|
|
|
|
* @return bool|mixed
|
|
|
|
*/
|
2013-08-20 16:23:49 +04:00
|
|
|
public function unbind($link) {
|
|
|
|
return $this->invokeLDAPMethod('unbind', $link);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Checks whether the server supports LDAP
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean if it the case, false otherwise
|
2013-08-20 16:23:49 +04:00
|
|
|
* */
|
2013-06-12 04:08:02 +04:00
|
|
|
public function areLDAPFunctionsAvailable() {
|
|
|
|
return function_exists('ldap_connect');
|
|
|
|
}
|
|
|
|
|
2013-08-20 14:39:24 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Checks whether the submitted parameter is a resource
|
2014-05-11 17:17:27 +04:00
|
|
|
* @param Resource $resource the resource variable to check
|
|
|
|
* @return bool true if it is a resource, false otherwise
|
2013-08-20 14:39:24 +04:00
|
|
|
*/
|
|
|
|
public function isResource($resource) {
|
|
|
|
return is_resource($resource);
|
|
|
|
}
|
|
|
|
|
2017-01-30 18:57:40 +03:00
|
|
|
/**
|
|
|
|
* Checks whether the return value from LDAP is wrong or not.
|
|
|
|
*
|
|
|
|
* When using ldap_search we provide an array, in case multiple bases are
|
|
|
|
* configured. Thus, we need to check the array elements.
|
|
|
|
*
|
|
|
|
* @param $result
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function isResultFalse($result) {
|
|
|
|
if($result === false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->curFunc === 'ldap_search' && is_array($result)) {
|
|
|
|
foreach ($result as $singleResult) {
|
|
|
|
if($singleResult === false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-11-23 21:58:43 +03:00
|
|
|
protected function invokeLDAPMethod() {
|
2013-08-20 16:23:49 +04:00
|
|
|
$arguments = func_get_args();
|
|
|
|
$func = 'ldap_' . array_shift($arguments);
|
|
|
|
if(function_exists($func)) {
|
|
|
|
$this->preFunctionCall($func, $arguments);
|
|
|
|
$result = call_user_func_array($func, $arguments);
|
2017-01-30 18:57:40 +03:00
|
|
|
if ($this->isResultFalse($result)) {
|
2013-12-10 20:50:45 +04:00
|
|
|
$this->postFunctionCall();
|
|
|
|
}
|
2013-08-20 16:23:49 +04:00
|
|
|
return $result;
|
|
|
|
}
|
2016-08-17 10:46:54 +03:00
|
|
|
return null;
|
2013-08-20 16:23:49 +04:00
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $functionName
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param array $args
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2013-06-12 04:08:02 +04:00
|
|
|
private function preFunctionCall($functionName, $args) {
|
|
|
|
$this->curFunc = $functionName;
|
|
|
|
$this->curArgs = $args;
|
|
|
|
}
|
|
|
|
|
2017-01-30 18:57:40 +03:00
|
|
|
/**
|
|
|
|
* Analyzes the returned LDAP error and acts accordingly if not 0
|
|
|
|
*
|
|
|
|
* @param resource $resource the LDAP Connection resource
|
|
|
|
* @throws ConstraintViolationException
|
|
|
|
* @throws ServerNotAvailableException
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
private function processLDAPError($resource) {
|
|
|
|
$errorCode = ldap_errno($resource);
|
|
|
|
if($errorCode === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$errorMsg = ldap_error($resource);
|
|
|
|
|
|
|
|
if($this->curFunc === 'ldap_get_entries'
|
|
|
|
&& $errorCode === -4) {
|
|
|
|
} else if ($errorCode === 32) {
|
|
|
|
//for now
|
|
|
|
} else if ($errorCode === 10) {
|
|
|
|
//referrals, we switch them off, but then there is AD :)
|
|
|
|
} else if ($errorCode === -1) {
|
|
|
|
throw new ServerNotAvailableException('Lost connection to LDAP server.');
|
2018-01-02 14:20:44 +03:00
|
|
|
} else if ($errorCode === 52) {
|
|
|
|
throw new ServerNotAvailableException('LDAP server is shutting down.');
|
2017-01-30 18:57:40 +03:00
|
|
|
} else if ($errorCode === 48) {
|
|
|
|
throw new \Exception('LDAP authentication method rejected', $errorCode);
|
|
|
|
} else if ($errorCode === 1) {
|
|
|
|
throw new \Exception('LDAP Operations error', $errorCode);
|
|
|
|
} else if ($errorCode === 19) {
|
|
|
|
ldap_get_option($this->curArgs[0], LDAP_OPT_ERROR_STRING, $extended_error);
|
|
|
|
throw new ConstraintViolationException(!empty($extended_error)?$extended_error:$errorMsg, $errorCode);
|
|
|
|
} else {
|
2018-01-02 14:20:44 +03:00
|
|
|
\OC::$server->getLogger()->debug('LDAP error {message} ({code}) after calling {func}', [
|
|
|
|
'app' => 'user_ldap',
|
|
|
|
'message' => $errorMsg,
|
|
|
|
'code' => $errorCode,
|
|
|
|
'func' => $this->curFunc,
|
|
|
|
]);
|
2017-01-30 18:57:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called after an ldap method is run to act on LDAP error if necessary
|
2018-11-05 20:35:50 +03:00
|
|
|
* @throw \Exception
|
2017-01-30 18:57:40 +03:00
|
|
|
*/
|
2013-06-12 04:08:02 +04:00
|
|
|
private function postFunctionCall() {
|
2013-08-20 16:23:49 +04:00
|
|
|
if($this->isResource($this->curArgs[0])) {
|
2017-01-30 18:57:40 +03:00
|
|
|
$resource = $this->curArgs[0];
|
|
|
|
} else if(
|
|
|
|
$this->curFunc === 'ldap_search'
|
|
|
|
&& is_array($this->curArgs[0])
|
|
|
|
&& $this->isResource($this->curArgs[0][0])
|
|
|
|
) {
|
|
|
|
// we use always the same LDAP connection resource, is enough to
|
|
|
|
// take the first one.
|
|
|
|
$resource = $this->curArgs[0][0];
|
|
|
|
} else {
|
|
|
|
return;
|
2013-06-12 04:08:02 +04:00
|
|
|
}
|
|
|
|
|
2017-01-30 18:57:40 +03:00
|
|
|
$this->processLDAPError($resource);
|
|
|
|
|
2013-06-12 04:08:02 +04:00
|
|
|
$this->curFunc = '';
|
2017-01-30 18:57:40 +03:00
|
|
|
$this->curArgs = [];
|
2013-06-12 04:08:02 +04:00
|
|
|
}
|
2014-05-11 17:17:27 +04:00
|
|
|
}
|