User_LDAP.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Bart Visscher <bartv@thisnet.nl>
  7. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  8. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  9. * @author Dominik Schmidt <dev@dominik-schmidt.de>
  10. * @author felixboehm <felix@webhippie.de>
  11. * @author Joas Schilling <coding@schilljs.com>
  12. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  13. * @author Lukas Reschke <lukas@statuscode.ch>
  14. * @author Morris Jobke <hey@morrisjobke.de>
  15. * @author Robin Appelman <robin@icewind.nl>
  16. * @author Robin McCorkell <robin@mccorkell.me.uk>
  17. * @author Roger Szabo <roger.szabo@web.de>
  18. * @author root <root@localhost.localdomain>
  19. * @author Thomas Müller <thomas.mueller@tmit.eu>
  20. * @author Tom Needham <tom@owncloud.com>
  21. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  22. * @author Vinicius Cubas Brand <vinicius@eita.org.br>
  23. *
  24. * @license AGPL-3.0
  25. *
  26. * This code is free software: you can redistribute it and/or modify
  27. * it under the terms of the GNU Affero General Public License, version 3,
  28. * as published by the Free Software Foundation.
  29. *
  30. * This program is distributed in the hope that it will be useful,
  31. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  32. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  33. * GNU Affero General Public License for more details.
  34. *
  35. * You should have received a copy of the GNU Affero General Public License, version 3,
  36. * along with this program. If not, see <http://www.gnu.org/licenses/>
  37. *
  38. */
  39. namespace OCA\User_LDAP;
  40. use OC\ServerNotAvailableException;
  41. use OC\User\Backend;
  42. use OC\User\NoUserException;
  43. use OCA\User_LDAP\Exceptions\NotOnLDAP;
  44. use OCA\User_LDAP\User\OfflineUser;
  45. use OCA\User_LDAP\User\User;
  46. use OCP\IConfig;
  47. use OCP\ILogger;
  48. use OCP\IUserSession;
  49. use OCP\Notification\IManager as INotificationManager;
  50. use OCP\Util;
  51. class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserInterface, IUserLDAP {
  52. /** @var \OCP\IConfig */
  53. protected $ocConfig;
  54. /** @var INotificationManager */
  55. protected $notificationManager;
  56. /** @var UserPluginManager */
  57. protected $userPluginManager;
  58. /**
  59. * @param Access $access
  60. * @param \OCP\IConfig $ocConfig
  61. * @param \OCP\Notification\IManager $notificationManager
  62. * @param IUserSession $userSession
  63. */
  64. public function __construct(Access $access, IConfig $ocConfig, INotificationManager $notificationManager, IUserSession $userSession, UserPluginManager $userPluginManager) {
  65. parent::__construct($access);
  66. $this->ocConfig = $ocConfig;
  67. $this->notificationManager = $notificationManager;
  68. $this->userPluginManager = $userPluginManager;
  69. }
  70. /**
  71. * checks whether the user is allowed to change his avatar in Nextcloud
  72. *
  73. * @param string $uid the Nextcloud user name
  74. * @return boolean either the user can or cannot
  75. * @throws \Exception
  76. */
  77. public function canChangeAvatar($uid) {
  78. if ($this->userPluginManager->implementsActions(Backend::PROVIDE_AVATAR)) {
  79. return $this->userPluginManager->canChangeAvatar($uid);
  80. }
  81. if (!$this->implementsActions(Backend::PROVIDE_AVATAR)) {
  82. return true;
  83. }
  84. $user = $this->access->userManager->get($uid);
  85. if (!$user instanceof User) {
  86. return false;
  87. }
  88. $imageData = $user->getAvatarImage();
  89. if ($imageData === false) {
  90. return true;
  91. }
  92. return !$user->updateAvatar(true);
  93. }
  94. /**
  95. * Return the username for the given login name, if available
  96. *
  97. * @param string $loginName
  98. * @return string|false
  99. * @throws \Exception
  100. */
  101. public function loginName2UserName($loginName) {
  102. $cacheKey = 'loginName2UserName-' . $loginName;
  103. $username = $this->access->connection->getFromCache($cacheKey);
  104. if ($username !== null) {
  105. return $username;
  106. }
  107. try {
  108. $ldapRecord = $this->getLDAPUserByLoginName($loginName);
  109. $user = $this->access->userManager->get($ldapRecord['dn'][0]);
  110. if ($user === null || $user instanceof OfflineUser) {
  111. // this path is not really possible, however get() is documented
  112. // to return User, OfflineUser or null so we are very defensive here.
  113. $this->access->connection->writeToCache($cacheKey, false);
  114. return false;
  115. }
  116. $username = $user->getUsername();
  117. $this->access->connection->writeToCache($cacheKey, $username);
  118. return $username;
  119. } catch (NotOnLDAP $e) {
  120. $this->access->connection->writeToCache($cacheKey, false);
  121. return false;
  122. }
  123. }
  124. /**
  125. * returns the username for the given LDAP DN, if available
  126. *
  127. * @param string $dn
  128. * @return string|false with the username
  129. */
  130. public function dn2UserName($dn) {
  131. return $this->access->dn2username($dn);
  132. }
  133. /**
  134. * returns an LDAP record based on a given login name
  135. *
  136. * @param string $loginName
  137. * @return array
  138. * @throws NotOnLDAP
  139. */
  140. public function getLDAPUserByLoginName($loginName) {
  141. //find out dn of the user name
  142. $attrs = $this->access->userManager->getAttributes();
  143. $users = $this->access->fetchUsersByLoginName($loginName, $attrs);
  144. if (count($users) < 1) {
  145. throw new NotOnLDAP('No user available for the given login name on ' .
  146. $this->access->connection->ldapHost . ':' . $this->access->connection->ldapPort);
  147. }
  148. return $users[0];
  149. }
  150. /**
  151. * Check if the password is correct without logging in the user
  152. *
  153. * @param string $uid The username
  154. * @param string $password The password
  155. * @return false|string
  156. */
  157. public function checkPassword($uid, $password) {
  158. try {
  159. $ldapRecord = $this->getLDAPUserByLoginName($uid);
  160. } catch (NotOnLDAP $e) {
  161. \OC::$server->getLogger()->logException($e, ['app' => 'user_ldap', 'level' => ILogger::DEBUG]);
  162. return false;
  163. }
  164. $dn = $ldapRecord['dn'][0];
  165. $user = $this->access->userManager->get($dn);
  166. if (!$user instanceof User) {
  167. Util::writeLog('user_ldap',
  168. 'LDAP Login: Could not get user object for DN ' . $dn .
  169. '. Maybe the LDAP entry has no set display name attribute?',
  170. ILogger::WARN);
  171. return false;
  172. }
  173. if ($user->getUsername() !== false) {
  174. //are the credentials OK?
  175. if (!$this->access->areCredentialsValid($dn, $password)) {
  176. return false;
  177. }
  178. $this->access->cacheUserExists($user->getUsername());
  179. $user->processAttributes($ldapRecord);
  180. $user->markLogin();
  181. return $user->getUsername();
  182. }
  183. return false;
  184. }
  185. /**
  186. * Set password
  187. * @param string $uid The username
  188. * @param string $password The new password
  189. * @return bool
  190. */
  191. public function setPassword($uid, $password) {
  192. if ($this->userPluginManager->implementsActions(Backend::SET_PASSWORD)) {
  193. return $this->userPluginManager->setPassword($uid, $password);
  194. }
  195. $user = $this->access->userManager->get($uid);
  196. if (!$user instanceof User) {
  197. throw new \Exception('LDAP setPassword: Could not get user object for uid ' . $uid .
  198. '. Maybe the LDAP entry has no set display name attribute?');
  199. }
  200. if ($user->getUsername() !== false && $this->access->setPassword($user->getDN(), $password)) {
  201. $ldapDefaultPPolicyDN = $this->access->connection->ldapDefaultPPolicyDN;
  202. $turnOnPasswordChange = $this->access->connection->turnOnPasswordChange;
  203. if (!empty($ldapDefaultPPolicyDN) && ((int)$turnOnPasswordChange === 1)) {
  204. //remove last password expiry warning if any
  205. $notification = $this->notificationManager->createNotification();
  206. $notification->setApp('user_ldap')
  207. ->setUser($uid)
  208. ->setObject('pwd_exp_warn', $uid)
  209. ;
  210. $this->notificationManager->markProcessed($notification);
  211. }
  212. return true;
  213. }
  214. return false;
  215. }
  216. /**
  217. * Get a list of all users
  218. *
  219. * @param string $search
  220. * @param integer $limit
  221. * @param integer $offset
  222. * @return string[] an array of all uids
  223. */
  224. public function getUsers($search = '', $limit = 10, $offset = 0) {
  225. $search = $this->access->escapeFilterPart($search, true);
  226. $cachekey = 'getUsers-'.$search.'-'.$limit.'-'.$offset;
  227. //check if users are cached, if so return
  228. $ldap_users = $this->access->connection->getFromCache($cachekey);
  229. if (!is_null($ldap_users)) {
  230. return $ldap_users;
  231. }
  232. // if we'd pass -1 to LDAP search, we'd end up in a Protocol
  233. // error. With a limit of 0, we get 0 results. So we pass null.
  234. if ($limit <= 0) {
  235. $limit = null;
  236. }
  237. $filter = $this->access->combineFilterWithAnd([
  238. $this->access->connection->ldapUserFilter,
  239. $this->access->connection->ldapUserDisplayName . '=*',
  240. $this->access->getFilterPartForUserSearch($search)
  241. ]);
  242. Util::writeLog('user_ldap',
  243. 'getUsers: Options: search '.$search.' limit '.$limit.' offset '.$offset.' Filter: '.$filter,
  244. ILogger::DEBUG);
  245. //do the search and translate results to Nextcloud names
  246. $ldap_users = $this->access->fetchListOfUsers(
  247. $filter,
  248. $this->access->userManager->getAttributes(true),
  249. $limit, $offset);
  250. $ldap_users = $this->access->nextcloudUserNames($ldap_users);
  251. Util::writeLog('user_ldap', 'getUsers: '.count($ldap_users). ' Users found', ILogger::DEBUG);
  252. $this->access->connection->writeToCache($cachekey, $ldap_users);
  253. return $ldap_users;
  254. }
  255. /**
  256. * checks whether a user is still available on LDAP
  257. *
  258. * @param string|\OCA\User_LDAP\User\User $user either the Nextcloud user
  259. * name or an instance of that user
  260. * @return bool
  261. * @throws \Exception
  262. * @throws \OC\ServerNotAvailableException
  263. */
  264. public function userExistsOnLDAP($user) {
  265. if (is_string($user)) {
  266. $user = $this->access->userManager->get($user);
  267. }
  268. if (is_null($user)) {
  269. return false;
  270. }
  271. $uid = $user instanceof User ? $user->getUsername() : $user->getOCName();
  272. $cacheKey = 'userExistsOnLDAP' . $uid;
  273. $userExists = $this->access->connection->getFromCache($cacheKey);
  274. if (!is_null($userExists)) {
  275. return (bool)$userExists;
  276. }
  277. $dn = $user->getDN();
  278. //check if user really still exists by reading its entry
  279. if (!is_array($this->access->readAttribute($dn, '', $this->access->connection->ldapUserFilter))) {
  280. try {
  281. $uuid = $this->access->getUserMapper()->getUUIDByDN($dn);
  282. if (!$uuid) {
  283. $this->access->connection->writeToCache($cacheKey, false);
  284. return false;
  285. }
  286. $newDn = $this->access->getUserDnByUuid($uuid);
  287. //check if renamed user is still valid by reapplying the ldap filter
  288. if ($newDn === $dn || !is_array($this->access->readAttribute($newDn, '', $this->access->connection->ldapUserFilter))) {
  289. $this->access->connection->writeToCache($cacheKey, false);
  290. return false;
  291. }
  292. $this->access->getUserMapper()->setDNbyUUID($newDn, $uuid);
  293. $this->access->connection->writeToCache($cacheKey, true);
  294. return true;
  295. } catch (ServerNotAvailableException $e) {
  296. throw $e;
  297. } catch (\Exception $e) {
  298. $this->access->connection->writeToCache($cacheKey, false);
  299. return false;
  300. }
  301. }
  302. if ($user instanceof OfflineUser) {
  303. $user->unmark();
  304. }
  305. $this->access->connection->writeToCache($cacheKey, true);
  306. return true;
  307. }
  308. /**
  309. * check if a user exists
  310. * @param string $uid the username
  311. * @return boolean
  312. * @throws \Exception when connection could not be established
  313. */
  314. public function userExists($uid) {
  315. $userExists = $this->access->connection->getFromCache('userExists'.$uid);
  316. if (!is_null($userExists)) {
  317. return (bool)$userExists;
  318. }
  319. //getting dn, if false the user does not exist. If dn, he may be mapped only, requires more checking.
  320. $user = $this->access->userManager->get($uid);
  321. if (is_null($user)) {
  322. Util::writeLog('user_ldap', 'No DN found for '.$uid.' on '.
  323. $this->access->connection->ldapHost, ILogger::DEBUG);
  324. $this->access->connection->writeToCache('userExists'.$uid, false);
  325. return false;
  326. }
  327. $this->access->connection->writeToCache('userExists'.$uid, true);
  328. return true;
  329. }
  330. /**
  331. * returns whether a user was deleted in LDAP
  332. *
  333. * @param string $uid The username of the user to delete
  334. * @return bool
  335. */
  336. public function deleteUser($uid) {
  337. if ($this->userPluginManager->canDeleteUser()) {
  338. $status = $this->userPluginManager->deleteUser($uid);
  339. if ($status === false) {
  340. return false;
  341. }
  342. }
  343. $marked = $this->ocConfig->getUserValue($uid, 'user_ldap', 'isDeleted', 0);
  344. if ((int)$marked === 0) {
  345. \OC::$server->getLogger()->notice(
  346. 'User '.$uid . ' is not marked as deleted, not cleaning up.',
  347. ['app' => 'user_ldap']);
  348. return false;
  349. }
  350. \OC::$server->getLogger()->info('Cleaning up after user ' . $uid,
  351. ['app' => 'user_ldap']);
  352. $this->access->getUserMapper()->unmap($uid); // we don't emit unassign signals here, since it is implicit to delete signals fired from core
  353. $this->access->userManager->invalidate($uid);
  354. $this->access->connection->clearCache();
  355. return true;
  356. }
  357. /**
  358. * get the user's home directory
  359. *
  360. * @param string $uid the username
  361. * @return bool|string
  362. * @throws NoUserException
  363. * @throws \Exception
  364. */
  365. public function getHome($uid) {
  366. // user Exists check required as it is not done in user proxy!
  367. if (!$this->userExists($uid)) {
  368. return false;
  369. }
  370. if ($this->userPluginManager->implementsActions(Backend::GET_HOME)) {
  371. return $this->userPluginManager->getHome($uid);
  372. }
  373. $cacheKey = 'getHome'.$uid;
  374. $path = $this->access->connection->getFromCache($cacheKey);
  375. if (!is_null($path)) {
  376. return $path;
  377. }
  378. // early return path if it is a deleted user
  379. $user = $this->access->userManager->get($uid);
  380. if ($user instanceof User || $user instanceof OfflineUser) {
  381. $path = $user->getHomePath() ?: false;
  382. } else {
  383. throw new NoUserException($uid . ' is not a valid user anymore');
  384. }
  385. $this->access->cacheUserHome($uid, $path);
  386. return $path;
  387. }
  388. /**
  389. * get display name of the user
  390. * @param string $uid user ID of the user
  391. * @return string|false display name
  392. */
  393. public function getDisplayName($uid) {
  394. if ($this->userPluginManager->implementsActions(Backend::GET_DISPLAYNAME)) {
  395. return $this->userPluginManager->getDisplayName($uid);
  396. }
  397. if (!$this->userExists($uid)) {
  398. return false;
  399. }
  400. $cacheKey = 'getDisplayName'.$uid;
  401. if (!is_null($displayName = $this->access->connection->getFromCache($cacheKey))) {
  402. return $displayName;
  403. }
  404. //Check whether the display name is configured to have a 2nd feature
  405. $additionalAttribute = $this->access->connection->ldapUserDisplayName2;
  406. $displayName2 = '';
  407. if ($additionalAttribute !== '') {
  408. $displayName2 = $this->access->readAttribute(
  409. $this->access->username2dn($uid),
  410. $additionalAttribute);
  411. }
  412. $displayName = $this->access->readAttribute(
  413. $this->access->username2dn($uid),
  414. $this->access->connection->ldapUserDisplayName);
  415. if ($displayName && (count($displayName) > 0)) {
  416. $displayName = $displayName[0];
  417. if (is_array($displayName2)) {
  418. $displayName2 = count($displayName2) > 0 ? $displayName2[0] : '';
  419. }
  420. $user = $this->access->userManager->get($uid);
  421. if ($user instanceof User) {
  422. $displayName = $user->composeAndStoreDisplayName($displayName, $displayName2);
  423. $this->access->connection->writeToCache($cacheKey, $displayName);
  424. }
  425. if ($user instanceof OfflineUser) {
  426. /** @var OfflineUser $user*/
  427. $displayName = $user->getDisplayName();
  428. }
  429. return $displayName;
  430. }
  431. return null;
  432. }
  433. /**
  434. * set display name of the user
  435. * @param string $uid user ID of the user
  436. * @param string $displayName new display name of the user
  437. * @return string|false display name
  438. */
  439. public function setDisplayName($uid, $displayName) {
  440. if ($this->userPluginManager->implementsActions(Backend::SET_DISPLAYNAME)) {
  441. $this->userPluginManager->setDisplayName($uid, $displayName);
  442. $this->access->cacheUserDisplayName($uid, $displayName);
  443. return $displayName;
  444. }
  445. return false;
  446. }
  447. /**
  448. * Get a list of all display names
  449. *
  450. * @param string $search
  451. * @param int|null $limit
  452. * @param int|null $offset
  453. * @return array an array of all displayNames (value) and the corresponding uids (key)
  454. */
  455. public function getDisplayNames($search = '', $limit = null, $offset = null) {
  456. $cacheKey = 'getDisplayNames-'.$search.'-'.$limit.'-'.$offset;
  457. if (!is_null($displayNames = $this->access->connection->getFromCache($cacheKey))) {
  458. return $displayNames;
  459. }
  460. $displayNames = [];
  461. $users = $this->getUsers($search, $limit, $offset);
  462. foreach ($users as $user) {
  463. $displayNames[$user] = $this->getDisplayName($user);
  464. }
  465. $this->access->connection->writeToCache($cacheKey, $displayNames);
  466. return $displayNames;
  467. }
  468. /**
  469. * Check if backend implements actions
  470. * @param int $actions bitwise-or'ed actions
  471. * @return boolean
  472. *
  473. * Returns the supported actions as int to be
  474. * compared with \OC\User\Backend::CREATE_USER etc.
  475. */
  476. public function implementsActions($actions) {
  477. return (bool)((Backend::CHECK_PASSWORD
  478. | Backend::GET_HOME
  479. | Backend::GET_DISPLAYNAME
  480. | (($this->access->connection->ldapUserAvatarRule !== 'none') ? Backend::PROVIDE_AVATAR : 0)
  481. | Backend::COUNT_USERS
  482. | (((int)$this->access->connection->turnOnPasswordChange === 1)? Backend::SET_PASSWORD :0)
  483. | $this->userPluginManager->getImplementedActions())
  484. & $actions);
  485. }
  486. /**
  487. * @return bool
  488. */
  489. public function hasUserListings() {
  490. return true;
  491. }
  492. /**
  493. * counts the users in LDAP
  494. *
  495. * @return int|bool
  496. */
  497. public function countUsers() {
  498. if ($this->userPluginManager->implementsActions(Backend::COUNT_USERS)) {
  499. return $this->userPluginManager->countUsers();
  500. }
  501. $filter = $this->access->getFilterForUserCount();
  502. $cacheKey = 'countUsers-'.$filter;
  503. if (!is_null($entries = $this->access->connection->getFromCache($cacheKey))) {
  504. return $entries;
  505. }
  506. $entries = $this->access->countUsers($filter);
  507. $this->access->connection->writeToCache($cacheKey, $entries);
  508. return $entries;
  509. }
  510. /**
  511. * Backend name to be shown in user management
  512. * @return string the name of the backend to be shown
  513. */
  514. public function getBackendName() {
  515. return 'LDAP';
  516. }
  517. /**
  518. * Return access for LDAP interaction.
  519. * @param string $uid
  520. * @return Access instance of Access for LDAP interaction
  521. */
  522. public function getLDAPAccess($uid) {
  523. return $this->access;
  524. }
  525. /**
  526. * Return LDAP connection resource from a cloned connection.
  527. * The cloned connection needs to be closed manually.
  528. * of the current access.
  529. * @param string $uid
  530. * @return resource of the LDAP connection
  531. */
  532. public function getNewLDAPConnection($uid) {
  533. $connection = clone $this->access->getConnection();
  534. return $connection->getConnectionResource();
  535. }
  536. /**
  537. * create new user
  538. * @param string $username username of the new user
  539. * @param string $password password of the new user
  540. * @throws \UnexpectedValueException
  541. * @return bool
  542. */
  543. public function createUser($username, $password) {
  544. if ($this->userPluginManager->implementsActions(Backend::CREATE_USER)) {
  545. if ($dn = $this->userPluginManager->createUser($username, $password)) {
  546. if (is_string($dn)) {
  547. // the NC user creation work flow requires a know user id up front
  548. $uuid = $this->access->getUUID($dn, true);
  549. if (is_string($uuid)) {
  550. $this->access->mapAndAnnounceIfApplicable(
  551. $this->access->getUserMapper(),
  552. $dn,
  553. $username,
  554. $uuid,
  555. true
  556. );
  557. $this->access->cacheUserExists($username);
  558. } else {
  559. \OC::$server->getLogger()->warning(
  560. 'Failed to map created LDAP user with userid {userid}, because UUID could not be determined',
  561. [
  562. 'app' => 'user_ldap',
  563. 'userid' => $username,
  564. ]
  565. );
  566. }
  567. } else {
  568. throw new \UnexpectedValueException("LDAP Plugin: Method createUser changed to return the user DN instead of boolean.");
  569. }
  570. }
  571. return (bool) $dn;
  572. }
  573. return false;
  574. }
  575. }