authController.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This controller handles action about authentication.
  5. */
  6. class FreshRSS_auth_Controller extends FreshRSS_ActionController {
  7. /**
  8. * This action handles authentication management page.
  9. *
  10. * Parameters are:
  11. * - token (default: current token)
  12. * - anon_access (default: false)
  13. * - anon_refresh (default: false)
  14. * - auth_type (default: none)
  15. * - api_enabled (default: false)
  16. */
  17. public function indexAction(): void {
  18. if (!FreshRSS_Auth::hasAccess('admin')) {
  19. Minz_Error::error(403);
  20. }
  21. if (FreshRSS_Auth::requestReauth()) {
  22. return;
  23. }
  24. FreshRSS_View::prependTitle(_t('admin.auth.title') . ' · ');
  25. if (Minz_Request::isPost()) {
  26. $ok = true;
  27. $anon = Minz_Request::paramBoolean('anon_access');
  28. $anon_refresh = Minz_Request::paramBoolean('anon_refresh');
  29. $auth_type = Minz_Request::paramString('auth_type') ?: 'form';
  30. $api_enabled = Minz_Request::paramBoolean('api_enabled');
  31. if ($anon !== FreshRSS_Context::systemConf()->allow_anonymous ||
  32. $auth_type !== FreshRSS_Context::systemConf()->auth_type ||
  33. $anon_refresh !== FreshRSS_Context::systemConf()->allow_anonymous_refresh ||
  34. $api_enabled !== FreshRSS_Context::systemConf()->api_enabled) {
  35. if (in_array($auth_type, ['form', 'http_auth', 'none'], true)) {
  36. FreshRSS_Context::systemConf()->auth_type = $auth_type;
  37. } else {
  38. FreshRSS_Context::systemConf()->auth_type = 'form';
  39. }
  40. FreshRSS_Context::systemConf()->allow_anonymous = $anon;
  41. FreshRSS_Context::systemConf()->allow_anonymous_refresh = $anon_refresh;
  42. FreshRSS_Context::systemConf()->api_enabled = $api_enabled;
  43. $ok &= FreshRSS_Context::systemConf()->save();
  44. }
  45. invalidateHttpCache();
  46. if ($ok) {
  47. Minz_Request::good(
  48. _t('feedback.conf.updated'),
  49. [ 'c' => 'auth', 'a' => 'index' ],
  50. showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
  51. );
  52. } else {
  53. Minz_Request::bad(_t('feedback.conf.error'), [ 'c' => 'auth', 'a' => 'index' ]);
  54. }
  55. }
  56. }
  57. /**
  58. * This action handles the login page.
  59. *
  60. * It forwards to the correct login page (form) or main page if
  61. * the user is already connected.
  62. */
  63. public function loginAction(): void {
  64. if (FreshRSS_Auth::hasAccess()) {
  65. Minz_Request::forward(['c' => 'index', 'a' => 'index'], true);
  66. }
  67. $auth_type = FreshRSS_Context::systemConf()->auth_type;
  68. FreshRSS_Context::initUser(Minz_User::INTERNAL_USER, false);
  69. match ($auth_type) {
  70. 'form' => Minz_Request::forward(['c' => 'auth', 'a' => 'formLogin']),
  71. 'http_auth' => Minz_Error::error(403, [
  72. 'error' => [
  73. _t('feedback.access.denied'),
  74. ' [HTTP Remote-User=' . htmlspecialchars(FreshRSS_http_Util::httpAuthUser(onlyTrusted: false), ENT_NOQUOTES, 'UTF-8') .
  75. ' ; Remote IP address=' . Minz_Request::connectionRemoteAddress() . ']'
  76. ]
  77. ], false),
  78. 'none' => Minz_Error::error(404), // It should not happen!
  79. default => Minz_Error::error(404), // TODO load plugin instead
  80. };
  81. }
  82. /**
  83. * This action handles form login page.
  84. *
  85. * If this action is reached through a POST request, username and password
  86. * are compared to login the current user.
  87. *
  88. * Parameters are:
  89. * - nonce (default: false)
  90. * - username (default: '')
  91. * - challenge (default: '')
  92. * - keep_logged_in (default: false)
  93. *
  94. * @throws Exception
  95. */
  96. public function formLoginAction(): void {
  97. invalidateHttpCache();
  98. FreshRSS_View::prependTitle(_t('gen.auth.login') . ' · ');
  99. FreshRSS_View::appendScript(Minz_Url::display('/scripts/vendor/bcrypt.js?' . @filemtime(PUBLIC_PATH . '/scripts/vendor/bcrypt.js')));
  100. $limits = FreshRSS_Context::systemConf()->limits;
  101. $this->view->cookie_days = (int)round($limits['cookie_duration'] / 86400, 1);
  102. $isPOST = Minz_Request::isPost() && !Minz_Session::paramBoolean('POST_to_GET');
  103. Minz_Session::_param('POST_to_GET');
  104. if ($isPOST) {
  105. $nonce = Minz_Session::paramString('nonce');
  106. $username = Minz_Request::paramString('username');
  107. $challenge = Minz_Request::paramString('challenge');
  108. $ip_address = Minz_Request::connectionRemoteAddress();
  109. if ($nonce === '') {
  110. Minz_Log::warning("Invalid session during login for user={$username}, nonce={$nonce}, ip_address={$ip_address}");
  111. header('HTTP/1.1 403 Forbidden');
  112. Minz_Session::_param('POST_to_GET', true); //Prevent infinite internal redirect
  113. Minz_Request::setBadNotification(_t('install.session.nok'));
  114. Minz_Request::forward(['c' => 'auth', 'a' => 'login'], false);
  115. return;
  116. }
  117. usleep(random_int(100, 10000)); //Primitive mitigation of timing attacks, in μs
  118. FreshRSS_Context::initUser($username);
  119. if (!FreshRSS_Context::hasUserConf()) {
  120. // Initialise the default user to be able to display the error page
  121. FreshRSS_Context::initUser(FreshRSS_Context::systemConf()->default_user);
  122. Minz_Error::error(403, _t('feedback.auth.login.invalid'), false);
  123. return;
  124. }
  125. if (!FreshRSS_Context::userConf()->enabled || FreshRSS_Context::userConf()->passwordHash == '') {
  126. usleep(random_int(100, 5000)); //Primitive mitigation of timing attacks, in μs
  127. Minz_Error::error(403, _t('feedback.auth.login.invalid'), false);
  128. return;
  129. }
  130. $ok = FreshRSS_FormAuth::checkCredentials(
  131. $username, FreshRSS_Context::userConf()->passwordHash, $nonce, $challenge
  132. );
  133. if ($ok) {
  134. // Set session parameter to give access to the user.
  135. try {
  136. Minz_Session::regenerateID('FreshRSS');
  137. } catch (RuntimeException $e) {
  138. Minz_Log::error("Session could not be regenerated during login for user={$username}, ip_address={$ip_address}: {$e->getMessage()}");
  139. header('HTTP/1.1 500 Internal Server Error');
  140. Minz_Request::setBadNotification(_t('install.session.nok'));
  141. Minz_Request::forward(['c' => 'auth', 'a' => 'login'], false);
  142. return;
  143. }
  144. Minz_Session::_params([
  145. Minz_User::CURRENT_USER => $username,
  146. 'passwordHash' => FreshRSS_Context::userConf()->passwordHash,
  147. 'csrf' => false,
  148. ]);
  149. FreshRSS_Auth::giveAccess();
  150. // Set cookie parameter if needed.
  151. if (Minz_Request::paramBoolean('keep_logged_in')) {
  152. FreshRSS_FormAuth::makeCookie($username, FreshRSS_Context::userConf()->passwordHash);
  153. } else {
  154. FreshRSS_FormAuth::deleteCookie();
  155. }
  156. Minz_Translate::init(FreshRSS_Context::userConf()->language);
  157. FreshRSS_UserDAO::touch();
  158. // All is good, go back to the original request or the index.
  159. $url = Minz_Url::unserialize(Minz_Request::paramString('original_request'));
  160. if (empty($url)) {
  161. $url = [ 'c' => 'index', 'a' => 'index' ];
  162. }
  163. Minz_Request::good(
  164. _t('feedback.auth.login.success'),
  165. $url,
  166. showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
  167. );
  168. } else {
  169. Minz_Log::warning("Password mismatch for user={$username}, nonce={$nonce}, c={$challenge}, ip_address={$ip_address}");
  170. header('HTTP/1.1 403 Forbidden');
  171. Minz_Session::_param('POST_to_GET', true); //Prevent infinite internal redirect
  172. Minz_Request::setBadNotification(_t('feedback.auth.login.invalid'));
  173. Minz_Request::forward(['c' => 'auth', 'a' => 'login'], false);
  174. }
  175. } else {
  176. Minz_Session::deleteLegacyCookie('FreshRSS'); // Delete legacy cookie (before 1.29.0)
  177. }
  178. }
  179. public function reauthAction(): void {
  180. if (!FreshRSS_Auth::hasAccess()) {
  181. Minz_Error::error(403);
  182. return;
  183. }
  184. /** @var array{c?: string, a?: string, params?: array<string, mixed>} $redirect */
  185. $redirect = Minz_Url::unserialize(Minz_Request::paramString('r'));
  186. if (!FreshRSS_Auth::needsReauth()) {
  187. Minz_Request::forward($redirect, true);
  188. return;
  189. }
  190. if (Minz_Request::isPost()) {
  191. $username = Minz_User::name() ?? '';
  192. $nonce = Minz_Session::paramString('nonce');
  193. $challenge = Minz_Request::paramString('challenge');
  194. if (!FreshRSS_FormAuth::checkCredentials(
  195. $username, FreshRSS_Context::userConf()->passwordHash, $nonce, $challenge
  196. )) {
  197. Minz_Request::setBadNotification(_t('feedback.auth.login.invalid'));
  198. } else {
  199. try {
  200. Minz_Session::regenerateID('FreshRSS');
  201. Minz_Session::_param('lastReauth', time());
  202. Minz_Request::forward($redirect, true);
  203. return;
  204. } catch (RuntimeException $e) {
  205. Minz_Log::error("Session could not be regenerated during reauthentication! {$e->getMessage()}");
  206. Minz_Session::_param('lastReauth', 0);
  207. header('HTTP/1.1 500 Internal Server Error');
  208. Minz_Request::setBadNotification(_t('install.session.nok'));
  209. }
  210. }
  211. }
  212. FreshRSS_View::prependTitle(_t('gen.auth.reauth.title') . ' · ');
  213. FreshRSS_View::appendScript(Minz_Url::display('/scripts/vendor/bcrypt.js?' . @filemtime(PUBLIC_PATH . '/scripts/vendor/bcrypt.js')));
  214. }
  215. /**
  216. * This action removes all accesses of the current user.
  217. */
  218. public function logoutAction(): void {
  219. if (Minz_Request::isPost()) {
  220. invalidateHttpCache();
  221. FreshRSS_Auth::removeAccess();
  222. Minz_Session::_param('csrf', false);
  223. try {
  224. Minz_Session::regenerateID('FreshRSS');
  225. } catch (RuntimeException $e) {
  226. Minz_Log::error('Session could not be regenerated during logout! ' . $e->getMessage());
  227. }
  228. Minz_Request::good(
  229. _t('feedback.auth.logout.success'),
  230. [ 'c' => 'index', 'a' => 'index' ],
  231. showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
  232. );
  233. } else {
  234. Minz_Error::error(403);
  235. }
  236. }
  237. /**
  238. * This action gives possibility to a user to create an account.
  239. *
  240. * The user is redirected to the home when logged in.
  241. *
  242. * A 403 is sent if max number of registrations is reached.
  243. */
  244. public function registerAction(): void {
  245. if (FreshRSS_Auth::hasAccess()) {
  246. Minz_Request::forward(['c' => 'index', 'a' => 'index'], true);
  247. }
  248. if (FreshRSS_user_Controller::max_registrations_reached()) {
  249. Minz_Error::error(403);
  250. }
  251. $this->view->show_tos_checkbox = file_exists(TOS_FILENAME);
  252. $this->view->show_email_field = FreshRSS_Context::systemConf()->force_email_validation;
  253. $this->view->preferred_language = Minz_Translate::getLanguage(null, Minz_Request::getPreferredLanguages(), FreshRSS_Context::systemConf()->language);
  254. FreshRSS_View::prependTitle(_t('gen.auth.registration.title') . ' · ');
  255. }
  256. public static function getLogoutUrl(): string {
  257. if (($_SERVER['AUTH_TYPE'] ?? '') === 'openid-connect') {
  258. $url_string = urlencode(Minz_Request::guessBaseUrl());
  259. return './oidc/?logout=' . $url_string . '/';
  260. # The trailing slash is necessary so that we don’t redirect to http://.
  261. # https://bz.apache.org/bugzilla/show_bug.cgi?id=61355#c13
  262. } else {
  263. return _url('auth', 'logout');
  264. }
  265. }
  266. }