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.

base.php 36KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092
  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 <pvince81@owncloud.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\Group\Events\UserRemovedEvent;
  64. use OCP\ILogger;
  65. use OCP\Share;
  66. use OC\Encryption\HookManager;
  67. use OC\Files\Filesystem;
  68. use OC\Share20\Hooks;
  69. require_once 'public/Constants.php';
  70. /**
  71. * Class that is a namespace for all global OC variables
  72. * No, we can not put this class in its own file because it is used by
  73. * OC_autoload!
  74. */
  75. class OC {
  76. /**
  77. * Associative array for autoloading. classname => filename
  78. */
  79. public static $CLASSPATH = [];
  80. /**
  81. * The installation path for Nextcloud on the server (e.g. /srv/http/nextcloud)
  82. */
  83. public static $SERVERROOT = '';
  84. /**
  85. * the current request path relative to the Nextcloud root (e.g. files/index.php)
  86. */
  87. private static $SUBURI = '';
  88. /**
  89. * the Nextcloud root path for http requests (e.g. nextcloud/)
  90. */
  91. public static $WEBROOT = '';
  92. /**
  93. * The installation path array of the apps folder on the server (e.g. /srv/http/nextcloud) 'path' and
  94. * web path in 'url'
  95. */
  96. public static $APPSROOTS = [];
  97. /**
  98. * @var string
  99. */
  100. public static $configDir;
  101. /**
  102. * requested app
  103. */
  104. public static $REQUESTEDAPP = '';
  105. /**
  106. * check if Nextcloud runs in cli mode
  107. */
  108. public static $CLI = false;
  109. /**
  110. * @var \OC\Autoloader $loader
  111. */
  112. public static $loader = null;
  113. /** @var \Composer\Autoload\ClassLoader $composerAutoloader */
  114. public static $composerAutoloader = null;
  115. /**
  116. * @var \OC\Server
  117. */
  118. public static $server = null;
  119. /**
  120. * @var \OC\Config
  121. */
  122. private static $config = null;
  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() {
  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. * \OC::$server->getRequest() since \OC::$server does not yet exist.
  142. */
  143. $params = [
  144. 'server' => [
  145. 'SCRIPT_NAME' => $_SERVER['SCRIPT_NAME'],
  146. 'SCRIPT_FILENAME' => $_SERVER['SCRIPT_FILENAME'],
  147. ],
  148. ];
  149. $fakeRequest = new \OC\AppFramework\Http\Request($params, null, new \OC\AllConfig(new \OC\SystemConfig(self::$config)));
  150. $scriptName = $fakeRequest->getScriptName();
  151. if (substr($scriptName, -1) == '/') {
  152. $scriptName .= 'index.php';
  153. //make sure suburi follows the same rules as scriptName
  154. if (substr(OC::$SUBURI, -9) != 'index.php') {
  155. if (substr(OC::$SUBURI, -1) != '/') {
  156. OC::$SUBURI = OC::$SUBURI . '/';
  157. }
  158. OC::$SUBURI = OC::$SUBURI . 'index.php';
  159. }
  160. }
  161. if (OC::$CLI) {
  162. OC::$WEBROOT = self::$config->getValue('overwritewebroot', '');
  163. } else {
  164. if (substr($scriptName, 0 - strlen(OC::$SUBURI)) === OC::$SUBURI) {
  165. OC::$WEBROOT = substr($scriptName, 0, 0 - strlen(OC::$SUBURI));
  166. if (OC::$WEBROOT != '' && OC::$WEBROOT[0] !== '/') {
  167. OC::$WEBROOT = '/' . OC::$WEBROOT;
  168. }
  169. } else {
  170. // The scriptName is not ending with OC::$SUBURI
  171. // This most likely means that we are calling from CLI.
  172. // However some cron jobs still need to generate
  173. // a web URL, so we use overwritewebroot as a fallback.
  174. OC::$WEBROOT = self::$config->getValue('overwritewebroot', '');
  175. }
  176. // Resolve /nextcloud to /nextcloud/ to ensure to always have a trailing
  177. // slash which is required by URL generation.
  178. if (isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI'] === \OC::$WEBROOT &&
  179. substr($_SERVER['REQUEST_URI'], -1) !== '/') {
  180. header('Location: '.\OC::$WEBROOT.'/');
  181. exit();
  182. }
  183. }
  184. // search the apps folder
  185. $config_paths = self::$config->getValue('apps_paths', []);
  186. if (!empty($config_paths)) {
  187. foreach ($config_paths as $paths) {
  188. if (isset($paths['url']) && isset($paths['path'])) {
  189. $paths['url'] = rtrim($paths['url'], '/');
  190. $paths['path'] = rtrim($paths['path'], '/');
  191. OC::$APPSROOTS[] = $paths;
  192. }
  193. }
  194. } elseif (file_exists(OC::$SERVERROOT . '/apps')) {
  195. OC::$APPSROOTS[] = ['path' => OC::$SERVERROOT . '/apps', 'url' => '/apps', 'writable' => true];
  196. } elseif (file_exists(OC::$SERVERROOT . '/../apps')) {
  197. OC::$APPSROOTS[] = [
  198. 'path' => rtrim(dirname(OC::$SERVERROOT), '/') . '/apps',
  199. 'url' => '/apps',
  200. 'writable' => true
  201. ];
  202. }
  203. if (empty(OC::$APPSROOTS)) {
  204. throw new \RuntimeException('apps directory not found! Please put the Nextcloud apps folder in the Nextcloud folder'
  205. . ' or the folder above. You can also configure the location in the config.php file.');
  206. }
  207. $paths = [];
  208. foreach (OC::$APPSROOTS as $path) {
  209. $paths[] = $path['path'];
  210. if (!is_dir($path['path'])) {
  211. throw new \RuntimeException(sprintf('App directory "%s" not found! Please put the Nextcloud apps folder in the'
  212. . ' Nextcloud folder or the folder above. You can also configure the location in the'
  213. . ' 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() {
  222. $l = \OC::$server->getL10N('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 = \OC::$server->getURLGenerator();
  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 webserver write access to the config directory')."\n";
  236. echo "\n";
  237. 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";
  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 webserver write access to the config directory.') . '. '
  244. . $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',
  245. [ $urlGenerator->linkToDocs('admin-config') ]),
  246. 503
  247. );
  248. }
  249. }
  250. }
  251. public static function checkInstalled() {
  252. if (defined('OC_CONSOLE')) {
  253. return;
  254. }
  255. // Redirect to installer if not installed
  256. if (!\OC::$server->getSystemConfig()->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() {
  267. // Allow ajax update script to execute without being stopped
  268. if (((bool) \OC::$server->getSystemConfig()->getValue('maintenance', false)) && OC::$SUBURI != '/core/ajax/update.php') {
  269. // send http status 503
  270. http_response_code(503);
  271. header('Retry-After: 120');
  272. // render error page
  273. $template = new OC_Template('', 'update.user', 'guest');
  274. OC_Util::addScript('dist/maintenance');
  275. OC_Util::addStyle('core', 'guest');
  276. $template->printPage();
  277. die();
  278. }
  279. }
  280. /**
  281. * Prints the upgrade page
  282. *
  283. * @param \OC\SystemConfig $systemConfig
  284. */
  285. private static function printUpgradePage(\OC\SystemConfig $systemConfig) {
  286. $disableWebUpdater = $systemConfig->getValue('upgrade.disable-web', false);
  287. $tooBig = false;
  288. if (!$disableWebUpdater) {
  289. $apps = \OC::$server->getAppManager();
  290. if ($apps->isInstalled('user_ldap')) {
  291. $qb = \OC::$server->getDatabaseConnection()->getQueryBuilder();
  292. $result = $qb->select($qb->func()->count('*', 'user_count'))
  293. ->from('ldap_user_mapping')
  294. ->execute();
  295. $row = $result->fetch();
  296. $result->closeCursor();
  297. $tooBig = ($row['user_count'] > 50);
  298. }
  299. if (!$tooBig && $apps->isInstalled('user_saml')) {
  300. $qb = \OC::$server->getDatabaseConnection()->getQueryBuilder();
  301. $result = $qb->select($qb->func()->count('*', 'user_count'))
  302. ->from('user_saml_users')
  303. ->execute();
  304. $row = $result->fetch();
  305. $result->closeCursor();
  306. $tooBig = ($row['user_count'] > 50);
  307. }
  308. if (!$tooBig) {
  309. // count users
  310. $stats = \OC::$server->getUserManager()->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->printPage();
  327. die();
  328. }
  329. // check whether this is a core update or apps update
  330. $installedVersion = $systemConfig->getValue('version', '0.0.0');
  331. $currentVersion = implode('.', \OCP\Util::getVersion());
  332. // if not a core upgrade, then it's apps upgrade
  333. $isAppsOnlyUpgrade = version_compare($currentVersion, $installedVersion, '=');
  334. $oldTheme = $systemConfig->getValue('theme');
  335. $systemConfig->setValue('theme', '');
  336. OC_Util::addScript('config'); // needed for web root
  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->runRegistration();
  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 = new \OC\Accounts\Hooks(\OC::$server->getLogger());
  750. \OCP\Util::connectHook('OC_User', 'changeUser', $hookHandler, 'changeUserHook');
  751. }
  752. private static function registerAppRestrictionsHooks() {
  753. $groupManager = self::$server->query(\OCP\IGroupManager::class);
  754. $groupManager->listen('\OC\Group', 'postDelete', function (\OCP\IGroup $group) {
  755. $appManager = self::$server->getAppManager();
  756. $apps = $appManager->getEnabledAppsForGroup($group);
  757. foreach ($apps as $appId) {
  758. $restrictions = $appManager->getAppRestriction($appId);
  759. if (empty($restrictions)) {
  760. continue;
  761. }
  762. $key = array_search($group->getGID(), $restrictions);
  763. unset($restrictions[$key]);
  764. $restrictions = array_values($restrictions);
  765. if (empty($restrictions)) {
  766. $appManager->disableApp($appId);
  767. } else {
  768. $appManager->enableAppForGroups($appId, $restrictions);
  769. }
  770. }
  771. });
  772. }
  773. private static function registerResourceCollectionHooks() {
  774. \OC\Collaboration\Resources\Listener::register(\OC::$server->getEventDispatcher());
  775. }
  776. /**
  777. * register hooks for the filesystem
  778. */
  779. public static function registerFilesystemHooks() {
  780. // Check for blacklisted files
  781. OC_Hook::connect('OC_Filesystem', 'write', Filesystem::class, 'isBlacklisted');
  782. OC_Hook::connect('OC_Filesystem', 'rename', Filesystem::class, 'isBlacklisted');
  783. }
  784. /**
  785. * register hooks for sharing
  786. */
  787. public static function registerShareHooks() {
  788. if (\OC::$server->getSystemConfig()->getValue('installed')) {
  789. OC_Hook::connect('OC_User', 'post_deleteUser', Hooks::class, 'post_deleteUser');
  790. OC_Hook::connect('OC_User', 'post_removeFromGroup', Hooks::class, 'post_removeFromGroupLDAP');
  791. OC_Hook::connect('OC_User', 'post_deleteGroup', Hooks::class, 'post_deleteGroup');
  792. /** @var \OCP\EventDispatcher\IEventDispatcher $dispatcher */
  793. $dispatcher = \OC::$server->get(\OCP\EventDispatcher\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->getIniWrapper(),
  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_Util::setupFS();
  888. OC::$server->getRouter()->match(\OC::$server->getRequest()->getRawPathInfo());
  889. return;
  890. } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {
  891. //header('HTTP/1.0 404 Not Found');
  892. } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) {
  893. http_response_code(405);
  894. return;
  895. }
  896. }
  897. // Handle WebDAV
  898. if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PROPFIND') {
  899. // not allowed any more to prevent people
  900. // mounting this root directly.
  901. // Users need to mount remote.php/webdav instead.
  902. http_response_code(405);
  903. return;
  904. }
  905. // Someone is logged in
  906. if (\OC::$server->getUserSession()->isLoggedIn()) {
  907. OC_App::loadApps();
  908. OC_User::setupBackends();
  909. OC_Util::setupFS();
  910. // FIXME
  911. // Redirect to default application
  912. OC_Util::redirectToDefaultPage();
  913. } else {
  914. // Not handled and not logged in
  915. header('Location: '.\OC::$server->getURLGenerator()->linkToRouteAbsolute('core.login.showLoginForm'));
  916. }
  917. }
  918. /**
  919. * Check login: apache auth, auth token, basic auth
  920. *
  921. * @param OCP\IRequest $request
  922. * @return boolean
  923. */
  924. public static function handleLogin(OCP\IRequest $request) {
  925. $userSession = self::$server->getUserSession();
  926. if (OC_User::handleApacheAuth()) {
  927. return true;
  928. }
  929. if ($userSession->tryTokenLogin($request)) {
  930. return true;
  931. }
  932. if (isset($_COOKIE['nc_username'])
  933. && isset($_COOKIE['nc_token'])
  934. && isset($_COOKIE['nc_session_id'])
  935. && $userSession->loginWithCookie($_COOKIE['nc_username'], $_COOKIE['nc_token'], $_COOKIE['nc_session_id'])) {
  936. return true;
  937. }
  938. if ($userSession->tryBasicAuthLogin($request, \OC::$server->getBruteForceThrottler())) {
  939. return true;
  940. }
  941. return false;
  942. }
  943. protected static function handleAuthHeaders() {
  944. //copy http auth headers for apache+php-fcgid work around
  945. if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) {
  946. $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION'];
  947. }
  948. // Extract PHP_AUTH_USER/PHP_AUTH_PW from other headers if necessary.
  949. $vars = [
  950. 'HTTP_AUTHORIZATION', // apache+php-cgi work around
  951. 'REDIRECT_HTTP_AUTHORIZATION', // apache+php-cgi alternative
  952. ];
  953. foreach ($vars as $var) {
  954. if (isset($_SERVER[$var]) && preg_match('/Basic\s+(.*)$/i', $_SERVER[$var], $matches)) {
  955. $credentials = explode(':', base64_decode($matches[1]), 2);
  956. if (count($credentials) === 2) {
  957. $_SERVER['PHP_AUTH_USER'] = $credentials[0];
  958. $_SERVER['PHP_AUTH_PW'] = $credentials[1];
  959. break;
  960. }
  961. }
  962. }
  963. }
  964. }
  965. OC::init();