base.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. <?php
  2. /**
  3. * ownCloud
  4. *
  5. * @author Frank Karlitschek
  6. * @copyright 2012 Frank Karlitschek frank@owncloud.org
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  10. * License as published by the Free Software Foundation; either
  11. * version 3 of the License, or any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public
  19. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. require_once 'public/constants.php';
  23. /**
  24. * Class that is a namespace for all global OC variables
  25. * No, we can not put this class in its own file because it is used by
  26. * OC_autoload!
  27. */
  28. class OC {
  29. /**
  30. * Associative array for autoloading. classname => filename
  31. */
  32. public static $CLASSPATH = array();
  33. /**
  34. * The installation path for owncloud on the server (e.g. /srv/http/owncloud)
  35. */
  36. public static $SERVERROOT = '';
  37. /**
  38. * the current request path relative to the owncloud root (e.g. files/index.php)
  39. */
  40. private static $SUBURI = '';
  41. /**
  42. * the owncloud root path for http requests (e.g. owncloud/)
  43. */
  44. public static $WEBROOT = '';
  45. /**
  46. * The installation path of the 3rdparty folder on the server (e.g. /srv/http/owncloud/3rdparty)
  47. */
  48. public static $THIRDPARTYROOT = '';
  49. /**
  50. * the root path of the 3rdparty folder for http requests (e.g. owncloud/3rdparty)
  51. */
  52. public static $THIRDPARTYWEBROOT = '';
  53. /**
  54. * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and
  55. * web path in 'url'
  56. */
  57. public static $APPSROOTS = array();
  58. /*
  59. * requested app
  60. */
  61. public static $REQUESTEDAPP = '';
  62. /*
  63. * requested file of app
  64. */
  65. public static $REQUESTEDFILE = '';
  66. /**
  67. * check if owncloud runs in cli mode
  68. */
  69. public static $CLI = false;
  70. /*
  71. * OC router
  72. */
  73. protected static $router = null;
  74. /**
  75. * @var \OC\Session\Session
  76. */
  77. public static $session = null;
  78. /**
  79. * @var \OC\Autoloader $loader
  80. */
  81. public static $loader = null;
  82. /**
  83. * @var \OC\Server
  84. */
  85. public static $server = null;
  86. public static function initPaths() {
  87. // calculate the root directories
  88. OC::$SERVERROOT = str_replace("\\", '/', substr(__DIR__, 0, -4));
  89. // ensure we can find OC_Config
  90. set_include_path(
  91. OC::$SERVERROOT . '/lib' . PATH_SEPARATOR .
  92. get_include_path()
  93. );
  94. OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT)));
  95. $scriptName = OC_Request::scriptName();
  96. if (substr($scriptName, -1) == '/') {
  97. $scriptName .= 'index.php';
  98. //make sure suburi follows the same rules as scriptName
  99. if (substr(OC::$SUBURI, -9) != 'index.php') {
  100. if (substr(OC::$SUBURI, -1) != '/') {
  101. OC::$SUBURI = OC::$SUBURI . '/';
  102. }
  103. OC::$SUBURI = OC::$SUBURI . 'index.php';
  104. }
  105. }
  106. OC::$WEBROOT = substr($scriptName, 0, strlen($scriptName) - strlen(OC::$SUBURI));
  107. if (OC::$WEBROOT != '' and OC::$WEBROOT[0] !== '/') {
  108. OC::$WEBROOT = '/' . OC::$WEBROOT;
  109. }
  110. // search the 3rdparty folder
  111. if (OC_Config::getValue('3rdpartyroot', '') <> '' and OC_Config::getValue('3rdpartyurl', '') <> '') {
  112. OC::$THIRDPARTYROOT = OC_Config::getValue('3rdpartyroot', '');
  113. OC::$THIRDPARTYWEBROOT = OC_Config::getValue('3rdpartyurl', '');
  114. } elseif (file_exists(OC::$SERVERROOT . '/3rdparty')) {
  115. OC::$THIRDPARTYROOT = OC::$SERVERROOT;
  116. OC::$THIRDPARTYWEBROOT = OC::$WEBROOT;
  117. } elseif (file_exists(OC::$SERVERROOT . '/../3rdparty')) {
  118. OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/');
  119. OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/');
  120. } else {
  121. throw new Exception('3rdparty directory not found! Please put the ownCloud 3rdparty'
  122. .' folder in the ownCloud folder or the folder above.'
  123. .' You can also configure the location in the config.php file.');
  124. }
  125. // search the apps folder
  126. $config_paths = OC_Config::getValue('apps_paths', array());
  127. if (!empty($config_paths)) {
  128. foreach ($config_paths as $paths) {
  129. if (isset($paths['url']) && isset($paths['path'])) {
  130. $paths['url'] = rtrim($paths['url'], '/');
  131. $paths['path'] = rtrim($paths['path'], '/');
  132. OC::$APPSROOTS[] = $paths;
  133. }
  134. }
  135. } elseif (file_exists(OC::$SERVERROOT . '/apps')) {
  136. OC::$APPSROOTS[] = array('path' => OC::$SERVERROOT . '/apps', 'url' => '/apps', 'writable' => true);
  137. } elseif (file_exists(OC::$SERVERROOT . '/../apps')) {
  138. OC::$APPSROOTS[] = array(
  139. 'path' => rtrim(dirname(OC::$SERVERROOT), '/') . '/apps',
  140. 'url' => '/apps',
  141. 'writable' => true
  142. );
  143. }
  144. if (empty(OC::$APPSROOTS)) {
  145. throw new Exception('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder'
  146. .' or the folder above. You can also configure the location in the config.php file.');
  147. }
  148. $paths = array();
  149. foreach (OC::$APPSROOTS as $path) {
  150. $paths[] = $path['path'];
  151. }
  152. // set the right include path
  153. set_include_path(
  154. OC::$SERVERROOT . '/lib/private' . PATH_SEPARATOR .
  155. OC::$SERVERROOT . '/config' . PATH_SEPARATOR .
  156. OC::$THIRDPARTYROOT . '/3rdparty' . PATH_SEPARATOR .
  157. implode($paths, PATH_SEPARATOR) . PATH_SEPARATOR .
  158. get_include_path() . PATH_SEPARATOR .
  159. OC::$SERVERROOT
  160. );
  161. }
  162. public static function checkConfig() {
  163. if (file_exists(OC::$SERVERROOT . "/config/config.php")
  164. and !is_writable(OC::$SERVERROOT . "/config/config.php")) {
  165. $defaults = new OC_Defaults();
  166. OC_Template::printErrorPage(
  167. "Can't write into config directory!",
  168. 'This can usually be fixed by '
  169. .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the config directory</a>.'
  170. );
  171. }
  172. }
  173. public static function checkInstalled() {
  174. // Redirect to installer if not installed
  175. if (!OC_Config::getValue('installed', false) && OC::$SUBURI != '/index.php') {
  176. if (!OC::$CLI) {
  177. $url = 'http://' . $_SERVER['SERVER_NAME'] . OC::$WEBROOT . '/index.php';
  178. header("Location: $url");
  179. }
  180. exit();
  181. }
  182. }
  183. public static function checkSSL() {
  184. // redirect to https site if configured
  185. if (OC_Config::getValue("forcessl", false)) {
  186. header('Strict-Transport-Security: max-age=31536000');
  187. ini_set("session.cookie_secure", "on");
  188. if (OC_Request::serverProtocol() <> 'https' and !OC::$CLI) {
  189. $url = "https://" . OC_Request::serverHost() . OC_Request::requestUri();
  190. header("Location: $url");
  191. exit();
  192. }
  193. } else {
  194. // Invalidate HSTS headers
  195. if (OC_Request::serverProtocol() === 'https') {
  196. header('Strict-Transport-Security: max-age=0');
  197. }
  198. }
  199. }
  200. public static function checkMaintenanceMode() {
  201. // Allow ajax update script to execute without being stopped
  202. if (OC_Config::getValue('maintenance', false) && OC::$SUBURI != '/core/ajax/update.php') {
  203. // send http status 503
  204. header('HTTP/1.1 503 Service Temporarily Unavailable');
  205. header('Status: 503 Service Temporarily Unavailable');
  206. header('Retry-After: 120');
  207. // render error page
  208. OC_Template::printErrorPage('ownCloud is in maintenance mode');
  209. }
  210. }
  211. public static function checkUpgrade($showTemplate = true) {
  212. if (OC_Config::getValue('installed', false)) {
  213. $installedVersion = OC_Config::getValue('version', '0.0.0');
  214. $currentVersion = implode('.', OC_Util::getVersion());
  215. if (version_compare($currentVersion, $installedVersion, '>')) {
  216. if ($showTemplate && !OC_Config::getValue('maintenance', false)) {
  217. OC_Config::setValue('theme', '');
  218. $minimizerCSS = new OC_Minimizer_CSS();
  219. $minimizerCSS->clearCache();
  220. $minimizerJS = new OC_Minimizer_JS();
  221. $minimizerJS->clearCache();
  222. OC_Util::addscript('update');
  223. $tmpl = new OC_Template('', 'update', 'guest');
  224. $tmpl->assign('version', OC_Util::getVersionString());
  225. $tmpl->printPage();
  226. exit();
  227. } else {
  228. return true;
  229. }
  230. }
  231. return false;
  232. }
  233. }
  234. public static function initTemplateEngine() {
  235. // Add the stuff we need always
  236. OC_Util::addScript("jquery-1.10.0.min");
  237. OC_Util::addScript("jquery-migrate-1.2.1.min");
  238. OC_Util::addScript("jquery-ui-1.10.0.custom");
  239. OC_Util::addScript("jquery-showpassword");
  240. OC_Util::addScript("jquery.infieldlabel");
  241. OC_Util::addScript("jquery-tipsy");
  242. OC_Util::addScript("compatibility");
  243. OC_Util::addScript("jquery.ocdialog");
  244. OC_Util::addScript("oc-dialogs");
  245. OC_Util::addScript("js");
  246. OC_Util::addScript("octemplate");
  247. OC_Util::addScript("eventsource");
  248. OC_Util::addScript("config");
  249. //OC_Util::addScript( "multiselect" );
  250. OC_Util::addScript('search', 'result');
  251. OC_Util::addScript('router');
  252. OC_Util::addScript("oc-requesttoken");
  253. // avatars
  254. if (\OC_Config::getValue('enable_avatars', true) === true) {
  255. \OC_Util::addScript('placeholder');
  256. \OC_Util::addScript('3rdparty', 'md5/md5.min');
  257. \OC_Util::addScript('jquery.avatar');
  258. \OC_Util::addScript('avatar');
  259. }
  260. OC_Util::addStyle("styles");
  261. OC_Util::addStyle("apps");
  262. OC_Util::addStyle("fixes");
  263. OC_Util::addStyle("multiselect");
  264. OC_Util::addStyle("jquery-ui-1.10.0.custom");
  265. OC_Util::addStyle("jquery-tipsy");
  266. OC_Util::addStyle("jquery.ocdialog");
  267. }
  268. public static function initSession() {
  269. // prevents javascript from accessing php session cookies
  270. ini_set('session.cookie_httponly', '1;');
  271. // set the cookie path to the ownCloud directory
  272. $cookie_path = OC::$WEBROOT ? : '/';
  273. ini_set('session.cookie_path', $cookie_path);
  274. //set the session object to a dummy session so code relying on the session existing still works
  275. self::$session = new \OC\Session\Memory('');
  276. try {
  277. // set the session name to the instance id - which is unique
  278. self::$session = new \OC\Session\Internal(OC_Util::getInstanceId());
  279. // if session cant be started break with http 500 error
  280. } catch (Exception $e) {
  281. OC_Log::write('core', 'Session could not be initialized',
  282. OC_Log::ERROR);
  283. header('HTTP/1.1 500 Internal Server Error');
  284. OC_Util::addStyle("styles");
  285. $error = 'Session could not be initialized. Please contact your ';
  286. $error .= 'system administrator';
  287. OC_Template::printErrorPage($error);
  288. }
  289. $sessionLifeTime = self::getSessionLifeTime();
  290. // regenerate session id periodically to avoid session fixation
  291. if (!self::$session->exists('SID_CREATED')) {
  292. self::$session->set('SID_CREATED', time());
  293. } else if (time() - self::$session->get('SID_CREATED') > $sessionLifeTime / 2) {
  294. session_regenerate_id(true);
  295. self::$session->set('SID_CREATED', time());
  296. }
  297. // session timeout
  298. if (self::$session->exists('LAST_ACTIVITY') && (time() - self::$session->get('LAST_ACTIVITY') > $sessionLifeTime)) {
  299. if (isset($_COOKIE[session_name()])) {
  300. setcookie(session_name(), '', time() - 42000, $cookie_path);
  301. }
  302. session_unset();
  303. session_destroy();
  304. session_start();
  305. }
  306. self::$session->set('LAST_ACTIVITY', time());
  307. }
  308. /**
  309. * @return int
  310. */
  311. private static function getSessionLifeTime() {
  312. return OC_Config::getValue('session_lifetime', 60 * 60 * 24);
  313. }
  314. public static function getRouter() {
  315. if (!isset(OC::$router)) {
  316. OC::$router = new OC_Router();
  317. OC::$router->loadRoutes();
  318. }
  319. return OC::$router;
  320. }
  321. public static function loadAppClassPaths() {
  322. foreach (OC_APP::getEnabledApps() as $app) {
  323. $file = OC_App::getAppPath($app) . '/appinfo/classpath.php';
  324. if (file_exists($file)) {
  325. require_once $file;
  326. }
  327. }
  328. }
  329. public static function init() {
  330. // register autoloader
  331. require_once __DIR__ . '/autoloader.php';
  332. self::$loader = new \OC\Autoloader();
  333. self::$loader->registerPrefix('Doctrine\\Common', 'doctrine/common/lib');
  334. self::$loader->registerPrefix('Doctrine\\DBAL', 'doctrine/dbal/lib');
  335. self::$loader->registerPrefix('Symfony\\Component\\Routing', 'symfony/routing');
  336. self::$loader->registerPrefix('Symfony\\Component\\Console', 'symfony/console');
  337. self::$loader->registerPrefix('Sabre\\VObject', '3rdparty');
  338. self::$loader->registerPrefix('Sabre_', '3rdparty');
  339. self::$loader->registerPrefix('Patchwork', '3rdparty');
  340. spl_autoload_register(array(self::$loader, 'load'));
  341. // set some stuff
  342. //ob_start();
  343. error_reporting(E_ALL | E_STRICT);
  344. if (defined('DEBUG') && DEBUG) {
  345. ini_set('display_errors', 1);
  346. }
  347. self::$CLI = (php_sapi_name() == 'cli');
  348. date_default_timezone_set('UTC');
  349. ini_set('arg_separator.output', '&amp;');
  350. // try to switch magic quotes off.
  351. if (get_magic_quotes_gpc() == 1) {
  352. ini_set('magic_quotes_runtime', 0);
  353. }
  354. //try to configure php to enable big file uploads.
  355. //this doesn´t work always depending on the webserver and php configuration.
  356. //Let´s try to overwrite some defaults anyways
  357. //try to set the maximum execution time to 60min
  358. @set_time_limit(3600);
  359. @ini_set('max_execution_time', 3600);
  360. @ini_set('max_input_time', 3600);
  361. //try to set the maximum filesize to 10G
  362. @ini_set('upload_max_filesize', '10G');
  363. @ini_set('post_max_size', '10G');
  364. @ini_set('file_uploads', '50');
  365. //copy http auth headers for apache+php-fcgid work around
  366. if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) {
  367. $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION'];
  368. }
  369. //set http auth headers for apache+php-cgi work around
  370. if (isset($_SERVER['HTTP_AUTHORIZATION'])
  371. && preg_match('/Basic\s+(.*)$/i', $_SERVER['HTTP_AUTHORIZATION'], $matches)
  372. ) {
  373. list($name, $password) = explode(':', base64_decode($matches[1]), 2);
  374. $_SERVER['PHP_AUTH_USER'] = strip_tags($name);
  375. $_SERVER['PHP_AUTH_PW'] = strip_tags($password);
  376. }
  377. //set http auth headers for apache+php-cgi work around if variable gets renamed by apache
  378. if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])
  379. && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)
  380. ) {
  381. list($name, $password) = explode(':', base64_decode($matches[1]), 2);
  382. $_SERVER['PHP_AUTH_USER'] = strip_tags($name);
  383. $_SERVER['PHP_AUTH_PW'] = strip_tags($password);
  384. }
  385. self::initPaths();
  386. OC_Util::isSetLocaleWorking();
  387. // set debug mode if an xdebug session is active
  388. if (!defined('DEBUG') || !DEBUG) {
  389. if (isset($_COOKIE['XDEBUG_SESSION'])) {
  390. define('DEBUG', true);
  391. }
  392. }
  393. if (!defined('PHPUNIT_RUN')) {
  394. if (defined('DEBUG') and DEBUG) {
  395. set_exception_handler(array('OC_Template', 'printExceptionErrorPage'));
  396. } else {
  397. OC\Log\ErrorHandler::register();
  398. OC\Log\ErrorHandler::setLogger(OC_Log::$object);
  399. }
  400. }
  401. // register the stream wrappers
  402. stream_wrapper_register('fakedir', 'OC\Files\Stream\Dir');
  403. stream_wrapper_register('static', 'OC\Files\Stream\StaticStream');
  404. stream_wrapper_register('close', 'OC\Files\Stream\Close');
  405. stream_wrapper_register('quota', 'OC\Files\Stream\Quota');
  406. stream_wrapper_register('oc', 'OC\Files\Stream\OC');
  407. // setup the basic server
  408. self::$server = new \OC\Server();
  409. self::initTemplateEngine();
  410. if (!self::$CLI) {
  411. self::initSession();
  412. } else {
  413. self::$session = new \OC\Session\Memory('');
  414. }
  415. self::checkConfig();
  416. self::checkInstalled();
  417. self::checkSSL();
  418. $errors = OC_Util::checkServer();
  419. if (count($errors) > 0) {
  420. OC_Template::printGuestPage('', 'error', array('errors' => $errors));
  421. exit;
  422. }
  423. //try to set the session lifetime
  424. $sessionLifeTime = self::getSessionLifeTime();
  425. @ini_set('gc_maxlifetime', (string)$sessionLifeTime);
  426. // User and Groups
  427. if (!OC_Config::getValue("installed", false)) {
  428. self::$session->set('user_id', '');
  429. }
  430. OC_User::useBackend(new OC_User_Database());
  431. OC_Group::useBackend(new OC_Group_Database());
  432. if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id')
  433. && $_SERVER['PHP_AUTH_USER'] != self::$session->get('user_id')) {
  434. OC_User::logout();
  435. }
  436. // Load Apps
  437. // This includes plugins for users and filesystems as well
  438. global $RUNTIME_NOAPPS;
  439. global $RUNTIME_APPTYPES;
  440. if (!$RUNTIME_NOAPPS) {
  441. if ($RUNTIME_APPTYPES) {
  442. OC_App::loadApps($RUNTIME_APPTYPES);
  443. } else {
  444. OC_App::loadApps();
  445. }
  446. }
  447. //setup extra user backends
  448. OC_User::setupBackends();
  449. self::registerCacheHooks();
  450. self::registerFilesystemHooks();
  451. self::registerPreviewHooks();
  452. self::registerShareHooks();
  453. self::registerLogRotate();
  454. //make sure temporary files are cleaned up
  455. register_shutdown_function(array('OC_Helper', 'cleanTmp'));
  456. //parse the given parameters
  457. self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app']) ? OC_App::cleanAppId(strip_tags($_GET['app'])) : OC_Config::getValue('defaultapp', 'files'));
  458. if (substr_count(self::$REQUESTEDAPP, '?') != 0) {
  459. $app = substr(self::$REQUESTEDAPP, 0, strpos(self::$REQUESTEDAPP, '?'));
  460. $param = substr($_GET['app'], strpos($_GET['app'], '?') + 1);
  461. parse_str($param, $get);
  462. $_GET = array_merge($_GET, $get);
  463. self::$REQUESTEDAPP = $app;
  464. $_GET['app'] = $app;
  465. }
  466. self::$REQUESTEDFILE = (isset($_GET['getfile']) ? $_GET['getfile'] : null);
  467. if (substr_count(self::$REQUESTEDFILE, '?') != 0) {
  468. $file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?'));
  469. $param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1);
  470. parse_str($param, $get);
  471. $_GET = array_merge($_GET, $get);
  472. self::$REQUESTEDFILE = $file;
  473. $_GET['getfile'] = $file;
  474. }
  475. if (!is_null(self::$REQUESTEDFILE)) {
  476. $subdir = OC_App::getAppPath(OC::$REQUESTEDAPP) . '/' . self::$REQUESTEDFILE;
  477. $parent = OC_App::getAppPath(OC::$REQUESTEDAPP);
  478. if (!OC_Helper::issubdirectory($subdir, $parent)) {
  479. self::$REQUESTEDFILE = null;
  480. header('HTTP/1.0 404 Not Found');
  481. exit;
  482. }
  483. }
  484. // write error into log if locale can't be set
  485. if (OC_Util::isSetLocaleWorking() == false) {
  486. OC_Log::write('core',
  487. 'setting locale to en_US.UTF-8/en_US.UTF8 failed. Support is probably not installed on your system',
  488. OC_Log::ERROR);
  489. }
  490. if (OC_Config::getValue('installed', false) && !self::checkUpgrade(false)) {
  491. if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') {
  492. OC_Util::addScript('backgroundjobs');
  493. }
  494. }
  495. }
  496. /**
  497. * register hooks for the cache
  498. */
  499. public static function registerCacheHooks() {
  500. if (OC_Config::getValue('installed', false)) { //don't try to do this before we are properly setup
  501. // register cache cleanup jobs
  502. try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception
  503. \OCP\BackgroundJob::registerJob('OC\Cache\FileGlobalGC');
  504. } catch (Exception $e) {
  505. }
  506. // NOTE: This will be replaced to use OCP
  507. $userSession = \OC_User::getUserSession();
  508. $userSession->listen('postLogin', '\OC\Cache\File', 'loginListener');
  509. }
  510. }
  511. /**
  512. * register hooks for the cache
  513. */
  514. public static function registerLogRotate() {
  515. if (OC_Config::getValue('installed', false) && OC_Config::getValue('log_rotate_size', false)) {
  516. //don't try to do this before we are properly setup
  517. // register cache cleanup jobs
  518. try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception
  519. \OCP\BackgroundJob::registerJob('OC\Log\Rotate', OC_Config::getValue("datadirectory", OC::$SERVERROOT.'/data').'/owncloud.log');
  520. } catch (Exception $e) {
  521. }
  522. }
  523. }
  524. /**
  525. * register hooks for the filesystem
  526. */
  527. public static function registerFilesystemHooks() {
  528. // Check for blacklisted files
  529. OC_Hook::connect('OC_Filesystem', 'write', 'OC_Filesystem', 'isBlacklisted');
  530. OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted');
  531. }
  532. /**
  533. * register hooks for previews
  534. */
  535. public static function registerPreviewHooks() {
  536. OC_Hook::connect('OC_Filesystem', 'post_write', 'OC\Preview', 'post_write');
  537. OC_Hook::connect('OC_Filesystem', 'delete', 'OC\Preview', 'post_delete');
  538. }
  539. /**
  540. * register hooks for sharing
  541. */
  542. public static function registerShareHooks() {
  543. if(\OC_Config::getValue('installed')) {
  544. OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser');
  545. OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup');
  546. OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup');
  547. OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup');
  548. }
  549. }
  550. /**
  551. * @brief Handle the request
  552. */
  553. public static function handleRequest() {
  554. // load all the classpaths from the enabled apps so they are available
  555. // in the routing files of each app
  556. OC::loadAppClassPaths();
  557. // Check if ownCloud is installed or in maintenance (update) mode
  558. if (!OC_Config::getValue('installed', false)) {
  559. require_once 'core/setup.php';
  560. exit();
  561. }
  562. $request = OC_Request::getPathInfo();
  563. if(substr($request, -3) !== '.js') {// we need these files during the upgrade
  564. self::checkMaintenanceMode();
  565. self::checkUpgrade();
  566. }
  567. // Test it the user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
  568. OC::tryBasicAuthLogin();
  569. if (!self::$CLI) {
  570. try {
  571. if (!OC_Config::getValue('maintenance', false)) {
  572. OC_App::loadApps();
  573. }
  574. OC::getRouter()->match(OC_Request::getRawPathInfo());
  575. return;
  576. } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {
  577. //header('HTTP/1.0 404 Not Found');
  578. } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) {
  579. OC_Response::setStatus(405);
  580. return;
  581. }
  582. }
  583. $app = OC::$REQUESTEDAPP;
  584. $file = OC::$REQUESTEDFILE;
  585. $param = array('app' => $app, 'file' => $file);
  586. // Handle app css files
  587. if (substr($file, -3) == 'css') {
  588. self::loadCSSFile($param);
  589. return;
  590. }
  591. // Handle redirect URL for logged in users
  592. if (isset($_REQUEST['redirect_url']) && OC_User::isLoggedIn()) {
  593. $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url']));
  594. // Deny the redirect if the URL contains a @
  595. // This prevents unvalidated redirects like ?redirect_url=:user@domain.com
  596. if (strpos($location, '@') === false) {
  597. header('Location: ' . $location);
  598. return;
  599. }
  600. }
  601. // Handle WebDAV
  602. if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND') {
  603. header('location: ' . OC_Helper::linkToRemote('webdav'));
  604. return;
  605. }
  606. // Someone is logged in :
  607. if (OC_User::isLoggedIn()) {
  608. OC_App::loadApps();
  609. OC_User::setupBackends();
  610. if (isset($_GET["logout"]) and ($_GET["logout"])) {
  611. if (isset($_COOKIE['oc_token'])) {
  612. OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']);
  613. }
  614. OC_User::logout();
  615. header("Location: " . OC::$WEBROOT . '/');
  616. } else {
  617. if (is_null($file)) {
  618. $param['file'] = 'index.php';
  619. }
  620. $file_ext = substr($param['file'], -3);
  621. if ($file_ext != 'php'
  622. || !self::loadAppScriptFile($param)
  623. ) {
  624. header('HTTP/1.0 404 Not Found');
  625. }
  626. }
  627. return;
  628. }
  629. // Not handled and not logged in
  630. self::handleLogin();
  631. }
  632. public static function loadAppScriptFile($param) {
  633. OC_App::loadApps();
  634. $app = $param['app'];
  635. $file = $param['file'];
  636. $app_path = OC_App::getAppPath($app);
  637. if (OC_App::isEnabled($app) && $app_path !== false) {
  638. $file = $app_path . '/' . $file;
  639. unset($app, $app_path);
  640. if (file_exists($file)) {
  641. require_once $file;
  642. return true;
  643. }
  644. }
  645. header('HTTP/1.0 404 Not Found');
  646. return false;
  647. }
  648. public static function loadCSSFile($param) {
  649. $app = $param['app'];
  650. $file = $param['file'];
  651. $app_path = OC_App::getAppPath($app);
  652. if (file_exists($app_path . '/' . $file)) {
  653. $app_web_path = OC_App::getAppWebPath($app);
  654. $filepath = $app_web_path . '/' . $file;
  655. $minimizer = new OC_Minimizer_CSS();
  656. $info = array($app_path, $app_web_path, $file);
  657. $minimizer->output(array($info), $filepath);
  658. }
  659. }
  660. protected static function handleLogin() {
  661. OC_App::loadApps(array('prelogin'));
  662. $error = array();
  663. // remember was checked after last login
  664. if (OC::tryRememberLogin()) {
  665. $error[] = 'invalidcookie';
  666. // Someone wants to log in :
  667. } elseif (OC::tryFormLogin()) {
  668. $error[] = 'invalidpassword';
  669. }
  670. OC_Util::displayLoginPage(array_unique($error));
  671. }
  672. protected static function cleanupLoginTokens($user) {
  673. $cutoff = time() - OC_Config::getValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15);
  674. $tokens = OC_Preferences::getKeys($user, 'login_token');
  675. foreach ($tokens as $token) {
  676. $time = OC_Preferences::getValue($user, 'login_token', $token);
  677. if ($time < $cutoff) {
  678. OC_Preferences::deleteKey($user, 'login_token', $token);
  679. }
  680. }
  681. }
  682. protected static function tryRememberLogin() {
  683. if (!isset($_COOKIE["oc_remember_login"])
  684. || !isset($_COOKIE["oc_token"])
  685. || !isset($_COOKIE["oc_username"])
  686. || !$_COOKIE["oc_remember_login"]
  687. || !OC_Util::rememberLoginAllowed()
  688. ) {
  689. return false;
  690. }
  691. OC_App::loadApps(array('authentication'));
  692. if (defined("DEBUG") && DEBUG) {
  693. OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG);
  694. }
  695. // confirm credentials in cookie
  696. if (isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username'])) {
  697. // delete outdated cookies
  698. self::cleanupLoginTokens($_COOKIE['oc_username']);
  699. // get stored tokens
  700. $tokens = OC_Preferences::getKeys($_COOKIE['oc_username'], 'login_token');
  701. // test cookies token against stored tokens
  702. if (in_array($_COOKIE['oc_token'], $tokens, true)) {
  703. // replace successfully used token with a new one
  704. OC_Preferences::deleteKey($_COOKIE['oc_username'], 'login_token', $_COOKIE['oc_token']);
  705. $token = OC_Util::generateRandomBytes(32);
  706. OC_Preferences::setValue($_COOKIE['oc_username'], 'login_token', $token, time());
  707. OC_User::setMagicInCookie($_COOKIE['oc_username'], $token);
  708. // login
  709. OC_User::setUserId($_COOKIE['oc_username']);
  710. OC_Util::redirectToDefaultPage();
  711. // doesn't return
  712. }
  713. // if you reach this point you have changed your password
  714. // or you are an attacker
  715. // we can not delete tokens here because users may reach
  716. // this point multiple times after a password change
  717. OC_Log::write('core', 'Authentication cookie rejected for user ' . $_COOKIE['oc_username'], OC_Log::WARN);
  718. }
  719. OC_User::unsetMagicInCookie();
  720. return true;
  721. }
  722. protected static function tryFormLogin() {
  723. if (!isset($_POST["user"]) || !isset($_POST['password'])) {
  724. return false;
  725. }
  726. OC_App::loadApps();
  727. //setup extra user backends
  728. OC_User::setupBackends();
  729. if (OC_User::login($_POST["user"], $_POST["password"])) {
  730. // setting up the time zone
  731. if (isset($_POST['timezone-offset'])) {
  732. self::$session->set('timezone', $_POST['timezone-offset']);
  733. }
  734. $userid = OC_User::getUser();
  735. self::cleanupLoginTokens($userid);
  736. if (!empty($_POST["remember_login"])) {
  737. if (defined("DEBUG") && DEBUG) {
  738. OC_Log::write('core', 'Setting remember login to cookie', OC_Log::DEBUG);
  739. }
  740. $token = OC_Util::generateRandomBytes(32);
  741. OC_Preferences::setValue($userid, 'login_token', $token, time());
  742. OC_User::setMagicInCookie($userid, $token);
  743. } else {
  744. OC_User::unsetMagicInCookie();
  745. }
  746. OC_Util::redirectToDefaultPage();
  747. exit();
  748. }
  749. return true;
  750. }
  751. protected static function tryBasicAuthLogin() {
  752. if (!isset($_SERVER["PHP_AUTH_USER"])
  753. || !isset($_SERVER["PHP_AUTH_PW"])
  754. ) {
  755. return false;
  756. }
  757. OC_App::loadApps(array('authentication'));
  758. if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) {
  759. //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG);
  760. OC_User::unsetMagicInCookie();
  761. $_SERVER['HTTP_REQUESTTOKEN'] = OC_Util::callRegister();
  762. }
  763. return true;
  764. }
  765. }
  766. // define runtime variables - unless this already has been done
  767. if (!isset($RUNTIME_NOAPPS)) {
  768. $RUNTIME_NOAPPS = false;
  769. }
  770. if (!function_exists('get_temp_dir')) {
  771. function get_temp_dir() {
  772. if ($temp = ini_get('upload_tmp_dir')) return $temp;
  773. if ($temp = getenv('TMP')) return $temp;
  774. if ($temp = getenv('TEMP')) return $temp;
  775. if ($temp = getenv('TMPDIR')) return $temp;
  776. $temp = tempnam(__FILE__, '');
  777. if (file_exists($temp)) {
  778. unlink($temp);
  779. return dirname($temp);
  780. }
  781. if ($temp = sys_get_temp_dir()) return $temp;
  782. return null;
  783. }
  784. }
  785. OC::init();