123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <?php
- /**
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @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\Encryption\Keys;
- use OC\Encryption\Util;
- use OC\Files\View;
- use OCP\Encryption\Exceptions\GenericEncryptionException;
- class Storage implements \OCP\Encryption\Keys\IStorage {
- /** @var View */
- private $view;
- /** @var Util */
- private $util;
- // base dir where all the file related keys are stored
- private $keys_base_dir;
- private $encryption_base_dir;
- private $keyCache = array();
- /** @var string */
- private $encryptionModuleId;
- /**
- * @param string $encryptionModuleId
- * @param View $view
- * @param Util $util
- */
- public function __construct($encryptionModuleId, View $view, Util $util) {
- $this->view = $view;
- $this->util = $util;
- $this->encryptionModuleId = $encryptionModuleId;
- $this->encryption_base_dir = '/files_encryption';
- $this->keys_base_dir = $this->encryption_base_dir .'/keys';
- }
- /**
- * get user specific key
- *
- * @param string $uid ID if the user for whom we want the key
- * @param string $keyId id of the key
- *
- * @return mixed key
- */
- public function getUserKey($uid, $keyId) {
- $path = $this->constructUserKeyPath($keyId, $uid);
- return $this->getKey($path);
- }
- /**
- * get file specific key
- *
- * @param string $path path to file
- * @param string $keyId id of the key
- *
- * @return mixed key
- */
- public function getFileKey($path, $keyId) {
- $keyDir = $this->getFileKeyDir($path);
- return $this->getKey($keyDir . $keyId);
- }
- /**
- * get system-wide encryption keys not related to a specific user,
- * e.g something like a key for public link shares
- *
- * @param string $keyId id of the key
- *
- * @return mixed key
- */
- public function getSystemUserKey($keyId) {
- $path = $this->constructUserKeyPath($keyId);
- return $this->getKey($path);
- }
- /**
- * set user specific key
- *
- * @param string $uid ID if the user for whom we want the key
- * @param string $keyId id of the key
- * @param mixed $key
- */
- public function setUserKey($uid, $keyId, $key) {
- $path = $this->constructUserKeyPath($keyId, $uid);
- return $this->setKey($path, $key);
- }
- /**
- * set file specific key
- *
- * @param string $path path to file
- * @param string $keyId id of the key
- * @param boolean
- */
- public function setFileKey($path, $keyId, $key) {
- $keyDir = $this->getFileKeyDir($path);
- return $this->setKey($keyDir . $keyId, $key);
- }
- /**
- * set system-wide encryption keys not related to a specific user,
- * e.g something like a key for public link shares
- *
- * @param string $keyId id of the key
- * @param mixed $key
- *
- * @return mixed key
- */
- public function setSystemUserKey($keyId, $key) {
- $path = $this->constructUserKeyPath($keyId);
- return $this->setKey($path, $key);
- }
- /**
- * delete user specific key
- *
- * @param string $uid ID if the user for whom we want to delete the key
- * @param string $keyId id of the key
- *
- * @return boolean
- */
- public function deleteUserKey($uid, $keyId) {
- $path = $this->constructUserKeyPath($keyId, $uid);
- return $this->view->unlink($path);
- }
- /**
- * delete file specific key
- *
- * @param string $path path to file
- * @param string $keyId id of the key
- *
- * @return boolean
- */
- public function deleteFileKey($path, $keyId) {
- $keyDir = $this->getFileKeyDir($path);
- return $this->view->unlink($keyDir . $keyId);
- }
- /**
- * delete all file keys for a given file
- *
- * @param string $path to the file
- * @return boolean
- */
- public function deleteAllFileKeys($path) {
- $keyDir = $this->getFileKeyDir($path);
- return $this->view->deleteAll(dirname($keyDir));
- }
- /**
- * delete system-wide encryption keys not related to a specific user,
- * e.g something like a key for public link shares
- *
- * @param string $keyId id of the key
- *
- * @return boolean
- */
- public function deleteSystemUserKey($keyId) {
- $path = $this->constructUserKeyPath($keyId);
- return $this->view->unlink($path);
- }
- /**
- * construct path to users key
- *
- * @param string $keyId
- * @param string $uid
- * @return string
- */
- protected function constructUserKeyPath($keyId, $uid = null) {
- if ($uid === null) {
- $path = $this->encryption_base_dir . '/' . $this->encryptionModuleId . '/' . $keyId;
- } else {
- $path = '/' . $uid . $this->encryption_base_dir . '/'
- . $this->encryptionModuleId . '/' . $uid . '.' . $keyId;
- }
- return $path;
- }
- /**
- * read key from hard disk
- *
- * @param string $path to key
- * @return string
- */
- private function getKey($path) {
- $key = '';
- if ($this->view->file_exists($path)) {
- if (isset($this->keyCache[$path])) {
- $key = $this->keyCache[$path];
- } else {
- $key = $this->view->file_get_contents($path);
- $this->keyCache[$path] = $key;
- }
- }
- return $key;
- }
- /**
- * write key to disk
- *
- *
- * @param string $path path to key directory
- * @param string $key key
- * @return bool
- */
- private function setKey($path, $key) {
- $this->keySetPreparation(dirname($path));
- $result = $this->view->file_put_contents($path, $key);
- if (is_int($result) && $result > 0) {
- $this->keyCache[$path] = $key;
- return true;
- }
- return false;
- }
- /**
- * get path to key folder for a given file
- *
- * @param string $path path to the file, relative to data/
- * @return string
- * @throws GenericEncryptionException
- * @internal param string $keyId
- */
- private function getFileKeyDir($path) {
- if ($this->view->is_dir($path)) {
- throw new GenericEncryptionException("file was expected but directory was given: $path");
- }
- list($owner, $filename) = $this->util->getUidAndFilename($path);
- $filename = $this->util->stripPartialFileExtension($filename);
- // in case of system wide mount points the keys are stored directly in the data directory
- if ($this->util->isSystemWideMountPoint($filename)) {
- $keyPath = $this->keys_base_dir . $filename . '/';
- } else {
- $keyPath = '/' . $owner . $this->keys_base_dir . $filename . '/';
- }
- return \OC\Files\Filesystem::normalizePath($keyPath . $this->encryptionModuleId . '/', false);
- }
- /**
- * move keys if a file was renamed
- *
- * @param string $source
- * @param string $target
- * @param string $owner
- * @param bool $systemWide
- */
- public function renameKeys($source, $target) {
- list($owner, $source) = $this->util->getUidAndFilename($source);
- list(, $target) = $this->util->getUidAndFilename($target);
- $systemWide = $this->util->isSystemWideMountPoint($target);
- if ($systemWide) {
- $sourcePath = $this->keys_base_dir . $source . '/';
- $targetPath = $this->keys_base_dir . $target . '/';
- } else {
- $sourcePath = '/' . $owner . $this->keys_base_dir . $source . '/';
- $targetPath = '/' . $owner . $this->keys_base_dir . $target . '/';
- }
- if ($this->view->file_exists($sourcePath)) {
- $this->keySetPreparation(dirname($targetPath));
- $this->view->rename($sourcePath, $targetPath);
- }
- }
- /**
- * copy keys if a file was renamed
- *
- * @param string $source
- * @param string $target
- * @param string $owner
- * @param bool $systemWide
- */
- public function copyKeys($source, $target) {
- list($owner, $source) = $this->util->getUidAndFilename($source);
- list(, $target) = $this->util->getUidAndFilename($target);
- $systemWide = $this->util->isSystemWideMountPoint($target);
- if ($systemWide) {
- $sourcePath = $this->keys_base_dir . $source . '/';
- $targetPath = $this->keys_base_dir . $target . '/';
- } else {
- $sourcePath = '/' . $owner . $this->keys_base_dir . $source . '/';
- $targetPath = '/' . $owner . $this->keys_base_dir . $target . '/';
- }
- if ($this->view->file_exists($sourcePath)) {
- $this->keySetPreparation(dirname($targetPath));
- $this->view->copy($sourcePath, $targetPath);
- }
- }
- /**
- * Make preparations to filesystem for saving a keyfile
- *
- * @param string $path relative to the views root
- */
- protected function keySetPreparation($path) {
- // If the file resides within a subdirectory, create it
- if (!$this->view->file_exists($path)) {
- $sub_dirs = explode('/', ltrim($path, '/'));
- $dir = '';
- foreach ($sub_dirs as $sub_dir) {
- $dir .= '/' . $sub_dir;
- if (!$this->view->is_dir($dir)) {
- $this->view->mkdir($dir);
- }
- }
- }
- }
- }
|