You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1181 lines
41 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
12 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2016, ownCloud, Inc.
  5. *
  6. * @author Adam Williamson <awilliam@redhat.com>
  7. * @author Andreas Fischer <bantu@owncloud.com>
  8. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  9. * @author Bart Visscher <bartv@thisnet.nl>
  10. * @author Bernhard Posselt <dev@bernhard-posselt.com>
  11. * @author Bjoern Schiessle <bjoern@schiessle.org>
  12. * @author Björn Schießle <bjoern@schiessle.org>
  13. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  14. * @author Côme Chilliet <come.chilliet@nextcloud.com>
  15. * @author Damjan Georgievski <gdamjan@gmail.com>
  16. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  17. * @author davidgumberg <davidnoizgumberg@gmail.com>
  18. * @author Eric Masseran <rico.masseran@gmail.com>
  19. * @author Florin Peter <github@florin-peter.de>
  20. * @author Greta Doci <gretadoci@gmail.com>
  21. * @author J0WI <J0WI@users.noreply.github.com>
  22. * @author Jakob Sack <mail@jakobsack.de>
  23. * @author jaltek <jaltek@mailbox.org>
  24. * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
  25. * @author Joachim Sokolowski <github@sokolowski.org>
  26. * @author Joas Schilling <coding@schilljs.com>
  27. * @author John Molakvoæ <skjnldsv@protonmail.com>
  28. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  29. * @author Jose Quinteiro <github@quinteiro.org>
  30. * @author Juan Pablo Villafáñez <jvillafanez@solidgear.es>
  31. * @author Julius Härtl <jus@bitgrid.net>
  32. * @author Ko- <k.stoffelen@cs.ru.nl>
  33. * @author Lukas Reschke <lukas@statuscode.ch>
  34. * @author MartB <mart.b@outlook.de>
  35. * @author Michael Gapczynski <GapczynskiM@gmail.com>
  36. * @author MichaIng <micha@dietpi.com>
  37. * @author Morris Jobke <hey@morrisjobke.de>
  38. * @author Owen Winkler <a_github@midnightcircus.com>
  39. * @author Phil Davis <phil.davis@inf.org>
  40. * @author Ramiro Aparicio <rapariciog@gmail.com>
  41. * @author Robin Appelman <robin@icewind.nl>
  42. * @author Robin McCorkell <robin@mccorkell.me.uk>
  43. * @author Roeland Jago Douma <roeland@famdouma.nl>
  44. * @author Sebastian Wessalowski <sebastian@wessalowski.org>
  45. * @author Stefan Weil <sw@weilnetz.de>
  46. * @author Thomas Müller <thomas.mueller@tmit.eu>
  47. * @author Thomas Tanghus <thomas@tanghus.net>
  48. * @author Tobia De Koninck <tobia@ledfan.be>
  49. * @author Vincent Petry <vincent@nextcloud.com>
  50. * @author Volkan Gezer <volkangezer@gmail.com>
  51. *
  52. * @license AGPL-3.0
  53. *
  54. * This code is free software: you can redistribute it and/or modify
  55. * it under the terms of the GNU Affero General Public License, version 3,
  56. * as published by the Free Software Foundation.
  57. *
  58. * This program is distributed in the hope that it will be useful,
  59. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  60. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  61. * GNU Affero General Public License for more details.
  62. *
  63. * You should have received a copy of the GNU Affero General Public License, version 3,
  64. * along with this program. If not, see <http://www.gnu.org/licenses/>
  65. *
  66. */
  67. use OC\Encryption\HookManager;
  68. use OC\Share20\Hooks;
  69. use OCP\EventDispatcher\IEventDispatcher;
  70. use OCP\Group\Events\UserRemovedEvent;
  71. use OCP\ILogger;
  72. use OCP\IRequest;
  73. use OCP\IURLGenerator;
  74. use OCP\IUserSession;
  75. use OCP\Security\Bruteforce\IThrottler;
  76. use OCP\Server;
  77. use OCP\Share;
  78. use OCP\User\Events\UserChangedEvent;
  79. use Psr\Log\LoggerInterface;
  80. use Symfony\Component\Routing\Exception\MethodNotAllowedException;
  81. use function OCP\Log\logger;
  82. require_once 'public/Constants.php';
  83. /**
  84. * Class that is a namespace for all global OC variables
  85. * No, we can not put this class in its own file because it is used by
  86. * OC_autoload!
  87. */
  88. class OC {
  89. /**
  90. * Associative array for autoloading. classname => filename
  91. */
  92. public static array $CLASSPATH = [];
  93. /**
  94. * The installation path for Nextcloud on the server (e.g. /srv/http/nextcloud)
  95. */
  96. public static string $SERVERROOT = '';
  97. /**
  98. * the current request path relative to the Nextcloud root (e.g. files/index.php)
  99. */
  100. private static string $SUBURI = '';
  101. /**
  102. * the Nextcloud root path for http requests (e.g. nextcloud/)
  103. */
  104. public static string $WEBROOT = '';
  105. /**
  106. * The installation path array of the apps folder on the server (e.g. /srv/http/nextcloud) 'path' and
  107. * web path in 'url'
  108. */
  109. public static array $APPSROOTS = [];
  110. public static string $configDir;
  111. /**
  112. * requested app
  113. */
  114. public static string $REQUESTEDAPP = '';
  115. /**
  116. * check if Nextcloud runs in cli mode
  117. */
  118. public static bool $CLI = false;
  119. public static \OC\Autoloader $loader;
  120. public static \Composer\Autoload\ClassLoader $composerAutoloader;
  121. public static \OC\Server $server;
  122. private static \OC\Config $config;
  123. /**
  124. * @throws \RuntimeException when the 3rdparty directory is missing or
  125. * the app path list is empty or contains an invalid path
  126. */
  127. public static function initPaths(): void {
  128. if (defined('PHPUNIT_CONFIG_DIR')) {
  129. self::$configDir = OC::$SERVERROOT . '/' . PHPUNIT_CONFIG_DIR . '/';
  130. } elseif (defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/tests/config/')) {
  131. self::$configDir = OC::$SERVERROOT . '/tests/config/';
  132. } elseif ($dir = getenv('NEXTCLOUD_CONFIG_DIR')) {
  133. self::$configDir = rtrim($dir, '/') . '/';
  134. } else {
  135. self::$configDir = OC::$SERVERROOT . '/config/';
  136. }
  137. self::$config = new \OC\Config(self::$configDir);
  138. OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"] ?? ''), strlen(OC::$SERVERROOT)));
  139. /**
  140. * FIXME: The following lines are required because we can't yet instantiate
  141. * Server::get(\OCP\IRequest::class) since \OC::$server does not yet exist.
  142. */
  143. $params = [
  144. 'server' => [
  145. 'SCRIPT_NAME' => $_SERVER['SCRIPT_NAME'] ?? null,
  146. 'SCRIPT_FILENAME' => $_SERVER['SCRIPT_FILENAME'] ?? null,
  147. ],
  148. ];
  149. if (isset($_SERVER['REMOTE_ADDR'])) {
  150. $params['server']['REMOTE_ADDR'] = $_SERVER['REMOTE_ADDR'];
  151. }
  152. $fakeRequest = new \OC\AppFramework\Http\Request(
  153. $params,
  154. new \OC\AppFramework\Http\RequestId($_SERVER['UNIQUE_ID'] ?? '', new \OC\Security\SecureRandom()),
  155. new \OC\AllConfig(new \OC\SystemConfig(self::$config))
  156. );
  157. $scriptName = $fakeRequest->getScriptName();
  158. if (substr($scriptName, -1) == '/') {
  159. $scriptName .= 'index.php';
  160. //make sure suburi follows the same rules as scriptName
  161. if (substr(OC::$SUBURI, -9) != 'index.php') {
  162. if (substr(OC::$SUBURI, -1) != '/') {
  163. OC::$SUBURI = OC::$SUBURI . '/';
  164. }
  165. OC::$SUBURI = OC::$SUBURI . 'index.php';
  166. }
  167. }
  168. if (OC::$CLI) {
  169. OC::$WEBROOT = self::$config->getValue('overwritewebroot', '');
  170. } else {
  171. if (substr($scriptName, 0 - strlen(OC::$SUBURI)) === OC::$SUBURI) {
  172. OC::$WEBROOT = substr($scriptName, 0, 0 - strlen(OC::$SUBURI));
  173. if (OC::$WEBROOT != '' && OC::$WEBROOT[0] !== '/') {
  174. OC::$WEBROOT = '/' . OC::$WEBROOT;
  175. }
  176. } else {
  177. // The scriptName is not ending with OC::$SUBURI
  178. // This most likely means that we are calling from CLI.
  179. // However some cron jobs still need to generate
  180. // a web URL, so we use overwritewebroot as a fallback.
  181. OC::$WEBROOT = self::$config->getValue('overwritewebroot', '');
  182. }
  183. // Resolve /nextcloud to /nextcloud/ to ensure to always have a trailing
  184. // slash which is required by URL generation.
  185. if (isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI'] === \OC::$WEBROOT &&
  186. substr($_SERVER['REQUEST_URI'], -1) !== '/') {
  187. header('Location: '.\OC::$WEBROOT.'/');
  188. exit();
  189. }
  190. }
  191. // search the apps folder
  192. $config_paths = self::$config->getValue('apps_paths', []);
  193. if (!empty($config_paths)) {
  194. foreach ($config_paths as $paths) {
  195. if (isset($paths['url']) && isset($paths['path'])) {
  196. $paths['url'] = rtrim($paths['url'], '/');
  197. $paths['path'] = rtrim($paths['path'], '/');
  198. OC::$APPSROOTS[] = $paths;
  199. }
  200. }
  201. } elseif (file_exists(OC::$SERVERROOT . '/apps')) {
  202. OC::$APPSROOTS[] = ['path' => OC::$SERVERROOT . '/apps', 'url' => '/apps', 'writable' => true];
  203. }
  204. if (empty(OC::$APPSROOTS)) {
  205. throw new \RuntimeException('apps directory not found! Please put the Nextcloud apps folder in the Nextcloud folder'
  206. . '. You can also configure the location in the config.php file.');
  207. }
  208. $paths = [];
  209. foreach (OC::$APPSROOTS as $path) {
  210. $paths[] = $path['path'];
  211. if (!is_dir($path['path'])) {
  212. throw new \RuntimeException(sprintf('App directory "%s" not found! Please put the Nextcloud apps folder in the'
  213. . ' Nextcloud folder. You can also configure the location in the config.php file.', $path['path']));
  214. }
  215. }
  216. // set the right include path
  217. set_include_path(
  218. implode(PATH_SEPARATOR, $paths)
  219. );
  220. }
  221. public static function checkConfig(): void {
  222. $l = Server::get(\OCP\L10N\IFactory::class)->get('lib');
  223. // Create config if it does not already exist
  224. $configFilePath = self::$configDir .'/config.php';
  225. if (!file_exists($configFilePath)) {
  226. @touch($configFilePath);
  227. }
  228. // Check if config is writable
  229. $configFileWritable = is_writable($configFilePath);
  230. if (!$configFileWritable && !OC_Helper::isReadOnlyConfigEnabled()
  231. || !$configFileWritable && \OCP\Util::needUpgrade()) {
  232. $urlGenerator = Server::get(IURLGenerator::class);
  233. if (self::$CLI) {
  234. echo $l->t('Cannot write into "config" directory!')."\n";
  235. echo $l->t('This can usually be fixed by giving the web server write access to the config directory.')."\n";
  236. echo "\n";
  237. echo $l->t('But, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it.')."\n";
  238. echo $l->t('See %s', [ $urlGenerator->linkToDocs('admin-config') ])."\n";
  239. exit;
  240. } else {
  241. OC_Template::printErrorPage(
  242. $l->t('Cannot write into "config" directory!'),
  243. $l->t('This can usually be fixed by giving the web server write access to the config directory.') . ' '
  244. . $l->t('But, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it.') . ' '
  245. . $l->t('See %s', [ $urlGenerator->linkToDocs('admin-config') ]),
  246. 503
  247. );
  248. }
  249. }
  250. }
  251. public static function checkInstalled(\OC\SystemConfig $systemConfig): void {
  252. if (defined('OC_CONSOLE')) {
  253. return;
  254. }
  255. // Redirect to installer if not installed
  256. if (!$systemConfig->getValue('installed', false) && OC::$SUBURI !== '/index.php' && OC::$SUBURI !== '/status.php') {
  257. if (OC::$CLI) {
  258. throw new Exception('Not installed');
  259. } else {
  260. $url = OC::$WEBROOT . '/index.php';
  261. header('Location: ' . $url);
  262. }
  263. exit();
  264. }
  265. }
  266. public static function checkMaintenanceMode(\OC\SystemConfig $systemConfig): void {
  267. // Allow ajax update script to execute without being stopped
  268. if (((bool) $systemConfig->getValue('maintenance', false)) && OC::$SUBURI != '/core/ajax/update.php') {
  269. // send http status 503
  270. http_response_code(503);
  271. header('X-Nextcloud-Maintenance-Mode: 1');
  272. header('Retry-After: 120');
  273. // render error page
  274. $template = new OC_Template('', 'update.user', 'guest');
  275. \OCP\Util::addScript('core', 'maintenance');
  276. \OCP\Util::addStyle('core', 'guest');
  277. $template->printPage();
  278. die();
  279. }
  280. }
  281. /**
  282. * Prints the upgrade page
  283. */
  284. private static function printUpgradePage(\OC\SystemConfig $systemConfig): void {
  285. $cliUpgradeLink = $systemConfig->getValue('upgrade.cli-upgrade-link', '');
  286. $disableWebUpdater = $systemConfig->getValue('upgrade.disable-web', false);
  287. $tooBig = false;
  288. if (!$disableWebUpdater) {
  289. $apps = Server::get(\OCP\App\IAppManager::class);
  290. if ($apps->isInstalled('user_ldap')) {
  291. $qb = Server::get(\OCP\IDBConnection::class)->getQueryBuilder();
  292. $result = $qb->select($qb->func()->count('*', 'user_count'))
  293. ->from('ldap_user_mapping')
  294. ->executeQuery();
  295. $row = $result->fetch();
  296. $result->closeCursor();
  297. $tooBig = ($row['user_count'] > 50);
  298. }
  299. if (!$tooBig && $apps->isInstalled('user_saml')) {
  300. $qb = Server::get(\OCP\IDBConnection::class)->getQueryBuilder();
  301. $result = $qb->select($qb->func()->count('*', 'user_count'))
  302. ->from('user_saml_users')
  303. ->executeQuery();
  304. $row = $result->fetch();
  305. $result->closeCursor();
  306. $tooBig = ($row['user_count'] > 50);
  307. }
  308. if (!$tooBig) {
  309. // count users
  310. $stats = Server::get(\OCP\IUserManager::class)->countUsers();
  311. $totalUsers = array_sum($stats);
  312. $tooBig = ($totalUsers > 50);
  313. }
  314. }
  315. $ignoreTooBigWarning = isset($_GET['IKnowThatThisIsABigInstanceAndTheUpdateRequestCouldRunIntoATimeoutAndHowToRestoreABackup']) &&
  316. $_GET['IKnowThatThisIsABigInstanceAndTheUpdateRequestCouldRunIntoATimeoutAndHowToRestoreABackup'] === 'IAmSuperSureToDoThis';
  317. if ($disableWebUpdater || ($tooBig && !$ignoreTooBigWarning)) {
  318. // send http status 503
  319. http_response_code(503);
  320. header('Retry-After: 120');
  321. // render error page
  322. $template = new OC_Template('', 'update.use-cli', 'guest');
  323. $template->assign('productName', 'nextcloud'); // for now
  324. $template->assign('version', OC_Util::getVersionString());
  325. $template->assign('tooBig', $tooBig);
  326. $template->assign('cliUpgradeLink', $cliUpgradeLink);
  327. $template->printPage();
  328. die();
  329. }
  330. // check whether this is a core update or apps update
  331. $installedVersion = $systemConfig->getValue('version', '0.0.0');
  332. $currentVersion = implode('.', \OCP\Util::getVersion());
  333. // if not a core upgrade, then it's apps upgrade
  334. $isAppsOnlyUpgrade = version_compare($currentVersion, $installedVersion, '=');
  335. $oldTheme = $systemConfig->getValue('theme');
  336. $systemConfig->setValue('theme', '');
  337. \OCP\Util::addScript('core', 'common');
  338. \OCP\Util::addScript('core', 'main');
  339. \OCP\Util::addTranslations('core');
  340. \OCP\Util::addScript('core', 'update');
  341. /** @var \OC\App\AppManager $appManager */
  342. $appManager = Server::get(\OCP\App\IAppManager::class);
  343. $tmpl = new OC_Template('', 'update.admin', 'guest');
  344. $tmpl->assign('version', OC_Util::getVersionString());
  345. $tmpl->assign('isAppsOnlyUpgrade', $isAppsOnlyUpgrade);
  346. // get third party apps
  347. $ocVersion = \OCP\Util::getVersion();
  348. $ocVersion = implode('.', $ocVersion);
  349. $incompatibleApps = $appManager->getIncompatibleApps($ocVersion);
  350. $incompatibleOverwrites = $systemConfig->getValue('app_install_overwrite', []);
  351. $incompatibleShippedApps = [];
  352. $incompatibleDisabledApps = [];
  353. foreach ($incompatibleApps as $appInfo) {
  354. if ($appManager->isShipped($appInfo['id'])) {
  355. $incompatibleShippedApps[] = $appInfo['name'] . ' (' . $appInfo['id'] . ')';
  356. }
  357. if (!in_array($appInfo['id'], $incompatibleOverwrites)) {
  358. $incompatibleDisabledApps[] = $appInfo;
  359. }
  360. }
  361. if (!empty($incompatibleShippedApps)) {
  362. $l = Server::get(\OCP\L10N\IFactory::class)->get('core');
  363. $hint = $l->t('Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory.', [implode(', ', $incompatibleShippedApps)]);
  364. throw new \OCP\HintException('Application ' . implode(', ', $incompatibleShippedApps) . ' is not present or has a non-compatible version with this server. Please check the apps directory.', $hint);
  365. }
  366. $tmpl->assign('appsToUpgrade', $appManager->getAppsNeedingUpgrade($ocVersion));
  367. $tmpl->assign('incompatibleAppsList', $incompatibleDisabledApps);
  368. try {
  369. $defaults = new \OC_Defaults();
  370. $tmpl->assign('productName', $defaults->getName());
  371. } catch (Throwable $error) {
  372. $tmpl->assign('productName', 'Nextcloud');
  373. }
  374. $tmpl->assign('oldTheme', $oldTheme);
  375. $tmpl->printPage();
  376. }
  377. public static function initSession(): void {
  378. $request = Server::get(IRequest::class);
  379. // TODO: Temporary disabled again to solve issues with CalDAV/CardDAV clients like DAVx5 that use cookies
  380. // TODO: See https://github.com/nextcloud/server/issues/37277#issuecomment-1476366147 and the other comments
  381. // TODO: for further information.
  382. // $isDavRequest = strpos($request->getRequestUri(), '/remote.php/dav') === 0 || strpos($request->getRequestUri(), '/remote.php/webdav') === 0;
  383. // if ($request->getHeader('Authorization') !== '' && is_null($request->getCookie('cookie_test')) && $isDavRequest && !isset($_COOKIE['nc_session_id'])) {
  384. // setcookie('cookie_test', 'test', time() + 3600);
  385. // // Do not initialize the session if a request is authenticated directly
  386. // // unless there is a session cookie already sent along
  387. // return;
  388. // }
  389. if ($request->getServerProtocol() === 'https') {
  390. ini_set('session.cookie_secure', 'true');
  391. }
  392. // prevents javascript from accessing php session cookies
  393. ini_set('session.cookie_httponly', 'true');
  394. // set the cookie path to the Nextcloud directory
  395. $cookie_path = OC::$WEBROOT ? : '/';
  396. ini_set('session.cookie_path', $cookie_path);
  397. // Let the session name be changed in the initSession Hook
  398. $sessionName = OC_Util::getInstanceId();
  399. try {
  400. // set the session name to the instance id - which is unique
  401. $session = new \OC\Session\Internal($sessionName);
  402. $cryptoWrapper = Server::get(\OC\Session\CryptoWrapper::class);
  403. $session = $cryptoWrapper->wrapSession($session);
  404. self::$server->setSession($session);
  405. // if session can't be started break with http 500 error
  406. } catch (Exception $e) {
  407. Server::get(LoggerInterface::class)->error($e->getMessage(), ['app' => 'base','exception' => $e]);
  408. //show the user a detailed error page
  409. OC_Template::printExceptionErrorPage($e, 500);
  410. die();
  411. }
  412. //try to set the session lifetime
  413. $sessionLifeTime = self::getSessionLifeTime();
  414. @ini_set('gc_maxlifetime', (string)$sessionLifeTime);
  415. // session timeout
  416. if ($session->exists('LAST_ACTIVITY') && (time() - $session->get('LAST_ACTIVITY') > $sessionLifeTime)) {
  417. if (isset($_COOKIE[session_name()])) {
  418. setcookie(session_name(), '', -1, self::$WEBROOT ? : '/');
  419. }
  420. Server::get(IUserSession::class)->logout();
  421. }
  422. if (!self::hasSessionRelaxedExpiry()) {
  423. $session->set('LAST_ACTIVITY', time());
  424. }
  425. $session->close();
  426. }
  427. private static function getSessionLifeTime(): int {
  428. return Server::get(\OC\AllConfig::class)->getSystemValueInt('session_lifetime', 60 * 60 * 24);
  429. }
  430. /**
  431. * @return bool true if the session expiry should only be done by gc instead of an explicit timeout
  432. */
  433. public static function hasSessionRelaxedExpiry(): bool {
  434. return Server::get(\OC\AllConfig::class)->getSystemValueBool('session_relaxed_expiry', false);
  435. }
  436. /**
  437. * Try to set some values to the required Nextcloud default
  438. */
  439. public static function setRequiredIniValues(): void {
  440. @ini_set('default_charset', 'UTF-8');
  441. @ini_set('gd.jpeg_ignore_warning', '1');
  442. }
  443. /**
  444. * Send the same site cookies
  445. */
  446. private static function sendSameSiteCookies(): void {
  447. $cookieParams = session_get_cookie_params();
  448. $secureCookie = ($cookieParams['secure'] === true) ? 'secure; ' : '';
  449. $policies = [
  450. 'lax',
  451. 'strict',
  452. ];
  453. // Append __Host to the cookie if it meets the requirements
  454. $cookiePrefix = '';
  455. if ($cookieParams['secure'] === true && $cookieParams['path'] === '/') {
  456. $cookiePrefix = '__Host-';
  457. }
  458. foreach ($policies as $policy) {
  459. header(
  460. sprintf(
  461. 'Set-Cookie: %snc_sameSiteCookie%s=true; path=%s; httponly;' . $secureCookie . 'expires=Fri, 31-Dec-2100 23:59:59 GMT; SameSite=%s',
  462. $cookiePrefix,
  463. $policy,
  464. $cookieParams['path'],
  465. $policy
  466. ),
  467. false
  468. );
  469. }
  470. }
  471. /**
  472. * Same Site cookie to further mitigate CSRF attacks. This cookie has to
  473. * be set in every request if cookies are sent to add a second level of
  474. * defense against CSRF.
  475. *
  476. * If the cookie is not sent this will set the cookie and reload the page.
  477. * We use an additional cookie since we want to protect logout CSRF and
  478. * also we can't directly interfere with PHP's session mechanism.
  479. */
  480. private static function performSameSiteCookieProtection(\OCP\IConfig $config): void {
  481. $request = Server::get(IRequest::class);
  482. // Some user agents are notorious and don't really properly follow HTTP
  483. // specifications. For those, have an automated opt-out. Since the protection
  484. // for remote.php is applied in base.php as starting point we need to opt out
  485. // here.
  486. $incompatibleUserAgents = $config->getSystemValue('csrf.optout');
  487. // Fallback, if csrf.optout is unset
  488. if (!is_array($incompatibleUserAgents)) {
  489. $incompatibleUserAgents = [
  490. // OS X Finder
  491. '/^WebDAVFS/',
  492. // Windows webdav drive
  493. '/^Microsoft-WebDAV-MiniRedir/',
  494. ];
  495. }
  496. if ($request->isUserAgent($incompatibleUserAgents)) {
  497. return;
  498. }
  499. if (count($_COOKIE) > 0) {
  500. $requestUri = $request->getScriptName();
  501. $processingScript = explode('/', $requestUri);
  502. $processingScript = $processingScript[count($processingScript) - 1];
  503. // index.php routes are handled in the middleware
  504. if ($processingScript === 'index.php') {
  505. return;
  506. }
  507. // All other endpoints require the lax and the strict cookie
  508. if (!$request->passesStrictCookieCheck()) {
  509. logger('core')->warning('Request does not pass strict cookie check');
  510. self::sendSameSiteCookies();
  511. // Debug mode gets access to the resources without strict cookie
  512. // due to the fact that the SabreDAV browser also lives there.
  513. if (!$config->getSystemValueBool('debug', false)) {
  514. http_response_code(\OCP\AppFramework\Http::STATUS_PRECONDITION_FAILED);
  515. header('Content-Type: application/json');
  516. echo json_encode(['error' => 'Strict Cookie has not been found in request']);
  517. exit();
  518. }
  519. }
  520. } elseif (!isset($_COOKIE['nc_sameSiteCookielax']) || !isset($_COOKIE['nc_sameSiteCookiestrict'])) {
  521. self::sendSameSiteCookies();
  522. }
  523. }
  524. public static function init(): void {
  525. // prevent any XML processing from loading external entities
  526. libxml_set_external_entity_loader(static function () {
  527. return null;
  528. });
  529. // calculate the root directories
  530. OC::$SERVERROOT = str_replace("\\", '/', substr(__DIR__, 0, -4));
  531. // register autoloader
  532. $loaderStart = microtime(true);
  533. require_once __DIR__ . '/autoloader.php';
  534. self::$loader = new \OC\Autoloader([
  535. OC::$SERVERROOT . '/lib/private/legacy',
  536. ]);
  537. if (defined('PHPUNIT_RUN')) {
  538. self::$loader->addValidRoot(OC::$SERVERROOT . '/tests');
  539. }
  540. spl_autoload_register([self::$loader, 'load']);
  541. $loaderEnd = microtime(true);
  542. self::$CLI = (php_sapi_name() == 'cli');
  543. // Add default composer PSR-4 autoloader, ensure apcu to be disabled
  544. self::$composerAutoloader = require_once OC::$SERVERROOT . '/lib/composer/autoload.php';
  545. self::$composerAutoloader->setApcuPrefix(null);
  546. try {
  547. self::initPaths();
  548. // setup 3rdparty autoloader
  549. $vendorAutoLoad = OC::$SERVERROOT. '/3rdparty/autoload.php';
  550. if (!file_exists($vendorAutoLoad)) {
  551. throw new \RuntimeException('Composer autoloader not found, unable to continue. Check the folder "3rdparty". Running "git submodule update --init" will initialize the git submodule that handles the subfolder "3rdparty".');
  552. }
  553. require_once $vendorAutoLoad;
  554. } catch (\RuntimeException $e) {
  555. if (!self::$CLI) {
  556. http_response_code(503);
  557. }
  558. // we can't use the template error page here, because this needs the
  559. // DI container which isn't available yet
  560. print($e->getMessage());
  561. exit();
  562. }
  563. // setup the basic server
  564. self::$server = new \OC\Server(\OC::$WEBROOT, self::$config);
  565. self::$server->boot();
  566. $eventLogger = Server::get(\OCP\Diagnostics\IEventLogger::class);
  567. $eventLogger->log('autoloader', 'Autoloader', $loaderStart, $loaderEnd);
  568. $eventLogger->start('boot', 'Initialize');
  569. // Override php.ini and log everything if we're troubleshooting
  570. if (self::$config->getValue('loglevel') === ILogger::DEBUG) {
  571. error_reporting(E_ALL);
  572. }
  573. // Don't display errors and log them
  574. @ini_set('display_errors', '0');
  575. @ini_set('log_errors', '1');
  576. if (!date_default_timezone_set('UTC')) {
  577. throw new \RuntimeException('Could not set timezone to UTC');
  578. }
  579. //try to configure php to enable big file uploads.
  580. //this doesn´t work always depending on the webserver and php configuration.
  581. //Let´s try to overwrite some defaults if they are smaller than 1 hour
  582. if (intval(@ini_get('max_execution_time') ?? 0) < 3600) {
  583. @ini_set('max_execution_time', strval(3600));
  584. }
  585. if (intval(@ini_get('max_input_time') ?? 0) < 3600) {
  586. @ini_set('max_input_time', strval(3600));
  587. }
  588. //try to set the maximum execution time to the largest time limit we have
  589. if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
  590. @set_time_limit(max(intval(@ini_get('max_execution_time')), intval(@ini_get('max_input_time'))));
  591. }
  592. self::setRequiredIniValues();
  593. self::handleAuthHeaders();
  594. $systemConfig = Server::get(\OC\SystemConfig::class);
  595. self::registerAutoloaderCache($systemConfig);
  596. // initialize intl fallback if necessary
  597. OC_Util::isSetLocaleWorking();
  598. $config = Server::get(\OCP\IConfig::class);
  599. if (!defined('PHPUNIT_RUN')) {
  600. $errorHandler = new OC\Log\ErrorHandler(
  601. \OCP\Server::get(\Psr\Log\LoggerInterface::class),
  602. );
  603. $exceptionHandler = [$errorHandler, 'onException'];
  604. if ($config->getSystemValueBool('debug', false)) {
  605. set_error_handler([$errorHandler, 'onAll'], E_ALL);
  606. if (\OC::$CLI) {
  607. $exceptionHandler = ['OC_Template', 'printExceptionErrorPage'];
  608. }
  609. } else {
  610. set_error_handler([$errorHandler, 'onError']);
  611. }
  612. register_shutdown_function([$errorHandler, 'onShutdown']);
  613. set_exception_handler($exceptionHandler);
  614. }
  615. /** @var \OC\AppFramework\Bootstrap\Coordinator $bootstrapCoordinator */
  616. $bootstrapCoordinator = Server::get(\OC\AppFramework\Bootstrap\Coordinator::class);
  617. $bootstrapCoordinator->runInitialRegistration();
  618. $eventLogger->start('init_session', 'Initialize session');
  619. OC_App::loadApps(['session']);
  620. if (!self::$CLI) {
  621. self::initSession();
  622. }
  623. $eventLogger->end('init_session');
  624. self::checkConfig();
  625. self::checkInstalled($systemConfig);
  626. OC_Response::addSecurityHeaders();
  627. self::performSameSiteCookieProtection($config);
  628. if (!defined('OC_CONSOLE')) {
  629. $errors = OC_Util::checkServer($systemConfig);
  630. if (count($errors) > 0) {
  631. if (!self::$CLI) {
  632. http_response_code(503);
  633. OC_Util::addStyle('guest');
  634. try {
  635. OC_Template::printGuestPage('', 'error', ['errors' => $errors]);
  636. exit;
  637. } catch (\Exception $e) {
  638. // In case any error happens when showing the error page, we simply fall back to posting the text.
  639. // This might be the case when e.g. the data directory is broken and we can not load/write SCSS to/from it.
  640. }
  641. }
  642. // Convert l10n string into regular string for usage in database
  643. $staticErrors = [];
  644. foreach ($errors as $error) {
  645. echo $error['error'] . "\n";
  646. echo $error['hint'] . "\n\n";
  647. $staticErrors[] = [
  648. 'error' => (string)$error['error'],
  649. 'hint' => (string)$error['hint'],
  650. ];
  651. }
  652. try {
  653. $config->setAppValue('core', 'cronErrors', json_encode($staticErrors));
  654. } catch (\Exception $e) {
  655. echo('Writing to database failed');
  656. }
  657. exit(1);
  658. } elseif (self::$CLI && $config->getSystemValueBool('installed', false)) {
  659. $config->deleteAppValue('core', 'cronErrors');
  660. }
  661. }
  662. // User and Groups
  663. if (!$systemConfig->getValue("installed", false)) {
  664. self::$server->getSession()->set('user_id', '');
  665. }
  666. OC_User::useBackend(new \OC\User\Database());
  667. Server::get(\OCP\IGroupManager::class)->addBackend(new \OC\Group\Database());
  668. // Subscribe to the hook
  669. \OCP\Util::connectHook(
  670. '\OCA\Files_Sharing\API\Server2Server',
  671. 'preLoginNameUsedAsUserName',
  672. '\OC\User\Database',
  673. 'preLoginNameUsedAsUserName'
  674. );
  675. //setup extra user backends
  676. if (!\OCP\Util::needUpgrade()) {
  677. OC_User::setupBackends();
  678. } else {
  679. // Run upgrades in incognito mode
  680. OC_User::setIncognitoMode(true);
  681. }
  682. self::registerCleanupHooks($systemConfig);
  683. self::registerShareHooks($systemConfig);
  684. self::registerEncryptionWrapperAndHooks();
  685. self::registerAccountHooks();
  686. self::registerResourceCollectionHooks();
  687. self::registerFileReferenceEventListener();
  688. self::registerRenderReferenceEventListener();
  689. self::registerAppRestrictionsHooks();
  690. // Make sure that the application class is not loaded before the database is setup
  691. if ($systemConfig->getValue("installed", false)) {
  692. OC_App::loadApp('settings');
  693. /* Build core application to make sure that listeners are registered */
  694. Server::get(\OC\Core\Application::class);
  695. }
  696. //make sure temporary files are cleaned up
  697. $tmpManager = Server::get(\OCP\ITempManager::class);
  698. register_shutdown_function([$tmpManager, 'clean']);
  699. $lockProvider = Server::get(\OCP\Lock\ILockingProvider::class);
  700. register_shutdown_function([$lockProvider, 'releaseAll']);
  701. // Check whether the sample configuration has been copied
  702. if ($systemConfig->getValue('copied_sample_config', false)) {
  703. $l = Server::get(\OCP\L10N\IFactory::class)->get('lib');
  704. OC_Template::printErrorPage(
  705. $l->t('Sample configuration detected'),
  706. $l->t('It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php'),
  707. 503
  708. );
  709. return;
  710. }
  711. $request = Server::get(IRequest::class);
  712. $host = $request->getInsecureServerHost();
  713. /**
  714. * if the host passed in headers isn't trusted
  715. * FIXME: Should not be in here at all :see_no_evil:
  716. */
  717. if (!OC::$CLI
  718. && !Server::get(\OC\Security\TrustedDomainHelper::class)->isTrustedDomain($host)
  719. && $config->getSystemValueBool('installed', false)
  720. ) {
  721. // Allow access to CSS resources
  722. $isScssRequest = false;
  723. if (strpos($request->getPathInfo() ?: '', '/css/') === 0) {
  724. $isScssRequest = true;
  725. }
  726. if (substr($request->getRequestUri(), -11) === '/status.php') {
  727. http_response_code(400);
  728. header('Content-Type: application/json');
  729. echo '{"error": "Trusted domain error.", "code": 15}';
  730. exit();
  731. }
  732. if (!$isScssRequest) {
  733. http_response_code(400);
  734. Server::get(LoggerInterface::class)->info(
  735. 'Trusted domain error. "{remoteAddress}" tried to access using "{host}" as host.',
  736. [
  737. 'app' => 'core',
  738. 'remoteAddress' => $request->getRemoteAddress(),
  739. 'host' => $host,
  740. ]
  741. );
  742. $tmpl = new OCP\Template('core', 'untrustedDomain', 'guest');
  743. $tmpl->assign('docUrl', Server::get(IURLGenerator::class)->linkToDocs('admin-trusted-domains'));
  744. $tmpl->printPage();
  745. exit();
  746. }
  747. }
  748. $eventLogger->end('boot');
  749. $eventLogger->log('init', 'OC::init', $loaderStart, microtime(true));
  750. $eventLogger->start('runtime', 'Runtime');
  751. $eventLogger->start('request', 'Full request after boot');
  752. register_shutdown_function(function () use ($eventLogger) {
  753. $eventLogger->end('request');
  754. });
  755. }
  756. /**
  757. * register hooks for the cleanup of cache and bruteforce protection
  758. */
  759. public static function registerCleanupHooks(\OC\SystemConfig $systemConfig): void {
  760. //don't try to do this before we are properly setup
  761. if ($systemConfig->getValue('installed', false) && !\OCP\Util::needUpgrade()) {
  762. // NOTE: This will be replaced to use OCP
  763. $userSession = Server::get(\OC\User\Session::class);
  764. $userSession->listen('\OC\User', 'postLogin', function () use ($userSession) {
  765. if (!defined('PHPUNIT_RUN') && $userSession->isLoggedIn()) {
  766. // reset brute force delay for this IP address and username
  767. $uid = $userSession->getUser()->getUID();
  768. $request = Server::get(IRequest::class);
  769. $throttler = Server::get(IThrottler::class);
  770. $throttler->resetDelay($request->getRemoteAddress(), 'login', ['user' => $uid]);
  771. }
  772. try {
  773. $cache = new \OC\Cache\File();
  774. $cache->gc();
  775. } catch (\OC\ServerNotAvailableException $e) {
  776. // not a GC exception, pass it on
  777. throw $e;
  778. } catch (\OC\ForbiddenException $e) {
  779. // filesystem blocked for this request, ignore
  780. } catch (\Exception $e) {
  781. // a GC exception should not prevent users from using OC,
  782. // so log the exception
  783. Server::get(LoggerInterface::class)->warning('Exception when running cache gc.', [
  784. 'app' => 'core',
  785. 'exception' => $e,
  786. ]);
  787. }
  788. });
  789. }
  790. }
  791. private static function registerEncryptionWrapperAndHooks(): void {
  792. $manager = Server::get(\OCP\Encryption\IManager::class);
  793. \OCP\Util::connectHook('OC_Filesystem', 'preSetup', $manager, 'setupStorage');
  794. $enabled = $manager->isEnabled();
  795. if ($enabled) {
  796. \OCP\Util::connectHook(Share::class, 'post_shared', HookManager::class, 'postShared');
  797. \OCP\Util::connectHook(Share::class, 'post_unshare', HookManager::class, 'postUnshared');
  798. \OCP\Util::connectHook('OC_Filesystem', 'post_rename', HookManager::class, 'postRename');
  799. \OCP\Util::connectHook('\OCA\Files_Trashbin\Trashbin', 'post_restore', HookManager::class, 'postRestore');
  800. }
  801. }
  802. private static function registerAccountHooks(): void {
  803. /** @var IEventDispatcher $dispatcher */
  804. $dispatcher = Server::get(IEventDispatcher::class);
  805. $dispatcher->addServiceListener(UserChangedEvent::class, \OC\Accounts\Hooks::class);
  806. }
  807. private static function registerAppRestrictionsHooks(): void {
  808. /** @var \OC\Group\Manager $groupManager */
  809. $groupManager = Server::get(\OCP\IGroupManager::class);
  810. $groupManager->listen('\OC\Group', 'postDelete', function (\OCP\IGroup $group) {
  811. $appManager = Server::get(\OCP\App\IAppManager::class);
  812. $apps = $appManager->getEnabledAppsForGroup($group);
  813. foreach ($apps as $appId) {
  814. $restrictions = $appManager->getAppRestriction($appId);
  815. if (empty($restrictions)) {
  816. continue;
  817. }
  818. $key = array_search($group->getGID(), $restrictions);
  819. unset($restrictions[$key]);
  820. $restrictions = array_values($restrictions);
  821. if (empty($restrictions)) {
  822. $appManager->disableApp($appId);
  823. } else {
  824. $appManager->enableAppForGroups($appId, $restrictions);
  825. }
  826. }
  827. });
  828. }
  829. private static function registerResourceCollectionHooks(): void {
  830. \OC\Collaboration\Resources\Listener::register(Server::get(IEventDispatcher::class));
  831. }
  832. private static function registerFileReferenceEventListener(): void {
  833. \OC\Collaboration\Reference\File\FileReferenceEventListener::register(Server::get(IEventDispatcher::class));
  834. }
  835. private static function registerRenderReferenceEventListener() {
  836. \OC\Collaboration\Reference\RenderReferenceEventListener::register(Server::get(IEventDispatcher::class));
  837. }
  838. /**
  839. * register hooks for sharing
  840. */
  841. public static function registerShareHooks(\OC\SystemConfig $systemConfig): void {
  842. if ($systemConfig->getValue('installed')) {
  843. OC_Hook::connect('OC_User', 'post_deleteUser', Hooks::class, 'post_deleteUser');
  844. OC_Hook::connect('OC_User', 'post_deleteGroup', Hooks::class, 'post_deleteGroup');
  845. /** @var IEventDispatcher $dispatcher */
  846. $dispatcher = Server::get(IEventDispatcher::class);
  847. $dispatcher->addServiceListener(UserRemovedEvent::class, \OC\Share20\UserRemovedListener::class);
  848. }
  849. }
  850. protected static function registerAutoloaderCache(\OC\SystemConfig $systemConfig): void {
  851. // The class loader takes an optional low-latency cache, which MUST be
  852. // namespaced. The instanceid is used for namespacing, but might be
  853. // unavailable at this point. Furthermore, it might not be possible to
  854. // generate an instanceid via \OC_Util::getInstanceId() because the
  855. // config file may not be writable. As such, we only register a class
  856. // loader cache if instanceid is available without trying to create one.
  857. $instanceId = $systemConfig->getValue('instanceid', null);
  858. if ($instanceId) {
  859. try {
  860. $memcacheFactory = Server::get(\OCP\ICacheFactory::class);
  861. self::$loader->setMemoryCache($memcacheFactory->createLocal('Autoloader'));
  862. } catch (\Exception $ex) {
  863. }
  864. }
  865. }
  866. /**
  867. * Handle the request
  868. */
  869. public static function handleRequest(): void {
  870. Server::get(\OCP\Diagnostics\IEventLogger::class)->start('handle_request', 'Handle request');
  871. $systemConfig = Server::get(\OC\SystemConfig::class);
  872. // Check if Nextcloud is installed or in maintenance (update) mode
  873. if (!$systemConfig->getValue('installed', false)) {
  874. \OC::$server->getSession()->clear();
  875. $controller = Server::get(\OC\Core\Controller\SetupController::class);
  876. $controller->run($_POST);
  877. exit();
  878. }
  879. $request = Server::get(IRequest::class);
  880. $requestPath = $request->getRawPathInfo();
  881. if ($requestPath === '/heartbeat') {
  882. return;
  883. }
  884. if (substr($requestPath, -3) !== '.js') { // we need these files during the upgrade
  885. self::checkMaintenanceMode($systemConfig);
  886. if (\OCP\Util::needUpgrade()) {
  887. if (function_exists('opcache_reset')) {
  888. opcache_reset();
  889. }
  890. if (!((bool) $systemConfig->getValue('maintenance', false))) {
  891. self::printUpgradePage($systemConfig);
  892. exit();
  893. }
  894. }
  895. }
  896. // Always load authentication apps
  897. OC_App::loadApps(['authentication']);
  898. OC_App::loadApps(['extended_authentication']);
  899. // Load minimum set of apps
  900. if (!\OCP\Util::needUpgrade()
  901. && !((bool) $systemConfig->getValue('maintenance', false))) {
  902. // For logged-in users: Load everything
  903. if (Server::get(IUserSession::class)->isLoggedIn()) {
  904. OC_App::loadApps();
  905. } else {
  906. // For guests: Load only filesystem and logging
  907. OC_App::loadApps(['filesystem', 'logging']);
  908. // Don't try to login when a client is trying to get a OAuth token.
  909. // OAuth needs to support basic auth too, so the login is not valid
  910. // inside Nextcloud and the Login exception would ruin it.
  911. if ($request->getRawPathInfo() !== '/apps/oauth2/api/v1/token') {
  912. self::handleLogin($request);
  913. }
  914. }
  915. }
  916. if (!self::$CLI) {
  917. try {
  918. if (!((bool) $systemConfig->getValue('maintenance', false)) && !\OCP\Util::needUpgrade()) {
  919. OC_App::loadApps(['filesystem', 'logging']);
  920. OC_App::loadApps();
  921. }
  922. Server::get(\OC\Route\Router::class)->match($request->getRawPathInfo());
  923. return;
  924. } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {
  925. //header('HTTP/1.0 404 Not Found');
  926. } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) {
  927. http_response_code(405);
  928. return;
  929. }
  930. }
  931. // Handle WebDAV
  932. if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PROPFIND') {
  933. // not allowed any more to prevent people
  934. // mounting this root directly.
  935. // Users need to mount remote.php/webdav instead.
  936. http_response_code(405);
  937. return;
  938. }
  939. // Handle requests for JSON or XML
  940. $acceptHeader = $request->getHeader('Accept');
  941. if (in_array($acceptHeader, ['application/json', 'application/xml'], true)) {
  942. http_response_code(404);
  943. return;
  944. }
  945. // Handle resources that can't be found
  946. // This prevents browsers from redirecting to the default page and then
  947. // attempting to parse HTML as CSS and similar.
  948. $destinationHeader = $request->getHeader('Sec-Fetch-Dest');
  949. if (in_array($destinationHeader, ['font', 'script', 'style'])) {
  950. http_response_code(404);
  951. return;
  952. }
  953. // Redirect to the default app or login only as an entry point
  954. if ($requestPath === '') {
  955. // Someone is logged in
  956. if (Server::get(IUserSession::class)->isLoggedIn()) {
  957. header('Location: ' . Server::get(IURLGenerator::class)->linkToDefaultPageUrl());
  958. } else {
  959. // Not handled and not logged in
  960. header('Location: ' . Server::get(IURLGenerator::class)->linkToRouteAbsolute('core.login.showLoginForm'));
  961. }
  962. return;
  963. }
  964. try {
  965. Server::get(\OC\Route\Router::class)->match('/error/404');
  966. } catch (\Exception $e) {
  967. if (!$e instanceof MethodNotAllowedException) {
  968. logger('core')->emergency($e->getMessage(), ['exception' => $e]);
  969. }
  970. $l = Server::get(\OCP\L10N\IFactory::class)->get('lib');
  971. OC_Template::printErrorPage(
  972. '404',
  973. $l->t('The page could not be found on the server.'),
  974. 404
  975. );
  976. }
  977. }
  978. /**
  979. * Check login: apache auth, auth token, basic auth
  980. */
  981. public static function handleLogin(OCP\IRequest $request): bool {
  982. if ($request->getHeader('X-Nextcloud-Federation')) {
  983. return false;
  984. }
  985. $userSession = Server::get(\OC\User\Session::class);
  986. if (OC_User::handleApacheAuth()) {
  987. return true;
  988. }
  989. if (self::tryAppAPILogin($request)) {
  990. return true;
  991. }
  992. if ($userSession->tryTokenLogin($request)) {
  993. return true;
  994. }
  995. if (isset($_COOKIE['nc_username'])
  996. && isset($_COOKIE['nc_token'])
  997. && isset($_COOKIE['nc_session_id'])
  998. && $userSession->loginWithCookie($_COOKIE['nc_username'], $_COOKIE['nc_token'], $_COOKIE['nc_session_id'])) {
  999. return true;
  1000. }
  1001. if ($userSession->tryBasicAuthLogin($request, Server::get(IThrottler::class))) {
  1002. return true;
  1003. }
  1004. return false;
  1005. }
  1006. protected static function handleAuthHeaders(): void {
  1007. //copy http auth headers for apache+php-fcgid work around
  1008. if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) {
  1009. $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION'];
  1010. }
  1011. // Extract PHP_AUTH_USER/PHP_AUTH_PW from other headers if necessary.
  1012. $vars = [
  1013. 'HTTP_AUTHORIZATION', // apache+php-cgi work around
  1014. 'REDIRECT_HTTP_AUTHORIZATION', // apache+php-cgi alternative
  1015. ];
  1016. foreach ($vars as $var) {
  1017. if (isset($_SERVER[$var]) && is_string($_SERVER[$var]) && preg_match('/Basic\s+(.*)$/i', $_SERVER[$var], $matches)) {
  1018. $credentials = explode(':', base64_decode($matches[1]), 2);
  1019. if (count($credentials) === 2) {
  1020. $_SERVER['PHP_AUTH_USER'] = $credentials[0];
  1021. $_SERVER['PHP_AUTH_PW'] = $credentials[1];
  1022. break;
  1023. }
  1024. }
  1025. }
  1026. }
  1027. protected static function tryAppAPILogin(OCP\IRequest $request): bool {
  1028. $appManager = Server::get(OCP\App\IAppManager::class);
  1029. if (!$request->getHeader('AUTHORIZATION-APP-API')) {
  1030. return false;
  1031. }
  1032. if (!$appManager->isInstalled('app_api')) {
  1033. return false;
  1034. }
  1035. try {
  1036. $appAPIService = Server::get(OCA\AppAPI\Service\AppAPIService::class);
  1037. return $appAPIService->validateExAppRequestToNC($request);
  1038. } catch (\Psr\Container\NotFoundExceptionInterface|\Psr\Container\ContainerExceptionInterface $e) {
  1039. return false;
  1040. }
  1041. }
  1042. }
  1043. OC::init();