123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Dariusz Olszewski <starypatyk@users.noreply.github.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC\Files\Config;
- use OCP\Cache\CappedMemoryCache;
- use OCA\Files_Sharing\SharedMount;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\Diagnostics\IEventLogger;
- use OCP\Files\Config\ICachedMountFileInfo;
- use OCP\Files\Config\ICachedMountInfo;
- use OCP\Files\Config\IUserMountCache;
- use OCP\Files\Mount\IMountPoint;
- use OCP\Files\NotFoundException;
- use OCP\IDBConnection;
- use OCP\IUser;
- use OCP\IUserManager;
- use Psr\Log\LoggerInterface;
- /**
- * Cache mounts points per user in the cache so we can easily look them up
- */
- class UserMountCache implements IUserMountCache {
- private IDBConnection $connection;
- private IUserManager $userManager;
- /**
- * Cached mount info.
- * @var CappedMemoryCache<ICachedMountInfo[]>
- **/
- private CappedMemoryCache $mountsForUsers;
- private LoggerInterface $logger;
- /** @var CappedMemoryCache<array> */
- private CappedMemoryCache $cacheInfoCache;
- private IEventLogger $eventLogger;
- /**
- * UserMountCache constructor.
- */
- public function __construct(
- IDBConnection $connection,
- IUserManager $userManager,
- LoggerInterface $logger,
- IEventLogger $eventLogger
- ) {
- $this->connection = $connection;
- $this->userManager = $userManager;
- $this->logger = $logger;
- $this->eventLogger = $eventLogger;
- $this->cacheInfoCache = new CappedMemoryCache();
- $this->mountsForUsers = new CappedMemoryCache();
- }
- public function registerMounts(IUser $user, array $mounts, array $mountProviderClasses = null) {
- $this->eventLogger->start('fs:setup:user:register', 'Registering mounts for user');
- // filter out non-proper storages coming from unit tests
- $mounts = array_filter($mounts, function (IMountPoint $mount) {
- return $mount instanceof SharedMount || ($mount->getStorage() && $mount->getStorage()->getCache());
- });
- /** @var ICachedMountInfo[] $newMounts */
- $newMounts = array_map(function (IMountPoint $mount) use ($user) {
- // filter out any storages which aren't scanned yet since we aren't interested in files from those storages (yet)
- if ($mount->getStorageRootId() === -1) {
- return null;
- } else {
- return new LazyStorageMountInfo($user, $mount);
- }
- }, $mounts);
- $newMounts = array_values(array_filter($newMounts));
- $newMountKeys = array_map(function (ICachedMountInfo $mount) {
- return $mount->getRootId() . '::' . $mount->getMountPoint();
- }, $newMounts);
- $newMounts = array_combine($newMountKeys, $newMounts);
- $cachedMounts = $this->getMountsForUser($user);
- if (is_array($mountProviderClasses)) {
- $cachedMounts = array_filter($cachedMounts, function (ICachedMountInfo $mountInfo) use ($mountProviderClasses, $newMounts) {
- // for existing mounts that didn't have a mount provider set
- // we still want the ones that map to new mounts
- $mountKey = $mountInfo->getRootId() . '::' . $mountInfo->getMountPoint();
- if ($mountInfo->getMountProvider() === '' && isset($newMounts[$mountKey])) {
- return true;
- }
- return in_array($mountInfo->getMountProvider(), $mountProviderClasses);
- });
- }
- $cachedRootKeys = array_map(function (ICachedMountInfo $mount) {
- return $mount->getRootId() . '::' . $mount->getMountPoint();
- }, $cachedMounts);
- $cachedMounts = array_combine($cachedRootKeys, $cachedMounts);
- $addedMounts = [];
- $removedMounts = [];
- foreach ($newMounts as $mountKey => $newMount) {
- if (!isset($cachedMounts[$mountKey])) {
- $addedMounts[] = $newMount;
- }
- }
- foreach ($cachedMounts as $mountKey => $cachedMount) {
- if (!isset($newMounts[$mountKey])) {
- $removedMounts[] = $cachedMount;
- }
- }
- $changedMounts = $this->findChangedMounts($newMounts, $cachedMounts);
- $this->connection->beginTransaction();
- try {
- foreach ($addedMounts as $mount) {
- $this->addToCache($mount);
- /** @psalm-suppress InvalidArgument */
- $this->mountsForUsers[$user->getUID()][] = $mount;
- }
- foreach ($removedMounts as $mount) {
- $this->removeFromCache($mount);
- $index = array_search($mount, $this->mountsForUsers[$user->getUID()]);
- unset($this->mountsForUsers[$user->getUID()][$index]);
- }
- foreach ($changedMounts as $mount) {
- $this->updateCachedMount($mount);
- }
- $this->connection->commit();
- } catch (\Throwable $e) {
- $this->connection->rollBack();
- throw $e;
- }
- $this->eventLogger->end('fs:setup:user:register');
- }
- /**
- * @param ICachedMountInfo[] $newMounts
- * @param ICachedMountInfo[] $cachedMounts
- * @return ICachedMountInfo[]
- */
- private function findChangedMounts(array $newMounts, array $cachedMounts) {
- $new = [];
- foreach ($newMounts as $mount) {
- $new[$mount->getRootId() . '::' . $mount->getMountPoint()] = $mount;
- }
- $changed = [];
- foreach ($cachedMounts as $cachedMount) {
- $key = $cachedMount->getRootId() . '::' . $cachedMount->getMountPoint();
- if (isset($new[$key])) {
- $newMount = $new[$key];
- if (
- $newMount->getMountPoint() !== $cachedMount->getMountPoint() ||
- $newMount->getStorageId() !== $cachedMount->getStorageId() ||
- $newMount->getMountId() !== $cachedMount->getMountId() ||
- $newMount->getMountProvider() !== $cachedMount->getMountProvider()
- ) {
- $changed[] = $newMount;
- }
- }
- }
- return $changed;
- }
- private function addToCache(ICachedMountInfo $mount) {
- if ($mount->getStorageId() !== -1) {
- $this->connection->insertIfNotExist('*PREFIX*mounts', [
- 'storage_id' => $mount->getStorageId(),
- 'root_id' => $mount->getRootId(),
- 'user_id' => $mount->getUser()->getUID(),
- 'mount_point' => $mount->getMountPoint(),
- 'mount_id' => $mount->getMountId(),
- 'mount_provider_class' => $mount->getMountProvider(),
- ], ['root_id', 'user_id', 'mount_point']);
- } else {
- // in some cases this is legitimate, like orphaned shares
- $this->logger->debug('Could not get storage info for mount at ' . $mount->getMountPoint());
- }
- }
- private function updateCachedMount(ICachedMountInfo $mount) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->update('mounts')
- ->set('storage_id', $builder->createNamedParameter($mount->getStorageId()))
- ->set('mount_point', $builder->createNamedParameter($mount->getMountPoint()))
- ->set('mount_id', $builder->createNamedParameter($mount->getMountId(), IQueryBuilder::PARAM_INT))
- ->set('mount_provider_class', $builder->createNamedParameter($mount->getMountProvider()))
- ->where($builder->expr()->eq('user_id', $builder->createNamedParameter($mount->getUser()->getUID())))
- ->andWhere($builder->expr()->eq('root_id', $builder->createNamedParameter($mount->getRootId(), IQueryBuilder::PARAM_INT)));
- $query->execute();
- }
- private function removeFromCache(ICachedMountInfo $mount) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->delete('mounts')
- ->where($builder->expr()->eq('user_id', $builder->createNamedParameter($mount->getUser()->getUID())))
- ->andWhere($builder->expr()->eq('root_id', $builder->createNamedParameter($mount->getRootId(), IQueryBuilder::PARAM_INT)))
- ->andWhere($builder->expr()->eq('mount_point', $builder->createNamedParameter($mount->getMountPoint())));
- $query->execute();
- }
- private function dbRowToMountInfo(array $row) {
- $user = $this->userManager->get($row['user_id']);
- if (is_null($user)) {
- return null;
- }
- $mount_id = $row['mount_id'];
- if (!is_null($mount_id)) {
- $mount_id = (int)$mount_id;
- }
- return new CachedMountInfo(
- $user,
- (int)$row['storage_id'],
- (int)$row['root_id'],
- $row['mount_point'],
- $row['mount_provider_class'] ?? '',
- $mount_id,
- isset($row['path']) ? $row['path'] : '',
- );
- }
- /**
- * @param IUser $user
- * @return ICachedMountInfo[]
- */
- public function getMountsForUser(IUser $user) {
- if (!isset($this->mountsForUsers[$user->getUID()])) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select('storage_id', 'root_id', 'user_id', 'mount_point', 'mount_id', 'f.path', 'mount_provider_class')
- ->from('mounts', 'm')
- ->innerJoin('m', 'filecache', 'f', $builder->expr()->eq('m.root_id', 'f.fileid'))
- ->where($builder->expr()->eq('user_id', $builder->createPositionalParameter($user->getUID())));
- $result = $query->execute();
- $rows = $result->fetchAll();
- $result->closeCursor();
- $this->mountsForUsers[$user->getUID()] = array_filter(array_map([$this, 'dbRowToMountInfo'], $rows));
- }
- return $this->mountsForUsers[$user->getUID()];
- }
- /**
- * @param int $numericStorageId
- * @param string|null $user limit the results to a single user
- * @return CachedMountInfo[]
- */
- public function getMountsForStorageId($numericStorageId, $user = null) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select('storage_id', 'root_id', 'user_id', 'mount_point', 'mount_id', 'f.path', 'mount_provider_class')
- ->from('mounts', 'm')
- ->innerJoin('m', 'filecache', 'f', $builder->expr()->eq('m.root_id', 'f.fileid'))
- ->where($builder->expr()->eq('storage_id', $builder->createPositionalParameter($numericStorageId, IQueryBuilder::PARAM_INT)));
- if ($user) {
- $query->andWhere($builder->expr()->eq('user_id', $builder->createPositionalParameter($user)));
- }
- $result = $query->execute();
- $rows = $result->fetchAll();
- $result->closeCursor();
- return array_filter(array_map([$this, 'dbRowToMountInfo'], $rows));
- }
- /**
- * @param int $rootFileId
- * @return CachedMountInfo[]
- */
- public function getMountsForRootId($rootFileId) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select('storage_id', 'root_id', 'user_id', 'mount_point', 'mount_id', 'f.path', 'mount_provider_class')
- ->from('mounts', 'm')
- ->innerJoin('m', 'filecache', 'f', $builder->expr()->eq('m.root_id', 'f.fileid'))
- ->where($builder->expr()->eq('root_id', $builder->createPositionalParameter($rootFileId, IQueryBuilder::PARAM_INT)));
- $result = $query->execute();
- $rows = $result->fetchAll();
- $result->closeCursor();
- return array_filter(array_map([$this, 'dbRowToMountInfo'], $rows));
- }
- /**
- * @param $fileId
- * @return array{int, string, int}
- * @throws \OCP\Files\NotFoundException
- */
- private function getCacheInfoFromFileId($fileId): array {
- if (!isset($this->cacheInfoCache[$fileId])) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select('storage', 'path', 'mimetype')
- ->from('filecache')
- ->where($builder->expr()->eq('fileid', $builder->createNamedParameter($fileId, IQueryBuilder::PARAM_INT)));
- $result = $query->execute();
- $row = $result->fetch();
- $result->closeCursor();
- if (is_array($row)) {
- $this->cacheInfoCache[$fileId] = [
- (int)$row['storage'],
- (string)$row['path'],
- (int)$row['mimetype']
- ];
- } else {
- throw new NotFoundException('File with id "' . $fileId . '" not found');
- }
- }
- return $this->cacheInfoCache[$fileId];
- }
- /**
- * @param int $fileId
- * @param string|null $user optionally restrict the results to a single user
- * @return ICachedMountFileInfo[]
- * @since 9.0.0
- */
- public function getMountsForFileId($fileId, $user = null) {
- try {
- [$storageId, $internalPath] = $this->getCacheInfoFromFileId($fileId);
- } catch (NotFoundException $e) {
- return [];
- }
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select('storage_id', 'root_id', 'user_id', 'mount_point', 'mount_id', 'f.path', 'mount_provider_class')
- ->from('mounts', 'm')
- ->innerJoin('m', 'filecache', 'f', $builder->expr()->eq('m.root_id', 'f.fileid'))
- ->where($builder->expr()->eq('storage_id', $builder->createPositionalParameter($storageId, IQueryBuilder::PARAM_INT)));
- if ($user) {
- $query->andWhere($builder->expr()->eq('user_id', $builder->createPositionalParameter($user)));
- }
- $result = $query->execute();
- $rows = $result->fetchAll();
- $result->closeCursor();
- // filter mounts that are from the same storage but a different directory
- $filteredMounts = array_filter($rows, function (array $row) use ($internalPath, $fileId) {
- if ($fileId === (int)$row['root_id']) {
- return true;
- }
- $internalMountPath = $row['path'] ?? '';
- return $internalMountPath === '' || substr($internalPath, 0, strlen($internalMountPath) + 1) === $internalMountPath . '/';
- });
- $filteredMounts = array_filter(array_map([$this, 'dbRowToMountInfo'], $filteredMounts));
- return array_map(function (ICachedMountInfo $mount) use ($internalPath) {
- return new CachedMountFileInfo(
- $mount->getUser(),
- $mount->getStorageId(),
- $mount->getRootId(),
- $mount->getMountPoint(),
- $mount->getMountId(),
- $mount->getMountProvider(),
- $mount->getRootInternalPath(),
- $internalPath
- );
- }, $filteredMounts);
- }
- /**
- * Remove all cached mounts for a user
- *
- * @param IUser $user
- */
- public function removeUserMounts(IUser $user) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->delete('mounts')
- ->where($builder->expr()->eq('user_id', $builder->createNamedParameter($user->getUID())));
- $query->execute();
- }
- public function removeUserStorageMount($storageId, $userId) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->delete('mounts')
- ->where($builder->expr()->eq('user_id', $builder->createNamedParameter($userId)))
- ->andWhere($builder->expr()->eq('storage_id', $builder->createNamedParameter($storageId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- }
- public function remoteStorageMounts($storageId) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->delete('mounts')
- ->where($builder->expr()->eq('storage_id', $builder->createNamedParameter($storageId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- }
- /**
- * @param array $users
- * @return array
- */
- public function getUsedSpaceForUsers(array $users) {
- $builder = $this->connection->getQueryBuilder();
- $slash = $builder->createNamedParameter('/');
- $mountPoint = $builder->func()->concat(
- $builder->func()->concat($slash, 'user_id'),
- $slash
- );
- $userIds = array_map(function (IUser $user) {
- return $user->getUID();
- }, $users);
- $query = $builder->select('m.user_id', 'f.size')
- ->from('mounts', 'm')
- ->innerJoin('m', 'filecache', 'f',
- $builder->expr()->andX(
- $builder->expr()->eq('m.storage_id', 'f.storage'),
- $builder->expr()->eq('f.path_hash', $builder->createNamedParameter(md5('files')))
- ))
- ->where($builder->expr()->eq('m.mount_point', $mountPoint))
- ->andWhere($builder->expr()->in('m.user_id', $builder->createNamedParameter($userIds, IQueryBuilder::PARAM_STR_ARRAY)));
- $result = $query->execute();
- $results = [];
- while ($row = $result->fetch()) {
- $results[$row['user_id']] = $row['size'];
- }
- $result->closeCursor();
- return $results;
- }
- public function clear(): void {
- $this->cacheInfoCache = new CappedMemoryCache();
- $this->mountsForUsers = new CappedMemoryCache();
- }
- public function getMountForPath(IUser $user, string $path): ICachedMountInfo {
- $mounts = $this->getMountsForUser($user);
- $mountPoints = array_map(function (ICachedMountInfo $mount) {
- return $mount->getMountPoint();
- }, $mounts);
- $mounts = array_combine($mountPoints, $mounts);
- $current = $path;
- // walk up the directory tree until we find a path that has a mountpoint set
- // the loop will return if a mountpoint is found or break if none are found
- while (true) {
- $mountPoint = $current . '/';
- if (isset($mounts[$mountPoint])) {
- return $mounts[$mountPoint];
- } elseif ($current === '') {
- break;
- }
- $current = dirname($current);
- if ($current === '.' || $current === '/') {
- $current = '';
- }
- }
- throw new NotFoundException("No cached mount for path " . $path);
- }
- public function getMountsInPath(IUser $user, string $path): array {
- $path = rtrim($path, '/') . '/';
- $mounts = $this->getMountsForUser($user);
- return array_filter($mounts, function (ICachedMountInfo $mount) use ($path) {
- return $mount->getMountPoint() !== $path && str_starts_with($mount->getMountPoint(), $path);
- });
- }
- }
|