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.

1091 lines
36 KiB

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