View.php 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Ashod Nakashian <ashod.nakashian@collabora.co.uk>
  7. * @author Bart Visscher <bartv@thisnet.nl>
  8. * @author Björn Schießle <bjoern@schiessle.org>
  9. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  10. * @author Florin Peter <github@florin-peter.de>
  11. * @author Jesús Macias <jmacias@solidgear.es>
  12. * @author Joas Schilling <coding@schilljs.com>
  13. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  14. * @author Julius Härtl <jus@bitgrid.net>
  15. * @author karakayasemi <karakayasemi@itu.edu.tr>
  16. * @author Klaas Freitag <freitag@owncloud.com>
  17. * @author korelstar <korelstar@users.noreply.github.com>
  18. * @author Lukas Reschke <lukas@statuscode.ch>
  19. * @author Luke Policinski <lpolicinski@gmail.com>
  20. * @author Michael Gapczynski <GapczynskiM@gmail.com>
  21. * @author Morris Jobke <hey@morrisjobke.de>
  22. * @author Piotr Filiciak <piotr@filiciak.pl>
  23. * @author Robin Appelman <robin@icewind.nl>
  24. * @author Robin McCorkell <robin@mccorkell.me.uk>
  25. * @author Roeland Jago Douma <roeland@famdouma.nl>
  26. * @author Sam Tuke <mail@samtuke.com>
  27. * @author Scott Dutton <exussum12@users.noreply.github.com>
  28. * @author Thomas Müller <thomas.mueller@tmit.eu>
  29. * @author Thomas Tanghus <thomas@tanghus.net>
  30. * @author Vincent Petry <vincent@nextcloud.com>
  31. *
  32. * @license AGPL-3.0
  33. *
  34. * This code is free software: you can redistribute it and/or modify
  35. * it under the terms of the GNU Affero General Public License, version 3,
  36. * as published by the Free Software Foundation.
  37. *
  38. * This program is distributed in the hope that it will be useful,
  39. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  40. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  41. * GNU Affero General Public License for more details.
  42. *
  43. * You should have received a copy of the GNU Affero General Public License, version 3,
  44. * along with this program. If not, see <http://www.gnu.org/licenses/>
  45. *
  46. */
  47. namespace OC\Files;
  48. use Icewind\Streams\CallbackWrapper;
  49. use OC\Files\Mount\MoveableMount;
  50. use OC\Files\Storage\Storage;
  51. use OC\User\LazyUser;
  52. use OC\Share\Share;
  53. use OC\User\User;
  54. use OC\User\Manager as UserManager;
  55. use OCA\Files_Sharing\SharedMount;
  56. use OCP\Constants;
  57. use OCP\Files\Cache\ICacheEntry;
  58. use OCP\Files\ConnectionLostException;
  59. use OCP\Files\EmptyFileNameException;
  60. use OCP\Files\FileNameTooLongException;
  61. use OCP\Files\ForbiddenException;
  62. use OCP\Files\InvalidCharacterInPathException;
  63. use OCP\Files\InvalidDirectoryException;
  64. use OCP\Files\InvalidPathException;
  65. use OCP\Files\Mount\IMountPoint;
  66. use OCP\Files\NotFoundException;
  67. use OCP\Files\ReservedWordException;
  68. use OCP\Files\Storage\IStorage;
  69. use OCP\IUser;
  70. use OCP\Lock\ILockingProvider;
  71. use OCP\Lock\LockedException;
  72. use Psr\Log\LoggerInterface;
  73. /**
  74. * Class to provide access to ownCloud filesystem via a "view", and methods for
  75. * working with files within that view (e.g. read, write, delete, etc.). Each
  76. * view is restricted to a set of directories via a virtual root. The default view
  77. * uses the currently logged in user's data directory as root (parts of
  78. * OC_Filesystem are merely a wrapper for OC\Files\View).
  79. *
  80. * Apps that need to access files outside of the user data folders (to modify files
  81. * belonging to a user other than the one currently logged in, for example) should
  82. * use this class directly rather than using OC_Filesystem, or making use of PHP's
  83. * built-in file manipulation functions. This will ensure all hooks and proxies
  84. * are triggered correctly.
  85. *
  86. * Filesystem functions are not called directly; they are passed to the correct
  87. * \OC\Files\Storage\Storage object
  88. */
  89. class View {
  90. private string $fakeRoot = '';
  91. private ILockingProvider $lockingProvider;
  92. private bool $lockingEnabled;
  93. private bool $updaterEnabled = true;
  94. private UserManager $userManager;
  95. private LoggerInterface $logger;
  96. /**
  97. * @throws \Exception If $root contains an invalid path
  98. */
  99. public function __construct(string $root = '') {
  100. if (!Filesystem::isValidPath($root)) {
  101. throw new \Exception();
  102. }
  103. $this->fakeRoot = $root;
  104. $this->lockingProvider = \OC::$server->getLockingProvider();
  105. $this->lockingEnabled = !($this->lockingProvider instanceof \OC\Lock\NoopLockingProvider);
  106. $this->userManager = \OC::$server->getUserManager();
  107. $this->logger = \OC::$server->get(LoggerInterface::class);
  108. }
  109. /**
  110. * @param ?string $path
  111. * @psalm-template S as string|null
  112. * @psalm-param S $path
  113. * @psalm-return (S is string ? string : null)
  114. */
  115. public function getAbsolutePath($path = '/'): ?string {
  116. if ($path === null) {
  117. return null;
  118. }
  119. $this->assertPathLength($path);
  120. if ($path === '') {
  121. $path = '/';
  122. }
  123. if ($path[0] !== '/') {
  124. $path = '/' . $path;
  125. }
  126. return $this->fakeRoot . $path;
  127. }
  128. /**
  129. * Change the root to a fake root
  130. *
  131. * @param string $fakeRoot
  132. */
  133. public function chroot($fakeRoot): void {
  134. if (!$fakeRoot == '') {
  135. if ($fakeRoot[0] !== '/') {
  136. $fakeRoot = '/' . $fakeRoot;
  137. }
  138. }
  139. $this->fakeRoot = $fakeRoot;
  140. }
  141. /**
  142. * Get the fake root
  143. */
  144. public function getRoot(): string {
  145. return $this->fakeRoot;
  146. }
  147. /**
  148. * get path relative to the root of the view
  149. *
  150. * @param string $path
  151. */
  152. public function getRelativePath($path): ?string {
  153. $this->assertPathLength($path);
  154. if ($this->fakeRoot == '') {
  155. return $path;
  156. }
  157. if (rtrim($path, '/') === rtrim($this->fakeRoot, '/')) {
  158. return '/';
  159. }
  160. // missing slashes can cause wrong matches!
  161. $root = rtrim($this->fakeRoot, '/') . '/';
  162. if (strpos($path, $root) !== 0) {
  163. return null;
  164. } else {
  165. $path = substr($path, strlen($this->fakeRoot));
  166. if (strlen($path) === 0) {
  167. return '/';
  168. } else {
  169. return $path;
  170. }
  171. }
  172. }
  173. /**
  174. * Get the mountpoint of the storage object for a path
  175. * ( note: because a storage is not always mounted inside the fakeroot, the
  176. * returned mountpoint is relative to the absolute root of the filesystem
  177. * and does not take the chroot into account )
  178. *
  179. * @param string $path
  180. */
  181. public function getMountPoint($path): string {
  182. return Filesystem::getMountPoint($this->getAbsolutePath($path));
  183. }
  184. /**
  185. * Get the mountpoint of the storage object for a path
  186. * ( note: because a storage is not always mounted inside the fakeroot, the
  187. * returned mountpoint is relative to the absolute root of the filesystem
  188. * and does not take the chroot into account )
  189. *
  190. * @param string $path
  191. */
  192. public function getMount($path): IMountPoint {
  193. return Filesystem::getMountManager()->find($this->getAbsolutePath($path));
  194. }
  195. /**
  196. * Resolve a path to a storage and internal path
  197. *
  198. * @param string $path
  199. * @return array{?\OCP\Files\Storage\IStorage, string} an array consisting of the storage and the internal path
  200. */
  201. public function resolvePath($path): array {
  202. $a = $this->getAbsolutePath($path);
  203. $p = Filesystem::normalizePath($a);
  204. return Filesystem::resolvePath($p);
  205. }
  206. /**
  207. * Return the path to a local version of the file
  208. * we need this because we can't know if a file is stored local or not from
  209. * outside the filestorage and for some purposes a local file is needed
  210. *
  211. * @param string $path
  212. */
  213. public function getLocalFile($path): string|false {
  214. $parent = substr($path, 0, strrpos($path, '/') ?: 0);
  215. $path = $this->getAbsolutePath($path);
  216. [$storage, $internalPath] = Filesystem::resolvePath($path);
  217. if (Filesystem::isValidPath($parent) && $storage) {
  218. return $storage->getLocalFile($internalPath);
  219. } else {
  220. return false;
  221. }
  222. }
  223. /**
  224. * the following functions operate with arguments and return values identical
  225. * to those of their PHP built-in equivalents. Mostly they are merely wrappers
  226. * for \OC\Files\Storage\Storage via basicOperation().
  227. */
  228. public function mkdir($path) {
  229. return $this->basicOperation('mkdir', $path, ['create', 'write']);
  230. }
  231. /**
  232. * remove mount point
  233. *
  234. * @param IMountPoint $mount
  235. * @param string $path relative to data/
  236. */
  237. protected function removeMount($mount, $path): bool {
  238. if ($mount instanceof MoveableMount) {
  239. // cut of /user/files to get the relative path to data/user/files
  240. $pathParts = explode('/', $path, 4);
  241. $relPath = '/' . $pathParts[3];
  242. $this->lockFile($relPath, ILockingProvider::LOCK_SHARED, true);
  243. \OC_Hook::emit(
  244. Filesystem::CLASSNAME, "umount",
  245. [Filesystem::signal_param_path => $relPath]
  246. );
  247. $this->changeLock($relPath, ILockingProvider::LOCK_EXCLUSIVE, true);
  248. $result = $mount->removeMount();
  249. $this->changeLock($relPath, ILockingProvider::LOCK_SHARED, true);
  250. if ($result) {
  251. \OC_Hook::emit(
  252. Filesystem::CLASSNAME, "post_umount",
  253. [Filesystem::signal_param_path => $relPath]
  254. );
  255. }
  256. $this->unlockFile($relPath, ILockingProvider::LOCK_SHARED, true);
  257. return $result;
  258. } else {
  259. // do not allow deleting the storage's root / the mount point
  260. // because for some storages it might delete the whole contents
  261. // but isn't supposed to work that way
  262. return false;
  263. }
  264. }
  265. public function disableCacheUpdate(): void {
  266. $this->updaterEnabled = false;
  267. }
  268. public function enableCacheUpdate(): void {
  269. $this->updaterEnabled = true;
  270. }
  271. protected function writeUpdate(Storage $storage, string $internalPath, ?int $time = null, ?int $sizeDifference = null): void {
  272. if ($this->updaterEnabled) {
  273. if (is_null($time)) {
  274. $time = time();
  275. }
  276. $storage->getUpdater()->update($internalPath, $time, $sizeDifference);
  277. }
  278. }
  279. protected function removeUpdate(Storage $storage, string $internalPath): void {
  280. if ($this->updaterEnabled) {
  281. $storage->getUpdater()->remove($internalPath);
  282. }
  283. }
  284. protected function renameUpdate(Storage $sourceStorage, Storage $targetStorage, string $sourceInternalPath, string $targetInternalPath): void {
  285. if ($this->updaterEnabled) {
  286. $targetStorage->getUpdater()->renameFromStorage($sourceStorage, $sourceInternalPath, $targetInternalPath);
  287. }
  288. }
  289. /**
  290. * @param string $path
  291. * @return bool|mixed
  292. */
  293. public function rmdir($path) {
  294. $absolutePath = $this->getAbsolutePath($path);
  295. $mount = Filesystem::getMountManager()->find($absolutePath);
  296. if ($mount->getInternalPath($absolutePath) === '') {
  297. return $this->removeMount($mount, $absolutePath);
  298. }
  299. if ($this->is_dir($path)) {
  300. $result = $this->basicOperation('rmdir', $path, ['delete']);
  301. } else {
  302. $result = false;
  303. }
  304. if (!$result && !$this->file_exists($path)) { //clear ghost files from the cache on delete
  305. $storage = $mount->getStorage();
  306. $internalPath = $mount->getInternalPath($absolutePath);
  307. $storage->getUpdater()->remove($internalPath);
  308. }
  309. return $result;
  310. }
  311. /**
  312. * @param string $path
  313. * @return resource|false
  314. */
  315. public function opendir($path) {
  316. return $this->basicOperation('opendir', $path, ['read']);
  317. }
  318. /**
  319. * @param string $path
  320. * @return bool|mixed
  321. */
  322. public function is_dir($path) {
  323. if ($path == '/') {
  324. return true;
  325. }
  326. return $this->basicOperation('is_dir', $path);
  327. }
  328. /**
  329. * @param string $path
  330. * @return bool|mixed
  331. */
  332. public function is_file($path) {
  333. if ($path == '/') {
  334. return false;
  335. }
  336. return $this->basicOperation('is_file', $path);
  337. }
  338. /**
  339. * @param string $path
  340. * @return mixed
  341. */
  342. public function stat($path) {
  343. return $this->basicOperation('stat', $path);
  344. }
  345. /**
  346. * @param string $path
  347. * @return mixed
  348. */
  349. public function filetype($path) {
  350. return $this->basicOperation('filetype', $path);
  351. }
  352. /**
  353. * @param string $path
  354. * @return mixed
  355. */
  356. public function filesize(string $path) {
  357. return $this->basicOperation('filesize', $path);
  358. }
  359. /**
  360. * @param string $path
  361. * @return bool|mixed
  362. * @throws InvalidPathException
  363. */
  364. public function readfile($path) {
  365. $this->assertPathLength($path);
  366. if (ob_get_level()) {
  367. ob_end_clean();
  368. }
  369. $handle = $this->fopen($path, 'rb');
  370. if ($handle) {
  371. $chunkSize = 524288; // 512 kiB chunks
  372. while (!feof($handle)) {
  373. echo fread($handle, $chunkSize);
  374. flush();
  375. $this->checkConnectionStatus();
  376. }
  377. fclose($handle);
  378. return $this->filesize($path);
  379. }
  380. return false;
  381. }
  382. /**
  383. * @param string $path
  384. * @param int $from
  385. * @param int $to
  386. * @return bool|mixed
  387. * @throws InvalidPathException
  388. * @throws \OCP\Files\UnseekableException
  389. */
  390. public function readfilePart($path, $from, $to) {
  391. $this->assertPathLength($path);
  392. if (ob_get_level()) {
  393. ob_end_clean();
  394. }
  395. $handle = $this->fopen($path, 'rb');
  396. if ($handle) {
  397. $chunkSize = 524288; // 512 kiB chunks
  398. $startReading = true;
  399. if ($from !== 0 && $from !== '0' && fseek($handle, $from) !== 0) {
  400. // forward file handle via chunked fread because fseek seem to have failed
  401. $end = $from + 1;
  402. while (!feof($handle) && ftell($handle) < $end && ftell($handle) !== $from) {
  403. $len = $from - ftell($handle);
  404. if ($len > $chunkSize) {
  405. $len = $chunkSize;
  406. }
  407. $result = fread($handle, $len);
  408. if ($result === false) {
  409. $startReading = false;
  410. break;
  411. }
  412. }
  413. }
  414. if ($startReading) {
  415. $end = $to + 1;
  416. while (!feof($handle) && ftell($handle) < $end) {
  417. $len = $end - ftell($handle);
  418. if ($len > $chunkSize) {
  419. $len = $chunkSize;
  420. }
  421. echo fread($handle, $len);
  422. flush();
  423. $this->checkConnectionStatus();
  424. }
  425. return ftell($handle) - $from;
  426. }
  427. throw new \OCP\Files\UnseekableException('fseek error');
  428. }
  429. return false;
  430. }
  431. private function checkConnectionStatus(): void {
  432. $connectionStatus = \connection_status();
  433. if ($connectionStatus !== CONNECTION_NORMAL) {
  434. throw new ConnectionLostException("Connection lost. Status: $connectionStatus");
  435. }
  436. }
  437. /**
  438. * @param string $path
  439. * @return mixed
  440. */
  441. public function isCreatable($path) {
  442. return $this->basicOperation('isCreatable', $path);
  443. }
  444. /**
  445. * @param string $path
  446. * @return mixed
  447. */
  448. public function isReadable($path) {
  449. return $this->basicOperation('isReadable', $path);
  450. }
  451. /**
  452. * @param string $path
  453. * @return mixed
  454. */
  455. public function isUpdatable($path) {
  456. return $this->basicOperation('isUpdatable', $path);
  457. }
  458. /**
  459. * @param string $path
  460. * @return bool|mixed
  461. */
  462. public function isDeletable($path) {
  463. $absolutePath = $this->getAbsolutePath($path);
  464. $mount = Filesystem::getMountManager()->find($absolutePath);
  465. if ($mount->getInternalPath($absolutePath) === '') {
  466. return $mount instanceof MoveableMount;
  467. }
  468. return $this->basicOperation('isDeletable', $path);
  469. }
  470. /**
  471. * @param string $path
  472. * @return mixed
  473. */
  474. public function isSharable($path) {
  475. return $this->basicOperation('isSharable', $path);
  476. }
  477. /**
  478. * @param string $path
  479. * @return bool|mixed
  480. */
  481. public function file_exists($path) {
  482. if ($path == '/') {
  483. return true;
  484. }
  485. return $this->basicOperation('file_exists', $path);
  486. }
  487. /**
  488. * @param string $path
  489. * @return mixed
  490. */
  491. public function filemtime($path) {
  492. return $this->basicOperation('filemtime', $path);
  493. }
  494. /**
  495. * @param string $path
  496. * @param int|string $mtime
  497. */
  498. public function touch($path, $mtime = null): bool {
  499. if (!is_null($mtime) && !is_numeric($mtime)) {
  500. $mtime = strtotime($mtime);
  501. }
  502. $hooks = ['touch'];
  503. if (!$this->file_exists($path)) {
  504. $hooks[] = 'create';
  505. $hooks[] = 'write';
  506. }
  507. try {
  508. $result = $this->basicOperation('touch', $path, $hooks, $mtime);
  509. } catch (\Exception $e) {
  510. $this->logger->info('Error while setting modified time', ['app' => 'core', 'exception' => $e]);
  511. $result = false;
  512. }
  513. if (!$result) {
  514. // If create file fails because of permissions on external storage like SMB folders,
  515. // check file exists and return false if not.
  516. if (!$this->file_exists($path)) {
  517. return false;
  518. }
  519. if (is_null($mtime)) {
  520. $mtime = time();
  521. }
  522. //if native touch fails, we emulate it by changing the mtime in the cache
  523. $this->putFileInfo($path, ['mtime' => floor($mtime)]);
  524. }
  525. return true;
  526. }
  527. /**
  528. * @param string $path
  529. * @return string|false
  530. * @throws LockedException
  531. */
  532. public function file_get_contents($path) {
  533. return $this->basicOperation('file_get_contents', $path, ['read']);
  534. }
  535. protected function emit_file_hooks_pre(bool $exists, string $path, bool &$run): void {
  536. if (!$exists) {
  537. \OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_create, [
  538. Filesystem::signal_param_path => $this->getHookPath($path),
  539. Filesystem::signal_param_run => &$run,
  540. ]);
  541. } else {
  542. \OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_update, [
  543. Filesystem::signal_param_path => $this->getHookPath($path),
  544. Filesystem::signal_param_run => &$run,
  545. ]);
  546. }
  547. \OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_write, [
  548. Filesystem::signal_param_path => $this->getHookPath($path),
  549. Filesystem::signal_param_run => &$run,
  550. ]);
  551. }
  552. protected function emit_file_hooks_post(bool $exists, string $path): void {
  553. if (!$exists) {
  554. \OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_create, [
  555. Filesystem::signal_param_path => $this->getHookPath($path),
  556. ]);
  557. } else {
  558. \OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_update, [
  559. Filesystem::signal_param_path => $this->getHookPath($path),
  560. ]);
  561. }
  562. \OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_write, [
  563. Filesystem::signal_param_path => $this->getHookPath($path),
  564. ]);
  565. }
  566. /**
  567. * @param string $path
  568. * @param string|resource $data
  569. * @return bool|mixed
  570. * @throws LockedException
  571. */
  572. public function file_put_contents($path, $data) {
  573. if (is_resource($data)) { //not having to deal with streams in file_put_contents makes life easier
  574. $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  575. if (Filesystem::isValidPath($path)
  576. && !Filesystem::isFileBlacklisted($path)
  577. ) {
  578. $path = $this->getRelativePath($absolutePath);
  579. if ($path === null) {
  580. throw new InvalidPathException("Path $absolutePath is not in the expected root");
  581. }
  582. $this->lockFile($path, ILockingProvider::LOCK_SHARED);
  583. $exists = $this->file_exists($path);
  584. $run = true;
  585. if ($this->shouldEmitHooks($path)) {
  586. $this->emit_file_hooks_pre($exists, $path, $run);
  587. }
  588. if (!$run) {
  589. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  590. return false;
  591. }
  592. try {
  593. $this->changeLock($path, ILockingProvider::LOCK_EXCLUSIVE);
  594. } catch (\Exception $e) {
  595. // Release the shared lock before throwing.
  596. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  597. throw $e;
  598. }
  599. /** @var Storage $storage */
  600. [$storage, $internalPath] = $this->resolvePath($path);
  601. $target = $storage->fopen($internalPath, 'w');
  602. if ($target) {
  603. [, $result] = \OC_Helper::streamCopy($data, $target);
  604. fclose($target);
  605. fclose($data);
  606. $this->writeUpdate($storage, $internalPath);
  607. $this->changeLock($path, ILockingProvider::LOCK_SHARED);
  608. if ($this->shouldEmitHooks($path) && $result !== false) {
  609. $this->emit_file_hooks_post($exists, $path);
  610. }
  611. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  612. return $result;
  613. } else {
  614. $this->unlockFile($path, ILockingProvider::LOCK_EXCLUSIVE);
  615. return false;
  616. }
  617. } else {
  618. return false;
  619. }
  620. } else {
  621. $hooks = $this->file_exists($path) ? ['update', 'write'] : ['create', 'write'];
  622. return $this->basicOperation('file_put_contents', $path, $hooks, $data);
  623. }
  624. }
  625. /**
  626. * @param string $path
  627. * @return bool|mixed
  628. */
  629. public function unlink($path) {
  630. if ($path === '' || $path === '/') {
  631. // do not allow deleting the root
  632. return false;
  633. }
  634. $postFix = (substr($path, -1) === '/') ? '/' : '';
  635. $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  636. $mount = Filesystem::getMountManager()->find($absolutePath . $postFix);
  637. if ($mount->getInternalPath($absolutePath) === '') {
  638. return $this->removeMount($mount, $absolutePath);
  639. }
  640. if ($this->is_dir($path)) {
  641. $result = $this->basicOperation('rmdir', $path, ['delete']);
  642. } else {
  643. $result = $this->basicOperation('unlink', $path, ['delete']);
  644. }
  645. if (!$result && !$this->file_exists($path)) { //clear ghost files from the cache on delete
  646. $storage = $mount->getStorage();
  647. $internalPath = $mount->getInternalPath($absolutePath);
  648. $storage->getUpdater()->remove($internalPath);
  649. return true;
  650. } else {
  651. return $result;
  652. }
  653. }
  654. /**
  655. * @param string $directory
  656. * @return bool|mixed
  657. */
  658. public function deleteAll($directory) {
  659. return $this->rmdir($directory);
  660. }
  661. /**
  662. * Rename/move a file or folder from the source path to target path.
  663. *
  664. * @param string $source source path
  665. * @param string $target target path
  666. *
  667. * @return bool|mixed
  668. * @throws LockedException
  669. */
  670. public function rename($source, $target) {
  671. $absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($source));
  672. $absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($target));
  673. if (str_starts_with($absolutePath2, $absolutePath1 . '/')) {
  674. throw new ForbiddenException("Moving a folder into a child folder is forbidden", false);
  675. }
  676. $result = false;
  677. if (
  678. Filesystem::isValidPath($target)
  679. && Filesystem::isValidPath($source)
  680. && !Filesystem::isFileBlacklisted($target)
  681. ) {
  682. $source = $this->getRelativePath($absolutePath1);
  683. $target = $this->getRelativePath($absolutePath2);
  684. $exists = $this->file_exists($target);
  685. if ($source == null || $target == null) {
  686. return false;
  687. }
  688. $this->lockFile($source, ILockingProvider::LOCK_SHARED, true);
  689. try {
  690. $this->lockFile($target, ILockingProvider::LOCK_SHARED, true);
  691. $run = true;
  692. if ($this->shouldEmitHooks($source) && (Cache\Scanner::isPartialFile($source) && !Cache\Scanner::isPartialFile($target))) {
  693. // if it was a rename from a part file to a regular file it was a write and not a rename operation
  694. $this->emit_file_hooks_pre($exists, $target, $run);
  695. } elseif ($this->shouldEmitHooks($source)) {
  696. $sourcePath = $this->getHookPath($source);
  697. $targetPath = $this->getHookPath($target);
  698. if ($sourcePath !== null && $targetPath !== null) {
  699. \OC_Hook::emit(
  700. Filesystem::CLASSNAME, Filesystem::signal_rename,
  701. [
  702. Filesystem::signal_param_oldpath => $sourcePath,
  703. Filesystem::signal_param_newpath => $targetPath,
  704. Filesystem::signal_param_run => &$run
  705. ]
  706. );
  707. }
  708. }
  709. if ($run) {
  710. $this->verifyPath(dirname($target), basename($target));
  711. $manager = Filesystem::getMountManager();
  712. $mount1 = $this->getMount($source);
  713. $mount2 = $this->getMount($target);
  714. $storage1 = $mount1->getStorage();
  715. $storage2 = $mount2->getStorage();
  716. $internalPath1 = $mount1->getInternalPath($absolutePath1);
  717. $internalPath2 = $mount2->getInternalPath($absolutePath2);
  718. $this->changeLock($source, ILockingProvider::LOCK_EXCLUSIVE, true);
  719. try {
  720. $this->changeLock($target, ILockingProvider::LOCK_EXCLUSIVE, true);
  721. if ($internalPath1 === '') {
  722. if ($mount1 instanceof MoveableMount) {
  723. $sourceParentMount = $this->getMount(dirname($source));
  724. if ($sourceParentMount === $mount2 && $this->targetIsNotShared($storage2, $internalPath2)) {
  725. /**
  726. * @var \OC\Files\Mount\MountPoint | \OC\Files\Mount\MoveableMount $mount1
  727. */
  728. $sourceMountPoint = $mount1->getMountPoint();
  729. $result = $mount1->moveMount($absolutePath2);
  730. $manager->moveMount($sourceMountPoint, $mount1->getMountPoint());
  731. } else {
  732. $result = false;
  733. }
  734. } else {
  735. $result = false;
  736. }
  737. // moving a file/folder within the same mount point
  738. } elseif ($storage1 === $storage2) {
  739. if ($storage1) {
  740. $result = $storage1->rename($internalPath1, $internalPath2);
  741. } else {
  742. $result = false;
  743. }
  744. // moving a file/folder between storages (from $storage1 to $storage2)
  745. } else {
  746. $result = $storage2->moveFromStorage($storage1, $internalPath1, $internalPath2);
  747. }
  748. if ((Cache\Scanner::isPartialFile($source) && !Cache\Scanner::isPartialFile($target)) && $result !== false) {
  749. // if it was a rename from a part file to a regular file it was a write and not a rename operation
  750. $this->writeUpdate($storage2, $internalPath2);
  751. } elseif ($result) {
  752. if ($internalPath1 !== '') { // don't do a cache update for moved mounts
  753. $this->renameUpdate($storage1, $storage2, $internalPath1, $internalPath2);
  754. }
  755. }
  756. } catch (\Exception $e) {
  757. throw $e;
  758. } finally {
  759. $this->changeLock($source, ILockingProvider::LOCK_SHARED, true);
  760. $this->changeLock($target, ILockingProvider::LOCK_SHARED, true);
  761. }
  762. if ((Cache\Scanner::isPartialFile($source) && !Cache\Scanner::isPartialFile($target)) && $result !== false) {
  763. if ($this->shouldEmitHooks()) {
  764. $this->emit_file_hooks_post($exists, $target);
  765. }
  766. } elseif ($result) {
  767. if ($this->shouldEmitHooks($source) && $this->shouldEmitHooks($target)) {
  768. $sourcePath = $this->getHookPath($source);
  769. $targetPath = $this->getHookPath($target);
  770. if ($sourcePath !== null && $targetPath !== null) {
  771. \OC_Hook::emit(
  772. Filesystem::CLASSNAME,
  773. Filesystem::signal_post_rename,
  774. [
  775. Filesystem::signal_param_oldpath => $sourcePath,
  776. Filesystem::signal_param_newpath => $targetPath,
  777. ]
  778. );
  779. }
  780. }
  781. }
  782. }
  783. } catch (\Exception $e) {
  784. throw $e;
  785. } finally {
  786. $this->unlockFile($source, ILockingProvider::LOCK_SHARED, true);
  787. $this->unlockFile($target, ILockingProvider::LOCK_SHARED, true);
  788. }
  789. }
  790. return $result;
  791. }
  792. /**
  793. * Copy a file/folder from the source path to target path
  794. *
  795. * @param string $source source path
  796. * @param string $target target path
  797. * @param bool $preserveMtime whether to preserve mtime on the copy
  798. *
  799. * @return bool|mixed
  800. */
  801. public function copy($source, $target, $preserveMtime = false) {
  802. $absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($source));
  803. $absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($target));
  804. $result = false;
  805. if (
  806. Filesystem::isValidPath($target)
  807. && Filesystem::isValidPath($source)
  808. && !Filesystem::isFileBlacklisted($target)
  809. ) {
  810. $source = $this->getRelativePath($absolutePath1);
  811. $target = $this->getRelativePath($absolutePath2);
  812. if ($source == null || $target == null) {
  813. return false;
  814. }
  815. $run = true;
  816. $this->lockFile($target, ILockingProvider::LOCK_SHARED);
  817. $this->lockFile($source, ILockingProvider::LOCK_SHARED);
  818. $lockTypePath1 = ILockingProvider::LOCK_SHARED;
  819. $lockTypePath2 = ILockingProvider::LOCK_SHARED;
  820. try {
  821. $exists = $this->file_exists($target);
  822. if ($this->shouldEmitHooks()) {
  823. \OC_Hook::emit(
  824. Filesystem::CLASSNAME,
  825. Filesystem::signal_copy,
  826. [
  827. Filesystem::signal_param_oldpath => $this->getHookPath($source),
  828. Filesystem::signal_param_newpath => $this->getHookPath($target),
  829. Filesystem::signal_param_run => &$run
  830. ]
  831. );
  832. $this->emit_file_hooks_pre($exists, $target, $run);
  833. }
  834. if ($run) {
  835. $mount1 = $this->getMount($source);
  836. $mount2 = $this->getMount($target);
  837. $storage1 = $mount1->getStorage();
  838. $internalPath1 = $mount1->getInternalPath($absolutePath1);
  839. $storage2 = $mount2->getStorage();
  840. $internalPath2 = $mount2->getInternalPath($absolutePath2);
  841. $this->changeLock($target, ILockingProvider::LOCK_EXCLUSIVE);
  842. $lockTypePath2 = ILockingProvider::LOCK_EXCLUSIVE;
  843. if ($mount1->getMountPoint() == $mount2->getMountPoint()) {
  844. if ($storage1) {
  845. $result = $storage1->copy($internalPath1, $internalPath2);
  846. } else {
  847. $result = false;
  848. }
  849. } else {
  850. $result = $storage2->copyFromStorage($storage1, $internalPath1, $internalPath2);
  851. }
  852. $this->writeUpdate($storage2, $internalPath2);
  853. $this->changeLock($target, ILockingProvider::LOCK_SHARED);
  854. $lockTypePath2 = ILockingProvider::LOCK_SHARED;
  855. if ($this->shouldEmitHooks() && $result !== false) {
  856. \OC_Hook::emit(
  857. Filesystem::CLASSNAME,
  858. Filesystem::signal_post_copy,
  859. [
  860. Filesystem::signal_param_oldpath => $this->getHookPath($source),
  861. Filesystem::signal_param_newpath => $this->getHookPath($target)
  862. ]
  863. );
  864. $this->emit_file_hooks_post($exists, $target);
  865. }
  866. }
  867. } catch (\Exception $e) {
  868. $this->unlockFile($target, $lockTypePath2);
  869. $this->unlockFile($source, $lockTypePath1);
  870. throw $e;
  871. }
  872. $this->unlockFile($target, $lockTypePath2);
  873. $this->unlockFile($source, $lockTypePath1);
  874. }
  875. return $result;
  876. }
  877. /**
  878. * @param string $path
  879. * @param string $mode 'r' or 'w'
  880. * @return resource|false
  881. * @throws LockedException
  882. */
  883. public function fopen($path, $mode) {
  884. $mode = str_replace('b', '', $mode); // the binary flag is a windows only feature which we do not support
  885. $hooks = [];
  886. switch ($mode) {
  887. case 'r':
  888. $hooks[] = 'read';
  889. break;
  890. case 'r+':
  891. case 'w+':
  892. case 'x+':
  893. case 'a+':
  894. $hooks[] = 'read';
  895. $hooks[] = 'write';
  896. break;
  897. case 'w':
  898. case 'x':
  899. case 'a':
  900. $hooks[] = 'write';
  901. break;
  902. default:
  903. $this->logger->error('invalid mode (' . $mode . ') for ' . $path, ['app' => 'core']);
  904. }
  905. if ($mode !== 'r' && $mode !== 'w') {
  906. $this->logger->info('Trying to open a file with a mode other than "r" or "w" can cause severe performance issues with some backends', ['app' => 'core']);
  907. }
  908. $handle = $this->basicOperation('fopen', $path, $hooks, $mode);
  909. if (!is_resource($handle) && $mode === 'r') {
  910. // trying to read a file that isn't on disk, check if the cache is out of sync and rescan if needed
  911. $mount = $this->getMount($path);
  912. $internalPath = $mount->getInternalPath($this->getAbsolutePath($path));
  913. $storage = $mount->getStorage();
  914. if ($storage->getCache()->inCache($internalPath) && !$storage->file_exists($path)) {
  915. $this->writeUpdate($storage, $internalPath);
  916. }
  917. }
  918. return $handle;
  919. }
  920. /**
  921. * @param string $path
  922. * @throws InvalidPathException
  923. */
  924. public function toTmpFile($path): string|false {
  925. $this->assertPathLength($path);
  926. if (Filesystem::isValidPath($path)) {
  927. $source = $this->fopen($path, 'r');
  928. if ($source) {
  929. $extension = pathinfo($path, PATHINFO_EXTENSION);
  930. $tmpFile = \OC::$server->getTempManager()->getTemporaryFile($extension);
  931. file_put_contents($tmpFile, $source);
  932. return $tmpFile;
  933. } else {
  934. return false;
  935. }
  936. } else {
  937. return false;
  938. }
  939. }
  940. /**
  941. * @param string $tmpFile
  942. * @param string $path
  943. * @return bool|mixed
  944. * @throws InvalidPathException
  945. */
  946. public function fromTmpFile($tmpFile, $path) {
  947. $this->assertPathLength($path);
  948. if (Filesystem::isValidPath($path)) {
  949. // Get directory that the file is going into
  950. $filePath = dirname($path);
  951. // Create the directories if any
  952. if (!$this->file_exists($filePath)) {
  953. $result = $this->createParentDirectories($filePath);
  954. if ($result === false) {
  955. return false;
  956. }
  957. }
  958. $source = fopen($tmpFile, 'r');
  959. if ($source) {
  960. $result = $this->file_put_contents($path, $source);
  961. /**
  962. * $this->file_put_contents() might have already closed
  963. * the resource, so we check it, before trying to close it
  964. * to avoid messages in the error log.
  965. * @psalm-suppress RedundantCondition false-positive
  966. */
  967. if (is_resource($source)) {
  968. fclose($source);
  969. }
  970. unlink($tmpFile);
  971. return $result;
  972. } else {
  973. return false;
  974. }
  975. } else {
  976. return false;
  977. }
  978. }
  979. /**
  980. * @param string $path
  981. * @return mixed
  982. * @throws InvalidPathException
  983. */
  984. public function getMimeType($path) {
  985. $this->assertPathLength($path);
  986. return $this->basicOperation('getMimeType', $path);
  987. }
  988. /**
  989. * @param string $type
  990. * @param string $path
  991. * @param bool $raw
  992. */
  993. public function hash($type, $path, $raw = false): string|bool {
  994. $postFix = (substr($path, -1) === '/') ? '/' : '';
  995. $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  996. if (Filesystem::isValidPath($path)) {
  997. $path = $this->getRelativePath($absolutePath);
  998. if ($path == null) {
  999. return false;
  1000. }
  1001. if ($this->shouldEmitHooks($path)) {
  1002. \OC_Hook::emit(
  1003. Filesystem::CLASSNAME,
  1004. Filesystem::signal_read,
  1005. [Filesystem::signal_param_path => $this->getHookPath($path)]
  1006. );
  1007. }
  1008. /** @var Storage|null $storage */
  1009. [$storage, $internalPath] = Filesystem::resolvePath($absolutePath . $postFix);
  1010. if ($storage) {
  1011. return $storage->hash($type, $internalPath, $raw);
  1012. }
  1013. }
  1014. return false;
  1015. }
  1016. /**
  1017. * @param string $path
  1018. * @return mixed
  1019. * @throws InvalidPathException
  1020. */
  1021. public function free_space($path = '/') {
  1022. $this->assertPathLength($path);
  1023. $result = $this->basicOperation('free_space', $path);
  1024. if ($result === null) {
  1025. throw new InvalidPathException();
  1026. }
  1027. return $result;
  1028. }
  1029. /**
  1030. * abstraction layer for basic filesystem functions: wrapper for \OC\Files\Storage\Storage
  1031. *
  1032. * @param mixed $extraParam (optional)
  1033. * @return mixed
  1034. * @throws LockedException
  1035. *
  1036. * This method takes requests for basic filesystem functions (e.g. reading & writing
  1037. * files), processes hooks and proxies, sanitises paths, and finally passes them on to
  1038. * \OC\Files\Storage\Storage for delegation to a storage backend for execution
  1039. */
  1040. private function basicOperation(string $operation, string $path, array $hooks = [], $extraParam = null) {
  1041. $postFix = (substr($path, -1) === '/') ? '/' : '';
  1042. $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  1043. if (Filesystem::isValidPath($path)
  1044. && !Filesystem::isFileBlacklisted($path)
  1045. ) {
  1046. $path = $this->getRelativePath($absolutePath);
  1047. if ($path == null) {
  1048. return false;
  1049. }
  1050. if (in_array('write', $hooks) || in_array('delete', $hooks) || in_array('read', $hooks)) {
  1051. // always a shared lock during pre-hooks so the hook can read the file
  1052. $this->lockFile($path, ILockingProvider::LOCK_SHARED);
  1053. }
  1054. $run = $this->runHooks($hooks, $path);
  1055. [$storage, $internalPath] = Filesystem::resolvePath($absolutePath . $postFix);
  1056. if ($run && $storage) {
  1057. /** @var Storage $storage */
  1058. if (in_array('write', $hooks) || in_array('delete', $hooks)) {
  1059. try {
  1060. $this->changeLock($path, ILockingProvider::LOCK_EXCLUSIVE);
  1061. } catch (LockedException $e) {
  1062. // release the shared lock we acquired before quitting
  1063. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  1064. throw $e;
  1065. }
  1066. }
  1067. try {
  1068. if (!is_null($extraParam)) {
  1069. $result = $storage->$operation($internalPath, $extraParam);
  1070. } else {
  1071. $result = $storage->$operation($internalPath);
  1072. }
  1073. } catch (\Exception $e) {
  1074. if (in_array('write', $hooks) || in_array('delete', $hooks)) {
  1075. $this->unlockFile($path, ILockingProvider::LOCK_EXCLUSIVE);
  1076. } elseif (in_array('read', $hooks)) {
  1077. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  1078. }
  1079. throw $e;
  1080. }
  1081. if ($result !== false && in_array('delete', $hooks)) {
  1082. $this->removeUpdate($storage, $internalPath);
  1083. }
  1084. if ($result !== false && in_array('write', $hooks, true) && $operation !== 'fopen' && $operation !== 'touch') {
  1085. $isCreateOperation = $operation === 'mkdir' || ($operation === 'file_put_contents' && in_array('create', $hooks, true));
  1086. $sizeDifference = $operation === 'mkdir' ? 0 : $result;
  1087. $this->writeUpdate($storage, $internalPath, null, $isCreateOperation ? $sizeDifference : null);
  1088. }
  1089. if ($result !== false && in_array('touch', $hooks)) {
  1090. $this->writeUpdate($storage, $internalPath, $extraParam);
  1091. }
  1092. if ((in_array('write', $hooks) || in_array('delete', $hooks)) && ($operation !== 'fopen' || $result === false)) {
  1093. $this->changeLock($path, ILockingProvider::LOCK_SHARED);
  1094. }
  1095. $unlockLater = false;
  1096. if ($this->lockingEnabled && $operation === 'fopen' && is_resource($result)) {
  1097. $unlockLater = true;
  1098. // make sure our unlocking callback will still be called if connection is aborted
  1099. ignore_user_abort(true);
  1100. $result = CallbackWrapper::wrap($result, null, null, function () use ($hooks, $path) {
  1101. if (in_array('write', $hooks)) {
  1102. $this->unlockFile($path, ILockingProvider::LOCK_EXCLUSIVE);
  1103. } elseif (in_array('read', $hooks)) {
  1104. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  1105. }
  1106. });
  1107. }
  1108. if ($this->shouldEmitHooks($path) && $result !== false) {
  1109. if ($operation != 'fopen') { //no post hooks for fopen, the file stream is still open
  1110. $this->runHooks($hooks, $path, true);
  1111. }
  1112. }
  1113. if (!$unlockLater
  1114. && (in_array('write', $hooks) || in_array('delete', $hooks) || in_array('read', $hooks))
  1115. ) {
  1116. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  1117. }
  1118. return $result;
  1119. } else {
  1120. $this->unlockFile($path, ILockingProvider::LOCK_SHARED);
  1121. }
  1122. }
  1123. return null;
  1124. }
  1125. /**
  1126. * get the path relative to the default root for hook usage
  1127. *
  1128. * @param string $path
  1129. * @return ?string
  1130. */
  1131. private function getHookPath($path): ?string {
  1132. $view = Filesystem::getView();
  1133. if (!$view) {
  1134. return $path;
  1135. }
  1136. return $view->getRelativePath($this->getAbsolutePath($path));
  1137. }
  1138. private function shouldEmitHooks(string $path = ''): bool {
  1139. if ($path && Cache\Scanner::isPartialFile($path)) {
  1140. return false;
  1141. }
  1142. if (!Filesystem::$loaded) {
  1143. return false;
  1144. }
  1145. $defaultRoot = Filesystem::getRoot();
  1146. if ($defaultRoot === null) {
  1147. return false;
  1148. }
  1149. if ($this->fakeRoot === $defaultRoot) {
  1150. return true;
  1151. }
  1152. $fullPath = $this->getAbsolutePath($path);
  1153. if ($fullPath === $defaultRoot) {
  1154. return true;
  1155. }
  1156. return (strlen($fullPath) > strlen($defaultRoot)) && (substr($fullPath, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/');
  1157. }
  1158. /**
  1159. * @param string[] $hooks
  1160. * @param string $path
  1161. * @param bool $post
  1162. * @return bool
  1163. */
  1164. private function runHooks($hooks, $path, $post = false) {
  1165. $relativePath = $path;
  1166. $path = $this->getHookPath($path);
  1167. $prefix = $post ? 'post_' : '';
  1168. $run = true;
  1169. if ($this->shouldEmitHooks($relativePath)) {
  1170. foreach ($hooks as $hook) {
  1171. if ($hook != 'read') {
  1172. \OC_Hook::emit(
  1173. Filesystem::CLASSNAME,
  1174. $prefix . $hook,
  1175. [
  1176. Filesystem::signal_param_run => &$run,
  1177. Filesystem::signal_param_path => $path
  1178. ]
  1179. );
  1180. } elseif (!$post) {
  1181. \OC_Hook::emit(
  1182. Filesystem::CLASSNAME,
  1183. $prefix . $hook,
  1184. [
  1185. Filesystem::signal_param_path => $path
  1186. ]
  1187. );
  1188. }
  1189. }
  1190. }
  1191. return $run;
  1192. }
  1193. /**
  1194. * check if a file or folder has been updated since $time
  1195. *
  1196. * @param string $path
  1197. * @param int $time
  1198. * @return bool
  1199. */
  1200. public function hasUpdated($path, $time) {
  1201. return $this->basicOperation('hasUpdated', $path, [], $time);
  1202. }
  1203. /**
  1204. * @param string $ownerId
  1205. * @return IUser
  1206. */
  1207. private function getUserObjectForOwner(string $ownerId) {
  1208. return new LazyUser($ownerId, $this->userManager);
  1209. }
  1210. /**
  1211. * Get file info from cache
  1212. *
  1213. * If the file is not in cached it will be scanned
  1214. * If the file has changed on storage the cache will be updated
  1215. *
  1216. * @param Storage $storage
  1217. * @param string $internalPath
  1218. * @param string $relativePath
  1219. * @return ICacheEntry|bool
  1220. */
  1221. private function getCacheEntry($storage, $internalPath, $relativePath) {
  1222. $cache = $storage->getCache($internalPath);
  1223. $data = $cache->get($internalPath);
  1224. $watcher = $storage->getWatcher($internalPath);
  1225. try {
  1226. // if the file is not in the cache or needs to be updated, trigger the scanner and reload the data
  1227. if (!$data || (isset($data['size']) && $data['size'] === -1)) {
  1228. if (!$storage->file_exists($internalPath)) {
  1229. return false;
  1230. }
  1231. // don't need to get a lock here since the scanner does it's own locking
  1232. $scanner = $storage->getScanner($internalPath);
  1233. $scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
  1234. $data = $cache->get($internalPath);
  1235. } elseif (!Cache\Scanner::isPartialFile($internalPath) && $watcher->needsUpdate($internalPath, $data)) {
  1236. $this->lockFile($relativePath, ILockingProvider::LOCK_SHARED);
  1237. $watcher->update($internalPath, $data);
  1238. $storage->getPropagator()->propagateChange($internalPath, time());
  1239. $data = $cache->get($internalPath);
  1240. $this->unlockFile($relativePath, ILockingProvider::LOCK_SHARED);
  1241. }
  1242. } catch (LockedException $e) {
  1243. // if the file is locked we just use the old cache info
  1244. }
  1245. return $data;
  1246. }
  1247. /**
  1248. * get the filesystem info
  1249. *
  1250. * @param string $path
  1251. * @param bool|string $includeMountPoints true to add mountpoint sizes,
  1252. * 'ext' to add only ext storage mount point sizes. Defaults to true.
  1253. * @return \OC\Files\FileInfo|false False if file does not exist
  1254. */
  1255. public function getFileInfo($path, $includeMountPoints = true) {
  1256. $this->assertPathLength($path);
  1257. if (!Filesystem::isValidPath($path)) {
  1258. return false;
  1259. }
  1260. $relativePath = $path;
  1261. $path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
  1262. $mount = Filesystem::getMountManager()->find($path);
  1263. $storage = $mount->getStorage();
  1264. $internalPath = $mount->getInternalPath($path);
  1265. if ($storage) {
  1266. $data = $this->getCacheEntry($storage, $internalPath, $relativePath);
  1267. if (!$data instanceof ICacheEntry) {
  1268. if (Cache\Scanner::isPartialFile($relativePath)) {
  1269. return $this->getPartFileInfo($relativePath);
  1270. }
  1271. return false;
  1272. }
  1273. if ($mount instanceof MoveableMount && $internalPath === '') {
  1274. $data['permissions'] |= \OCP\Constants::PERMISSION_DELETE;
  1275. }
  1276. $ownerId = $storage->getOwner($internalPath);
  1277. $owner = null;
  1278. if ($ownerId !== null && $ownerId !== false) {
  1279. // ownerId might be null if files are accessed with an access token without file system access
  1280. $owner = $this->getUserObjectForOwner($ownerId);
  1281. }
  1282. $info = new FileInfo($path, $storage, $internalPath, $data, $mount, $owner);
  1283. if (isset($data['fileid'])) {
  1284. if ($includeMountPoints && $data['mimetype'] === 'httpd/unix-directory') {
  1285. //add the sizes of other mount points to the folder
  1286. $extOnly = ($includeMountPoints === 'ext');
  1287. $this->addSubMounts($info, $extOnly);
  1288. }
  1289. }
  1290. return $info;
  1291. } else {
  1292. $this->logger->warning('Storage not valid for mountpoint: ' . $mount->getMountPoint(), ['app' => 'core']);
  1293. }
  1294. return false;
  1295. }
  1296. /**
  1297. * Extend a FileInfo that was previously requested with `$includeMountPoints = false` to include the sub mounts
  1298. */
  1299. public function addSubMounts(FileInfo $info, $extOnly = false): void {
  1300. $mounts = Filesystem::getMountManager()->findIn($info->getPath());
  1301. $info->setSubMounts(array_filter($mounts, function (IMountPoint $mount) use ($extOnly) {
  1302. $subStorage = $mount->getStorage();
  1303. return !($extOnly && $subStorage instanceof \OCA\Files_Sharing\SharedStorage);
  1304. }));
  1305. }
  1306. /**
  1307. * get the content of a directory
  1308. *
  1309. * @param string $directory path under datadirectory
  1310. * @param string $mimetype_filter limit returned content to this mimetype or mimepart
  1311. * @return FileInfo[]
  1312. */
  1313. public function getDirectoryContent($directory, $mimetype_filter = '', \OCP\Files\FileInfo $directoryInfo = null) {
  1314. $this->assertPathLength($directory);
  1315. if (!Filesystem::isValidPath($directory)) {
  1316. return [];
  1317. }
  1318. $path = $this->getAbsolutePath($directory);
  1319. $path = Filesystem::normalizePath($path);
  1320. $mount = $this->getMount($directory);
  1321. $storage = $mount->getStorage();
  1322. $internalPath = $mount->getInternalPath($path);
  1323. if (!$storage) {
  1324. return [];
  1325. }
  1326. $cache = $storage->getCache($internalPath);
  1327. $user = \OC_User::getUser();
  1328. if (!$directoryInfo) {
  1329. $data = $this->getCacheEntry($storage, $internalPath, $directory);
  1330. if (!$data instanceof ICacheEntry || !isset($data['fileid'])) {
  1331. return [];
  1332. }
  1333. } else {
  1334. $data = $directoryInfo;
  1335. }
  1336. if (!($data->getPermissions() & Constants::PERMISSION_READ)) {
  1337. return [];
  1338. }
  1339. $folderId = $data->getId();
  1340. $contents = $cache->getFolderContentsById($folderId); //TODO: mimetype_filter
  1341. $sharingDisabled = \OCP\Util::isSharingDisabledForUser();
  1342. $fileNames = array_map(function (ICacheEntry $content) {
  1343. return $content->getName();
  1344. }, $contents);
  1345. /**
  1346. * @var \OC\Files\FileInfo[] $fileInfos
  1347. */
  1348. $fileInfos = array_map(function (ICacheEntry $content) use ($path, $storage, $mount, $sharingDisabled) {
  1349. if ($sharingDisabled) {
  1350. $content['permissions'] = $content['permissions'] & ~\OCP\Constants::PERMISSION_SHARE;
  1351. }
  1352. $owner = $this->getUserObjectForOwner($storage->getOwner($content['path']));
  1353. return new FileInfo($path . '/' . $content['name'], $storage, $content['path'], $content, $mount, $owner);
  1354. }, $contents);
  1355. $files = array_combine($fileNames, $fileInfos);
  1356. //add a folder for any mountpoint in this directory and add the sizes of other mountpoints to the folders
  1357. $mounts = Filesystem::getMountManager()->findIn($path);
  1358. // make sure nested mounts are sorted after their parent mounts
  1359. // otherwise doesn't propagate the etag across storage boundaries correctly
  1360. usort($mounts, function (IMountPoint $a, IMountPoint $b) {
  1361. return $a->getMountPoint() <=> $b->getMountPoint();
  1362. });
  1363. $dirLength = strlen($path);
  1364. foreach ($mounts as $mount) {
  1365. $mountPoint = $mount->getMountPoint();
  1366. $subStorage = $mount->getStorage();
  1367. if ($subStorage) {
  1368. $subCache = $subStorage->getCache('');
  1369. $rootEntry = $subCache->get('');
  1370. if (!$rootEntry) {
  1371. $subScanner = $subStorage->getScanner();
  1372. try {
  1373. $subScanner->scanFile('');
  1374. } catch (\OCP\Files\StorageNotAvailableException $e) {
  1375. continue;
  1376. } catch (\OCP\Files\StorageInvalidException $e) {
  1377. continue;
  1378. } catch (\Exception $e) {
  1379. // sometimes when the storage is not available it can be any exception
  1380. $this->logger->error('Exception while scanning storage "' . $subStorage->getId() . '"', [
  1381. 'exception' => $e,
  1382. 'app' => 'core',
  1383. ]);
  1384. continue;
  1385. }
  1386. $rootEntry = $subCache->get('');
  1387. }
  1388. if ($rootEntry && ($rootEntry->getPermissions() & Constants::PERMISSION_READ)) {
  1389. $relativePath = trim(substr($mountPoint, $dirLength), '/');
  1390. if ($pos = strpos($relativePath, '/')) {
  1391. //mountpoint inside subfolder add size to the correct folder
  1392. $entryName = substr($relativePath, 0, $pos);
  1393. if (isset($files[$entryName])) {
  1394. $files[$entryName]->addSubEntry($rootEntry, $mountPoint);
  1395. }
  1396. } else { //mountpoint in this folder, add an entry for it
  1397. $rootEntry['name'] = $relativePath;
  1398. $rootEntry['type'] = $rootEntry['mimetype'] === 'httpd/unix-directory' ? 'dir' : 'file';
  1399. $permissions = $rootEntry['permissions'];
  1400. // do not allow renaming/deleting the mount point if they are not shared files/folders
  1401. // for shared files/folders we use the permissions given by the owner
  1402. if ($mount instanceof MoveableMount) {
  1403. $rootEntry['permissions'] = $permissions | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE;
  1404. } else {
  1405. $rootEntry['permissions'] = $permissions & (\OCP\Constants::PERMISSION_ALL - (\OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE));
  1406. }
  1407. $rootEntry['path'] = substr(Filesystem::normalizePath($path . '/' . $rootEntry['name']), strlen($user) + 2); // full path without /$user/
  1408. // if sharing was disabled for the user we remove the share permissions
  1409. if ($sharingDisabled) {
  1410. $rootEntry['permissions'] = $rootEntry['permissions'] & ~\OCP\Constants::PERMISSION_SHARE;
  1411. }
  1412. $owner = $this->getUserObjectForOwner($subStorage->getOwner(''));
  1413. $files[$rootEntry->getName()] = new FileInfo($path . '/' . $rootEntry['name'], $subStorage, '', $rootEntry, $mount, $owner);
  1414. }
  1415. }
  1416. }
  1417. }
  1418. if ($mimetype_filter) {
  1419. $files = array_filter($files, function (FileInfo $file) use ($mimetype_filter) {
  1420. if (strpos($mimetype_filter, '/')) {
  1421. return $file->getMimetype() === $mimetype_filter;
  1422. } else {
  1423. return $file->getMimePart() === $mimetype_filter;
  1424. }
  1425. });
  1426. }
  1427. return array_values($files);
  1428. }
  1429. /**
  1430. * change file metadata
  1431. *
  1432. * @param string $path
  1433. * @param array|\OCP\Files\FileInfo $data
  1434. * @return int
  1435. *
  1436. * returns the fileid of the updated file
  1437. */
  1438. public function putFileInfo($path, $data) {
  1439. $this->assertPathLength($path);
  1440. if ($data instanceof FileInfo) {
  1441. $data = $data->getData();
  1442. }
  1443. $path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
  1444. /**
  1445. * @var Storage $storage
  1446. * @var string $internalPath
  1447. */
  1448. [$storage, $internalPath] = Filesystem::resolvePath($path);
  1449. if ($storage) {
  1450. $cache = $storage->getCache($path);
  1451. if (!$cache->inCache($internalPath)) {
  1452. $scanner = $storage->getScanner($internalPath);
  1453. $scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
  1454. }
  1455. return $cache->put($internalPath, $data);
  1456. } else {
  1457. return -1;
  1458. }
  1459. }
  1460. /**
  1461. * search for files with the name matching $query
  1462. *
  1463. * @param string $query
  1464. * @return FileInfo[]
  1465. */
  1466. public function search($query) {
  1467. return $this->searchCommon('search', ['%' . $query . '%']);
  1468. }
  1469. /**
  1470. * search for files with the name matching $query
  1471. *
  1472. * @param string $query
  1473. * @return FileInfo[]
  1474. */
  1475. public function searchRaw($query) {
  1476. return $this->searchCommon('search', [$query]);
  1477. }
  1478. /**
  1479. * search for files by mimetype
  1480. *
  1481. * @param string $mimetype
  1482. * @return FileInfo[]
  1483. */
  1484. public function searchByMime($mimetype) {
  1485. return $this->searchCommon('searchByMime', [$mimetype]);
  1486. }
  1487. /**
  1488. * search for files by tag
  1489. *
  1490. * @param string|int $tag name or tag id
  1491. * @param string $userId owner of the tags
  1492. * @return FileInfo[]
  1493. */
  1494. public function searchByTag($tag, $userId) {
  1495. return $this->searchCommon('searchByTag', [$tag, $userId]);
  1496. }
  1497. /**
  1498. * @param string $method cache method
  1499. * @param array $args
  1500. * @return FileInfo[]
  1501. */
  1502. private function searchCommon($method, $args) {
  1503. $files = [];
  1504. $rootLength = strlen($this->fakeRoot);
  1505. $mount = $this->getMount('');
  1506. $mountPoint = $mount->getMountPoint();
  1507. $storage = $mount->getStorage();
  1508. $userManager = \OC::$server->getUserManager();
  1509. if ($storage) {
  1510. $cache = $storage->getCache('');
  1511. $results = call_user_func_array([$cache, $method], $args);
  1512. foreach ($results as $result) {
  1513. if (substr($mountPoint . $result['path'], 0, $rootLength + 1) === $this->fakeRoot . '/') {
  1514. $internalPath = $result['path'];
  1515. $path = $mountPoint . $result['path'];
  1516. $result['path'] = substr($mountPoint . $result['path'], $rootLength);
  1517. $owner = $userManager->get($storage->getOwner($internalPath));
  1518. $files[] = new FileInfo($path, $storage, $internalPath, $result, $mount, $owner);
  1519. }
  1520. }
  1521. $mounts = Filesystem::getMountManager()->findIn($this->fakeRoot);
  1522. foreach ($mounts as $mount) {
  1523. $mountPoint = $mount->getMountPoint();
  1524. $storage = $mount->getStorage();
  1525. if ($storage) {
  1526. $cache = $storage->getCache('');
  1527. $relativeMountPoint = substr($mountPoint, $rootLength);
  1528. $results = call_user_func_array([$cache, $method], $args);
  1529. if ($results) {
  1530. foreach ($results as $result) {
  1531. $internalPath = $result['path'];
  1532. $result['path'] = rtrim($relativeMountPoint . $result['path'], '/');
  1533. $path = rtrim($mountPoint . $internalPath, '/');
  1534. $owner = $userManager->get($storage->getOwner($internalPath));
  1535. $files[] = new FileInfo($path, $storage, $internalPath, $result, $mount, $owner);
  1536. }
  1537. }
  1538. }
  1539. }
  1540. }
  1541. return $files;
  1542. }
  1543. /**
  1544. * Get the owner for a file or folder
  1545. *
  1546. * @param string $path
  1547. * @return string the user id of the owner
  1548. * @throws NotFoundException
  1549. */
  1550. public function getOwner($path) {
  1551. $info = $this->getFileInfo($path);
  1552. if (!$info) {
  1553. throw new NotFoundException($path . ' not found while trying to get owner');
  1554. }
  1555. if ($info->getOwner() === null) {
  1556. throw new NotFoundException($path . ' has no owner');
  1557. }
  1558. return $info->getOwner()->getUID();
  1559. }
  1560. /**
  1561. * get the ETag for a file or folder
  1562. *
  1563. * @param string $path
  1564. * @return string|false
  1565. */
  1566. public function getETag($path) {
  1567. [$storage, $internalPath] = $this->resolvePath($path);
  1568. if ($storage) {
  1569. return $storage->getETag($internalPath);
  1570. } else {
  1571. return false;
  1572. }
  1573. }
  1574. /**
  1575. * Get the path of a file by id, relative to the view
  1576. *
  1577. * Note that the resulting path is not guaranteed to be unique for the id, multiple paths can point to the same file
  1578. *
  1579. * @param int $id
  1580. * @param int|null $storageId
  1581. * @return string
  1582. * @throws NotFoundException
  1583. */
  1584. public function getPath($id, int $storageId = null) {
  1585. $id = (int)$id;
  1586. $manager = Filesystem::getMountManager();
  1587. $mounts = $manager->findIn($this->fakeRoot);
  1588. $mounts[] = $manager->find($this->fakeRoot);
  1589. $mounts = array_filter($mounts);
  1590. // reverse the array, so we start with the storage this view is in
  1591. // which is the most likely to contain the file we're looking for
  1592. $mounts = array_reverse($mounts);
  1593. // put non-shared mounts in front of the shared mount
  1594. // this prevents unneeded recursion into shares
  1595. usort($mounts, function (IMountPoint $a, IMountPoint $b) {
  1596. return $a instanceof SharedMount && (!$b instanceof SharedMount) ? 1 : -1;
  1597. });
  1598. if (!is_null($storageId)) {
  1599. $mounts = array_filter($mounts, function (IMountPoint $mount) use ($storageId) {
  1600. return $mount->getNumericStorageId() === $storageId;
  1601. });
  1602. }
  1603. foreach ($mounts as $mount) {
  1604. /**
  1605. * @var \OC\Files\Mount\MountPoint $mount
  1606. */
  1607. if ($mount->getStorage()) {
  1608. $cache = $mount->getStorage()->getCache();
  1609. $internalPath = $cache->getPathById($id);
  1610. if (is_string($internalPath)) {
  1611. $fullPath = $mount->getMountPoint() . $internalPath;
  1612. if (!is_null($path = $this->getRelativePath($fullPath))) {
  1613. return $path;
  1614. }
  1615. }
  1616. }
  1617. }
  1618. throw new NotFoundException(sprintf('File with id "%s" has not been found.', $id));
  1619. }
  1620. /**
  1621. * @param string $path
  1622. * @throws InvalidPathException
  1623. */
  1624. private function assertPathLength($path): void {
  1625. $maxLen = min(PHP_MAXPATHLEN, 4000);
  1626. // Check for the string length - performed using isset() instead of strlen()
  1627. // because isset() is about 5x-40x faster.
  1628. if (isset($path[$maxLen])) {
  1629. $pathLen = strlen($path);
  1630. throw new InvalidPathException("Path length($pathLen) exceeds max path length($maxLen): $path");
  1631. }
  1632. }
  1633. /**
  1634. * check if it is allowed to move a mount point to a given target.
  1635. * It is not allowed to move a mount point into a different mount point or
  1636. * into an already shared folder
  1637. */
  1638. private function targetIsNotShared(IStorage $targetStorage, string $targetInternalPath): bool {
  1639. // note: cannot use the view because the target is already locked
  1640. $fileId = $targetStorage->getCache()->getId($targetInternalPath);
  1641. if ($fileId === -1) {
  1642. // target might not exist, need to check parent instead
  1643. $fileId = $targetStorage->getCache()->getId(dirname($targetInternalPath));
  1644. }
  1645. // check if any of the parents were shared by the current owner (include collections)
  1646. $shares = Share::getItemShared(
  1647. 'folder',
  1648. (string)$fileId,
  1649. \OC\Share\Constants::FORMAT_NONE,
  1650. null,
  1651. true
  1652. );
  1653. if (count($shares) > 0) {
  1654. $this->logger->debug(
  1655. 'It is not allowed to move one mount point into a shared folder',
  1656. ['app' => 'files']);
  1657. return false;
  1658. }
  1659. return true;
  1660. }
  1661. /**
  1662. * Get a fileinfo object for files that are ignored in the cache (part files)
  1663. */
  1664. private function getPartFileInfo(string $path): \OC\Files\FileInfo {
  1665. $mount = $this->getMount($path);
  1666. $storage = $mount->getStorage();
  1667. $internalPath = $mount->getInternalPath($this->getAbsolutePath($path));
  1668. $owner = \OC::$server->getUserManager()->get($storage->getOwner($internalPath));
  1669. return new FileInfo(
  1670. $this->getAbsolutePath($path),
  1671. $storage,
  1672. $internalPath,
  1673. [
  1674. 'fileid' => null,
  1675. 'mimetype' => $storage->getMimeType($internalPath),
  1676. 'name' => basename($path),
  1677. 'etag' => null,
  1678. 'size' => $storage->filesize($internalPath),
  1679. 'mtime' => $storage->filemtime($internalPath),
  1680. 'encrypted' => false,
  1681. 'permissions' => \OCP\Constants::PERMISSION_ALL
  1682. ],
  1683. $mount,
  1684. $owner
  1685. );
  1686. }
  1687. /**
  1688. * @param string $path
  1689. * @param string $fileName
  1690. * @throws InvalidPathException
  1691. */
  1692. public function verifyPath($path, $fileName): void {
  1693. try {
  1694. /** @type \OCP\Files\Storage $storage */
  1695. [$storage, $internalPath] = $this->resolvePath($path);
  1696. $storage->verifyPath($internalPath, $fileName);
  1697. } catch (ReservedWordException $ex) {
  1698. $l = \OC::$server->getL10N('lib');
  1699. throw new InvalidPathException($l->t('File name is a reserved word'));
  1700. } catch (InvalidCharacterInPathException $ex) {
  1701. $l = \OC::$server->getL10N('lib');
  1702. throw new InvalidPathException($l->t('File name contains at least one invalid character'));
  1703. } catch (FileNameTooLongException $ex) {
  1704. $l = \OC::$server->getL10N('lib');
  1705. throw new InvalidPathException($l->t('File name is too long'));
  1706. } catch (InvalidDirectoryException $ex) {
  1707. $l = \OC::$server->getL10N('lib');
  1708. throw new InvalidPathException($l->t('Dot files are not allowed'));
  1709. } catch (EmptyFileNameException $ex) {
  1710. $l = \OC::$server->getL10N('lib');
  1711. throw new InvalidPathException($l->t('Empty filename is not allowed'));
  1712. }
  1713. }
  1714. /**
  1715. * get all parent folders of $path
  1716. *
  1717. * @param string $path
  1718. * @return string[]
  1719. */
  1720. private function getParents($path) {
  1721. $path = trim($path, '/');
  1722. if (!$path) {
  1723. return [];
  1724. }
  1725. $parts = explode('/', $path);
  1726. // remove the single file
  1727. array_pop($parts);
  1728. $result = ['/'];
  1729. $resultPath = '';
  1730. foreach ($parts as $part) {
  1731. if ($part) {
  1732. $resultPath .= '/' . $part;
  1733. $result[] = $resultPath;
  1734. }
  1735. }
  1736. return $result;
  1737. }
  1738. /**
  1739. * Returns the mount point for which to lock
  1740. *
  1741. * @param string $absolutePath absolute path
  1742. * @param bool $useParentMount true to return parent mount instead of whatever
  1743. * is mounted directly on the given path, false otherwise
  1744. * @return IMountPoint mount point for which to apply locks
  1745. */
  1746. private function getMountForLock(string $absolutePath, bool $useParentMount = false): IMountPoint {
  1747. $mount = Filesystem::getMountManager()->find($absolutePath);
  1748. if ($useParentMount) {
  1749. // find out if something is mounted directly on the path
  1750. $internalPath = $mount->getInternalPath($absolutePath);
  1751. if ($internalPath === '') {
  1752. // resolve the parent mount instead
  1753. $mount = Filesystem::getMountManager()->find(dirname($absolutePath));
  1754. }
  1755. }
  1756. return $mount;
  1757. }
  1758. /**
  1759. * Lock the given path
  1760. *
  1761. * @param string $path the path of the file to lock, relative to the view
  1762. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  1763. * @param bool $lockMountPoint true to lock the mount point, false to lock the attached mount/storage
  1764. *
  1765. * @return bool False if the path is excluded from locking, true otherwise
  1766. * @throws LockedException if the path is already locked
  1767. */
  1768. private function lockPath($path, $type, $lockMountPoint = false) {
  1769. $absolutePath = $this->getAbsolutePath($path);
  1770. $absolutePath = Filesystem::normalizePath($absolutePath);
  1771. if (!$this->shouldLockFile($absolutePath)) {
  1772. return false;
  1773. }
  1774. $mount = $this->getMountForLock($absolutePath, $lockMountPoint);
  1775. try {
  1776. $storage = $mount->getStorage();
  1777. if ($storage && $storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
  1778. $storage->acquireLock(
  1779. $mount->getInternalPath($absolutePath),
  1780. $type,
  1781. $this->lockingProvider
  1782. );
  1783. }
  1784. } catch (LockedException $e) {
  1785. // rethrow with the a human-readable path
  1786. throw new LockedException(
  1787. $this->getPathRelativeToFiles($absolutePath),
  1788. $e,
  1789. $e->getExistingLock()
  1790. );
  1791. }
  1792. return true;
  1793. }
  1794. /**
  1795. * Change the lock type
  1796. *
  1797. * @param string $path the path of the file to lock, relative to the view
  1798. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  1799. * @param bool $lockMountPoint true to lock the mount point, false to lock the attached mount/storage
  1800. *
  1801. * @return bool False if the path is excluded from locking, true otherwise
  1802. * @throws LockedException if the path is already locked
  1803. */
  1804. public function changeLock($path, $type, $lockMountPoint = false) {
  1805. $path = Filesystem::normalizePath($path);
  1806. $absolutePath = $this->getAbsolutePath($path);
  1807. $absolutePath = Filesystem::normalizePath($absolutePath);
  1808. if (!$this->shouldLockFile($absolutePath)) {
  1809. return false;
  1810. }
  1811. $mount = $this->getMountForLock($absolutePath, $lockMountPoint);
  1812. try {
  1813. $storage = $mount->getStorage();
  1814. if ($storage && $storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
  1815. $storage->changeLock(
  1816. $mount->getInternalPath($absolutePath),
  1817. $type,
  1818. $this->lockingProvider
  1819. );
  1820. }
  1821. } catch (LockedException $e) {
  1822. try {
  1823. // rethrow with the a human-readable path
  1824. throw new LockedException(
  1825. $this->getPathRelativeToFiles($absolutePath),
  1826. $e,
  1827. $e->getExistingLock()
  1828. );
  1829. } catch (\InvalidArgumentException $ex) {
  1830. throw new LockedException(
  1831. $absolutePath,
  1832. $ex,
  1833. $e->getExistingLock()
  1834. );
  1835. }
  1836. }
  1837. return true;
  1838. }
  1839. /**
  1840. * Unlock the given path
  1841. *
  1842. * @param string $path the path of the file to unlock, relative to the view
  1843. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  1844. * @param bool $lockMountPoint true to lock the mount point, false to lock the attached mount/storage
  1845. *
  1846. * @return bool False if the path is excluded from locking, true otherwise
  1847. * @throws LockedException
  1848. */
  1849. private function unlockPath($path, $type, $lockMountPoint = false) {
  1850. $absolutePath = $this->getAbsolutePath($path);
  1851. $absolutePath = Filesystem::normalizePath($absolutePath);
  1852. if (!$this->shouldLockFile($absolutePath)) {
  1853. return false;
  1854. }
  1855. $mount = $this->getMountForLock($absolutePath, $lockMountPoint);
  1856. $storage = $mount->getStorage();
  1857. if ($storage && $storage->instanceOfStorage('\OCP\Files\Storage\ILockingStorage')) {
  1858. $storage->releaseLock(
  1859. $mount->getInternalPath($absolutePath),
  1860. $type,
  1861. $this->lockingProvider
  1862. );
  1863. }
  1864. return true;
  1865. }
  1866. /**
  1867. * Lock a path and all its parents up to the root of the view
  1868. *
  1869. * @param string $path the path of the file to lock relative to the view
  1870. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  1871. * @param bool $lockMountPoint true to lock the mount point, false to lock the attached mount/storage
  1872. *
  1873. * @return bool False if the path is excluded from locking, true otherwise
  1874. * @throws LockedException
  1875. */
  1876. public function lockFile($path, $type, $lockMountPoint = false) {
  1877. $absolutePath = $this->getAbsolutePath($path);
  1878. $absolutePath = Filesystem::normalizePath($absolutePath);
  1879. if (!$this->shouldLockFile($absolutePath)) {
  1880. return false;
  1881. }
  1882. $this->lockPath($path, $type, $lockMountPoint);
  1883. $parents = $this->getParents($path);
  1884. foreach ($parents as $parent) {
  1885. $this->lockPath($parent, ILockingProvider::LOCK_SHARED);
  1886. }
  1887. return true;
  1888. }
  1889. /**
  1890. * Unlock a path and all its parents up to the root of the view
  1891. *
  1892. * @param string $path the path of the file to lock relative to the view
  1893. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  1894. * @param bool $lockMountPoint true to lock the mount point, false to lock the attached mount/storage
  1895. *
  1896. * @return bool False if the path is excluded from locking, true otherwise
  1897. * @throws LockedException
  1898. */
  1899. public function unlockFile($path, $type, $lockMountPoint = false) {
  1900. $absolutePath = $this->getAbsolutePath($path);
  1901. $absolutePath = Filesystem::normalizePath($absolutePath);
  1902. if (!$this->shouldLockFile($absolutePath)) {
  1903. return false;
  1904. }
  1905. $this->unlockPath($path, $type, $lockMountPoint);
  1906. $parents = $this->getParents($path);
  1907. foreach ($parents as $parent) {
  1908. $this->unlockPath($parent, ILockingProvider::LOCK_SHARED);
  1909. }
  1910. return true;
  1911. }
  1912. /**
  1913. * Only lock files in data/user/files/
  1914. *
  1915. * @param string $path Absolute path to the file/folder we try to (un)lock
  1916. * @return bool
  1917. */
  1918. protected function shouldLockFile($path) {
  1919. $path = Filesystem::normalizePath($path);
  1920. $pathSegments = explode('/', $path);
  1921. if (isset($pathSegments[2])) {
  1922. // E.g.: /username/files/path-to-file
  1923. return ($pathSegments[2] === 'files') && (count($pathSegments) > 3);
  1924. }
  1925. return strpos($path, '/appdata_') !== 0;
  1926. }
  1927. /**
  1928. * Shortens the given absolute path to be relative to
  1929. * "$user/files".
  1930. *
  1931. * @param string $absolutePath absolute path which is under "files"
  1932. *
  1933. * @return string path relative to "files" with trimmed slashes or null
  1934. * if the path was NOT relative to files
  1935. *
  1936. * @throws \InvalidArgumentException if the given path was not under "files"
  1937. * @since 8.1.0
  1938. */
  1939. public function getPathRelativeToFiles($absolutePath) {
  1940. $path = Filesystem::normalizePath($absolutePath);
  1941. $parts = explode('/', trim($path, '/'), 3);
  1942. // "$user", "files", "path/to/dir"
  1943. if (!isset($parts[1]) || $parts[1] !== 'files') {
  1944. $this->logger->error(
  1945. '$absolutePath must be relative to "files", value is "{absolutePath}"',
  1946. [
  1947. 'absolutePath' => $absolutePath,
  1948. ]
  1949. );
  1950. throw new \InvalidArgumentException('$absolutePath must be relative to "files"');
  1951. }
  1952. if (isset($parts[2])) {
  1953. return $parts[2];
  1954. }
  1955. return '';
  1956. }
  1957. /**
  1958. * @param string $filename
  1959. * @return array
  1960. * @throws \OC\User\NoUserException
  1961. * @throws NotFoundException
  1962. */
  1963. public function getUidAndFilename($filename) {
  1964. $info = $this->getFileInfo($filename);
  1965. if (!$info instanceof \OCP\Files\FileInfo) {
  1966. throw new NotFoundException($this->getAbsolutePath($filename) . ' not found');
  1967. }
  1968. $uid = $info->getOwner()->getUID();
  1969. if ($uid != \OC_User::getUser()) {
  1970. Filesystem::initMountPoints($uid);
  1971. $ownerView = new View('/' . $uid . '/files');
  1972. try {
  1973. $filename = $ownerView->getPath($info['fileid']);
  1974. } catch (NotFoundException $e) {
  1975. throw new NotFoundException('File with id ' . $info['fileid'] . ' not found for user ' . $uid);
  1976. }
  1977. }
  1978. return [$uid, $filename];
  1979. }
  1980. /**
  1981. * Creates parent non-existing folders
  1982. *
  1983. * @param string $filePath
  1984. * @return bool
  1985. */
  1986. private function createParentDirectories($filePath) {
  1987. $directoryParts = explode('/', $filePath);
  1988. $directoryParts = array_filter($directoryParts);
  1989. foreach ($directoryParts as $key => $part) {
  1990. $currentPathElements = array_slice($directoryParts, 0, $key);
  1991. $currentPath = '/' . implode('/', $currentPathElements);
  1992. if ($this->is_file($currentPath)) {
  1993. return false;
  1994. }
  1995. if (!$this->file_exists($currentPath)) {
  1996. $this->mkdir($currentPath);
  1997. }
  1998. }
  1999. return true;
  2000. }
  2001. }