LoginController.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017, Sandro Lutz <sandro.lutz@temparus.ch>
  4. * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
  5. * @copyright Copyright (c) 2016, ownCloud, Inc.
  6. *
  7. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  8. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  9. * @author Joas Schilling <coding@schilljs.com>
  10. * @author John Molakvoæ <skjnldsv@protonmail.com>
  11. * @author Julius Härtl <jus@bitgrid.net>
  12. * @author Lukas Reschke <lukas@statuscode.ch>
  13. * @author Michael Weimann <mail@michael-weimann.eu>
  14. * @author Rayn0r <andrew@ilpss8.myfirewall.org>
  15. * @author Roeland Jago Douma <roeland@famdouma.nl>
  16. *
  17. * @license AGPL-3.0
  18. *
  19. * This code is free software: you can redistribute it and/or modify
  20. * it under the terms of the GNU Affero General Public License, version 3,
  21. * as published by the Free Software Foundation.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU Affero General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU Affero General Public License, version 3,
  29. * along with this program. If not, see <http://www.gnu.org/licenses/>
  30. *
  31. */
  32. namespace OC\Core\Controller;
  33. use OC\AppFramework\Http\Request;
  34. use OC\Authentication\Login\Chain;
  35. use OC\Authentication\Login\LoginData;
  36. use OC\Authentication\WebAuthn\Manager as WebAuthnManager;
  37. use OC\Security\Bruteforce\Throttler;
  38. use OC\User\Session;
  39. use OC_App;
  40. use OCP\AppFramework\Controller;
  41. use OCP\AppFramework\Http;
  42. use OCP\AppFramework\Http\DataResponse;
  43. use OCP\AppFramework\Http\RedirectResponse;
  44. use OCP\AppFramework\Http\TemplateResponse;
  45. use OCP\Defaults;
  46. use OCP\IConfig;
  47. use OCP\IInitialStateService;
  48. use OCP\ILogger;
  49. use OCP\IRequest;
  50. use OCP\ISession;
  51. use OCP\IURLGenerator;
  52. use OCP\IUser;
  53. use OCP\IUserManager;
  54. use OCP\IUserSession;
  55. use OCP\Util;
  56. class LoginController extends Controller {
  57. public const LOGIN_MSG_INVALIDPASSWORD = 'invalidpassword';
  58. public const LOGIN_MSG_USERDISABLED = 'userdisabled';
  59. /** @var IUserManager */
  60. private $userManager;
  61. /** @var IConfig */
  62. private $config;
  63. /** @var ISession */
  64. private $session;
  65. /** @var IUserSession|Session */
  66. private $userSession;
  67. /** @var IURLGenerator */
  68. private $urlGenerator;
  69. /** @var ILogger */
  70. private $logger;
  71. /** @var Defaults */
  72. private $defaults;
  73. /** @var Throttler */
  74. private $throttler;
  75. /** @var Chain */
  76. private $loginChain;
  77. /** @var IInitialStateService */
  78. private $initialStateService;
  79. /** @var WebAuthnManager */
  80. private $webAuthnManager;
  81. public function __construct(?string $appName,
  82. IRequest $request,
  83. IUserManager $userManager,
  84. IConfig $config,
  85. ISession $session,
  86. IUserSession $userSession,
  87. IURLGenerator $urlGenerator,
  88. ILogger $logger,
  89. Defaults $defaults,
  90. Throttler $throttler,
  91. Chain $loginChain,
  92. IInitialStateService $initialStateService,
  93. WebAuthnManager $webAuthnManager) {
  94. parent::__construct($appName, $request);
  95. $this->userManager = $userManager;
  96. $this->config = $config;
  97. $this->session = $session;
  98. $this->userSession = $userSession;
  99. $this->urlGenerator = $urlGenerator;
  100. $this->logger = $logger;
  101. $this->defaults = $defaults;
  102. $this->throttler = $throttler;
  103. $this->loginChain = $loginChain;
  104. $this->initialStateService = $initialStateService;
  105. $this->webAuthnManager = $webAuthnManager;
  106. }
  107. /**
  108. * @NoAdminRequired
  109. * @UseSession
  110. *
  111. * @return RedirectResponse
  112. */
  113. public function logout() {
  114. $loginToken = $this->request->getCookie('nc_token');
  115. if (!is_null($loginToken)) {
  116. $this->config->deleteUserValue($this->userSession->getUser()->getUID(), 'login_token', $loginToken);
  117. }
  118. $this->userSession->logout();
  119. $response = new RedirectResponse($this->urlGenerator->linkToRouteAbsolute(
  120. 'core.login.showLoginForm',
  121. ['clear' => true] // this param the the code in login.js may be removed when the "Clear-Site-Data" is working in the browsers
  122. ));
  123. $this->session->set('clearingExecutionContexts', '1');
  124. $this->session->close();
  125. if (!$this->request->isUserAgent([Request::USER_AGENT_CHROME, Request::USER_AGENT_ANDROID_MOBILE_CHROME])) {
  126. $response->addHeader('Clear-Site-Data', '"cache", "storage"');
  127. }
  128. return $response;
  129. }
  130. /**
  131. * @PublicPage
  132. * @NoCSRFRequired
  133. * @UseSession
  134. *
  135. * @param string $user
  136. * @param string $redirect_url
  137. *
  138. * @return TemplateResponse|RedirectResponse
  139. */
  140. public function showLoginForm(string $user = null, string $redirect_url = null): Http\Response {
  141. if ($this->userSession->isLoggedIn()) {
  142. return new RedirectResponse($this->urlGenerator->linkToDefaultPageUrl());
  143. }
  144. $loginMessages = $this->session->get('loginMessages');
  145. if (is_array($loginMessages)) {
  146. [$errors, $messages] = $loginMessages;
  147. $this->initialStateService->provideInitialState('core', 'loginMessages', $messages);
  148. $this->initialStateService->provideInitialState('core', 'loginErrors', $errors);
  149. }
  150. $this->session->remove('loginMessages');
  151. if ($user !== null && $user !== '') {
  152. $this->initialStateService->provideInitialState('core', 'loginUsername', $user);
  153. } else {
  154. $this->initialStateService->provideInitialState('core', 'loginUsername', '');
  155. }
  156. $this->initialStateService->provideInitialState(
  157. 'core',
  158. 'loginAutocomplete',
  159. $this->config->getSystemValue('login_form_autocomplete', true) === true
  160. );
  161. if (!empty($redirect_url)) {
  162. [$url, ] = explode('?', $redirect_url);
  163. if ($url !== $this->urlGenerator->linkToRoute('core.login.logout')) {
  164. $this->initialStateService->provideInitialState('core', 'loginRedirectUrl', $redirect_url);
  165. }
  166. }
  167. $this->initialStateService->provideInitialState(
  168. 'core',
  169. 'loginThrottleDelay',
  170. $this->throttler->getDelay($this->request->getRemoteAddress())
  171. );
  172. $this->setPasswordResetInitialState($user);
  173. $this->initialStateService->provideInitialState('core', 'webauthn-available', $this->webAuthnManager->isWebAuthnAvailable());
  174. $this->initialStateService->provideInitialState('core', 'hideLoginForm', $this->config->getSystemValueBool('hide_login_form', false));
  175. // OpenGraph Support: http://ogp.me/
  176. Util::addHeader('meta', ['property' => 'og:title', 'content' => Util::sanitizeHTML($this->defaults->getName())]);
  177. Util::addHeader('meta', ['property' => 'og:description', 'content' => Util::sanitizeHTML($this->defaults->getSlogan())]);
  178. Util::addHeader('meta', ['property' => 'og:site_name', 'content' => Util::sanitizeHTML($this->defaults->getName())]);
  179. Util::addHeader('meta', ['property' => 'og:url', 'content' => $this->urlGenerator->getAbsoluteURL('/')]);
  180. Util::addHeader('meta', ['property' => 'og:type', 'content' => 'website']);
  181. Util::addHeader('meta', ['property' => 'og:image', 'content' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('core', 'favicon-touch.png'))]);
  182. $parameters = [
  183. 'alt_login' => OC_App::getAlternativeLogIns(),
  184. ];
  185. $this->initialStateService->provideInitialState('core', 'countAlternativeLogins', count($parameters['alt_login']));
  186. return new TemplateResponse(
  187. $this->appName, 'login', $parameters, 'guest'
  188. );
  189. }
  190. /**
  191. * Sets the password reset state
  192. *
  193. * @param string $username
  194. */
  195. private function setPasswordResetInitialState(?string $username): void {
  196. if ($username !== null && $username !== '') {
  197. $user = $this->userManager->get($username);
  198. } else {
  199. $user = null;
  200. }
  201. $passwordLink = $this->config->getSystemValue('lost_password_link', '');
  202. $this->initialStateService->provideInitialState(
  203. 'core',
  204. 'loginResetPasswordLink',
  205. $passwordLink
  206. );
  207. $this->initialStateService->provideInitialState(
  208. 'core',
  209. 'loginCanResetPassword',
  210. $this->canResetPassword($passwordLink, $user)
  211. );
  212. }
  213. /**
  214. * @param string|null $passwordLink
  215. * @param IUser|null $user
  216. *
  217. * Users may not change their passwords if:
  218. * - The account is disabled
  219. * - The backend doesn't support password resets
  220. * - The password reset function is disabled
  221. *
  222. * @return bool
  223. */
  224. private function canResetPassword(?string $passwordLink, ?IUser $user): bool {
  225. if ($passwordLink === 'disabled') {
  226. return false;
  227. }
  228. if (!$passwordLink && $user !== null) {
  229. return $user->canChangePassword();
  230. }
  231. if ($user !== null && $user->isEnabled() === false) {
  232. return false;
  233. }
  234. return true;
  235. }
  236. private function generateRedirect(?string $redirectUrl): RedirectResponse {
  237. if ($redirectUrl !== null && $this->userSession->isLoggedIn()) {
  238. $location = $this->urlGenerator->getAbsoluteURL($redirectUrl);
  239. // Deny the redirect if the URL contains a @
  240. // This prevents unvalidated redirects like ?redirect_url=:user@domain.com
  241. if (strpos($location, '@') === false) {
  242. return new RedirectResponse($location);
  243. }
  244. }
  245. return new RedirectResponse($this->urlGenerator->linkToDefaultPageUrl());
  246. }
  247. /**
  248. * @PublicPage
  249. * @UseSession
  250. * @NoCSRFRequired
  251. * @BruteForceProtection(action=login)
  252. *
  253. * @param string $user
  254. * @param string $password
  255. * @param string $redirect_url
  256. * @param string $timezone
  257. * @param string $timezone_offset
  258. *
  259. * @return RedirectResponse
  260. */
  261. public function tryLogin(string $user,
  262. string $password,
  263. string $redirect_url = null,
  264. string $timezone = '',
  265. string $timezone_offset = ''): RedirectResponse {
  266. // If the user is already logged in and the CSRF check does not pass then
  267. // simply redirect the user to the correct page as required. This is the
  268. // case when an user has already logged-in, in another tab.
  269. if (!$this->request->passesCSRFCheck()) {
  270. return $this->generateRedirect($redirect_url);
  271. }
  272. $data = new LoginData(
  273. $this->request,
  274. trim($user),
  275. $password,
  276. $redirect_url,
  277. $timezone,
  278. $timezone_offset
  279. );
  280. $result = $this->loginChain->process($data);
  281. if (!$result->isSuccess()) {
  282. return $this->createLoginFailedResponse(
  283. $data->getUsername(),
  284. $user,
  285. $redirect_url,
  286. $result->getErrorMessage()
  287. );
  288. }
  289. if ($result->getRedirectUrl() !== null) {
  290. return new RedirectResponse($result->getRedirectUrl());
  291. }
  292. return $this->generateRedirect($redirect_url);
  293. }
  294. /**
  295. * Creates a login failed response.
  296. *
  297. * @param string $user
  298. * @param string $originalUser
  299. * @param string $redirect_url
  300. * @param string $loginMessage
  301. *
  302. * @return RedirectResponse
  303. */
  304. private function createLoginFailedResponse(
  305. $user, $originalUser, $redirect_url, string $loginMessage) {
  306. // Read current user and append if possible we need to
  307. // return the unmodified user otherwise we will leak the login name
  308. $args = $user !== null ? ['user' => $originalUser, 'direct' => 1] : [];
  309. if ($redirect_url !== null) {
  310. $args['redirect_url'] = $redirect_url;
  311. }
  312. $response = new RedirectResponse(
  313. $this->urlGenerator->linkToRoute('core.login.showLoginForm', $args)
  314. );
  315. $response->throttle(['user' => substr($user, 0, 64)]);
  316. $this->session->set('loginMessages', [
  317. [$loginMessage], []
  318. ]);
  319. return $response;
  320. }
  321. /**
  322. * @NoAdminRequired
  323. * @UseSession
  324. * @BruteForceProtection(action=sudo)
  325. *
  326. * @param string $password
  327. *
  328. * @return DataResponse
  329. * @license GNU AGPL version 3 or any later version
  330. *
  331. */
  332. public function confirmPassword($password) {
  333. $loginName = $this->userSession->getLoginName();
  334. $loginResult = $this->userManager->checkPassword($loginName, $password);
  335. if ($loginResult === false) {
  336. $response = new DataResponse([], Http::STATUS_FORBIDDEN);
  337. $response->throttle();
  338. return $response;
  339. }
  340. $confirmTimestamp = time();
  341. $this->session->set('last-password-confirm', $confirmTimestamp);
  342. return new DataResponse(['lastLogin' => $confirmTimestamp], Http::STATUS_OK);
  343. }
  344. }