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

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