123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- <?php
- /**
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Clark Tomlinson <fallen013@gmail.com>
- * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @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 OCA\Encryption\Crypto;
- use OC\Encryption\Exceptions\DecryptionFailedException;
- use OCA\Encryption\Exceptions\PublicKeyMissingException;
- use OCA\Encryption\Util;
- use OCP\Encryption\IEncryptionModule;
- use OCA\Encryption\KeyManager;
- use OCP\IL10N;
- use OCP\ILogger;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- class Encryption implements IEncryptionModule {
- const ID = 'OC_DEFAULT_MODULE';
- const DISPLAY_NAME = 'Default encryption module';
- /**
- * @var Crypt
- */
- private $crypt;
- /** @var string */
- private $cipher;
- /** @var string */
- private $path;
- /** @var string */
- private $user;
- /** @var string */
- private $fileKey;
- /** @var string */
- private $writeCache;
- /** @var KeyManager */
- private $keyManager;
- /** @var array */
- private $accessList;
- /** @var boolean */
- private $isWriteOperation;
- /** @var Util */
- private $util;
- /** @var ILogger */
- private $logger;
- /** @var IL10N */
- private $l;
- /** @var EncryptAll */
- private $encryptAll;
- /**
- *
- * @param Crypt $crypt
- * @param KeyManager $keyManager
- * @param Util $util
- * @param EncryptAll $encryptAll
- * @param ILogger $logger
- * @param IL10N $il10n
- */
- public function __construct(Crypt $crypt,
- KeyManager $keyManager,
- Util $util,
- EncryptAll $encryptAll,
- ILogger $logger,
- IL10N $il10n) {
- $this->crypt = $crypt;
- $this->keyManager = $keyManager;
- $this->util = $util;
- $this->encryptAll = $encryptAll;
- $this->logger = $logger;
- $this->l = $il10n;
- }
- /**
- * @return string defining the technical unique id
- */
- public function getId() {
- return self::ID;
- }
- /**
- * In comparison to getKey() this function returns a human readable (maybe translated) name
- *
- * @return string
- */
- public function getDisplayName() {
- return self::DISPLAY_NAME;
- }
- /**
- * start receiving chunks from a file. This is the place where you can
- * perform some initial step before starting encrypting/decrypting the
- * chunks
- *
- * @param string $path to the file
- * @param string $user who read/write the file
- * @param string $mode php stream open mode
- * @param array $header contains the header data read from the file
- * @param array $accessList who has access to the file contains the key 'users' and 'public'
- *
- * @return array $header contain data as key-value pairs which should be
- * written to the header, in case of a write operation
- * or if no additional data is needed return a empty array
- */
- public function begin($path, $user, $mode, array $header, array $accessList) {
- $this->path = $this->getPathToRealFile($path);
- $this->accessList = $accessList;
- $this->user = $user;
- $this->isWriteOperation = false;
- $this->writeCache = '';
- $this->fileKey = $this->keyManager->getFileKey($this->path, $this->user);
- if (
- $mode === 'w'
- || $mode === 'w+'
- || $mode === 'wb'
- || $mode === 'wb+'
- ) {
- $this->isWriteOperation = true;
- if (empty($this->fileKey)) {
- $this->fileKey = $this->crypt->generateFileKey();
- }
- }
- if (isset($header['cipher'])) {
- $this->cipher = $header['cipher'];
- } elseif ($this->isWriteOperation) {
- $this->cipher = $this->crypt->getCipher();
- } else {
- // if we read a file without a header we fall-back to the legacy cipher
- // which was used in <=oC6
- $this->cipher = $this->crypt->getLegacyCipher();
- }
- return array('cipher' => $this->cipher);
- }
- /**
- * last chunk received. This is the place where you can perform some final
- * operation and return some remaining data if something is left in your
- * buffer.
- *
- * @param string $path to the file
- * @return string remained data which should be written to the file in case
- * of a write operation
- * @throws PublicKeyMissingException
- * @throws \Exception
- * @throws \OCA\Encryption\Exceptions\MultiKeyEncryptException
- */
- public function end($path) {
- $result = '';
- if ($this->isWriteOperation) {
- if (!empty($this->writeCache)) {
- $result = $this->crypt->symmetricEncryptFileContent($this->writeCache, $this->fileKey);
- $this->writeCache = '';
- }
- $publicKeys = array();
- foreach ($this->accessList['users'] as $uid) {
- try {
- $publicKeys[$uid] = $this->keyManager->getPublicKey($uid);
- } catch (PublicKeyMissingException $e) {
- $this->logger->warning(
- 'no public key found for user "{uid}", user will not be able to read the file',
- ['app' => 'encryption', 'uid' => $uid]
- );
- // if the public key of the owner is missing we should fail
- if ($uid === $this->user) {
- throw $e;
- }
- }
- }
- $publicKeys = $this->keyManager->addSystemKeys($this->accessList, $publicKeys, $this->user);
- $encryptedKeyfiles = $this->crypt->multiKeyEncrypt($this->fileKey, $publicKeys);
- $this->keyManager->setAllFileKeys($this->path, $encryptedKeyfiles);
- }
- return $result;
- }
- /**
- * encrypt data
- *
- * @param string $data you want to encrypt
- * @return mixed encrypted data
- */
- public function encrypt($data) {
- // If extra data is left over from the last round, make sure it
- // is integrated into the next 6126 / 8192 block
- if ($this->writeCache) {
- // Concat writeCache to start of $data
- $data = $this->writeCache . $data;
- // Clear the write cache, ready for reuse - it has been
- // flushed and its old contents processed
- $this->writeCache = '';
- }
- $encrypted = '';
- // While there still remains some data to be processed & written
- while (strlen($data) > 0) {
- // Remaining length for this iteration, not of the
- // entire file (may be greater than 8192 bytes)
- $remainingLength = strlen($data);
- // If data remaining to be written is less than the
- // size of 1 6126 byte block
- if ($remainingLength < 6126) {
- // Set writeCache to contents of $data
- // The writeCache will be carried over to the
- // next write round, and added to the start of
- // $data to ensure that written blocks are
- // always the correct length. If there is still
- // data in writeCache after the writing round
- // has finished, then the data will be written
- // to disk by $this->flush().
- $this->writeCache = $data;
- // Clear $data ready for next round
- $data = '';
- } else {
- // Read the chunk from the start of $data
- $chunk = substr($data, 0, 6126);
- $encrypted .= $this->crypt->symmetricEncryptFileContent($chunk, $this->fileKey);
- // Remove the chunk we just processed from
- // $data, leaving only unprocessed data in $data
- // var, for handling on the next round
- $data = substr($data, 6126);
- }
- }
- return $encrypted;
- }
- /**
- * decrypt data
- *
- * @param string $data you want to decrypt
- * @return mixed decrypted data
- * @throws DecryptionFailedException
- */
- public function decrypt($data) {
- if (empty($this->fileKey)) {
- $msg = 'Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.';
- $hint = $this->l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');
- $this->logger->error($msg);
- throw new DecryptionFailedException($msg, $hint);
- }
- $result = '';
- if (!empty($data)) {
- $result = $this->crypt->symmetricDecryptFileContent($data, $this->fileKey, $this->cipher);
- }
- return $result;
- }
- /**
- * update encrypted file, e.g. give additional users access to the file
- *
- * @param string $path path to the file which should be updated
- * @param string $uid of the user who performs the operation
- * @param array $accessList who has access to the file contains the key 'users' and 'public'
- * @return boolean
- */
- public function update($path, $uid, array $accessList) {
- $fileKey = $this->keyManager->getFileKey($path, $uid);
- if (!empty($fileKey)) {
- $publicKeys = array();
- foreach ($accessList['users'] as $user) {
- $publicKeys[$user] = $this->keyManager->getPublicKey($user);
- }
- $publicKeys = $this->keyManager->addSystemKeys($accessList, $publicKeys, $uid);
- $encryptedFileKey = $this->crypt->multiKeyEncrypt($fileKey, $publicKeys);
- $this->keyManager->deleteAllFileKeys($path);
- $this->keyManager->setAllFileKeys($path, $encryptedFileKey);
- } else {
- $this->logger->debug('no file key found, we assume that the file "{file}" is not encrypted',
- array('file' => $path, 'app' => 'encryption'));
- return false;
- }
- return true;
- }
- /**
- * should the file be encrypted or not
- *
- * @param string $path
- * @return boolean
- */
- public function shouldEncrypt($path) {
- $parts = explode('/', $path);
- if (count($parts) < 4) {
- return false;
- }
- if ($parts[2] == 'files') {
- return true;
- }
- if ($parts[2] == 'files_versions') {
- return true;
- }
- if ($parts[2] == 'files_trashbin') {
- return true;
- }
- return false;
- }
- /**
- * get size of the unencrypted payload per block.
- * ownCloud read/write files with a block size of 8192 byte
- *
- * @return integer
- */
- public function getUnencryptedBlockSize() {
- return 6126;
- }
- /**
- * check if the encryption module is able to read the file,
- * e.g. if all encryption keys exists
- *
- * @param string $path
- * @param string $uid user for whom we want to check if he can read the file
- * @return bool
- * @throws DecryptionFailedException
- */
- public function isReadable($path, $uid) {
- $fileKey = $this->keyManager->getFileKey($path, $uid);
- if (empty($fileKey)) {
- $owner = $this->util->getOwner($path);
- if ($owner !== $uid) {
- // if it is a shared file we throw a exception with a useful
- // error message because in this case it means that the file was
- // shared with the user at a point where the user didn't had a
- // valid private/public key
- $msg = 'Encryption module "' . $this->getDisplayName() .
- '" is not able to read ' . $path;
- $hint = $this->l->t('Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');
- $this->logger->warning($msg);
- throw new DecryptionFailedException($msg, $hint);
- }
- return false;
- }
- return true;
- }
- /**
- * Initial encryption of all files
- *
- * @param InputInterface $input
- * @param OutputInterface $output write some status information to the terminal during encryption
- * @return bool
- */
- public function encryptAll(InputInterface $input, OutputInterface $output) {
- return $this->encryptAll->encryptAll($input, $output);
- }
- /**
- * @param string $path
- * @return string
- */
- protected function getPathToRealFile($path) {
- $realPath = $path;
- $parts = explode('/', $path);
- if ($parts[2] === 'files_versions') {
- $realPath = '/' . $parts[1] . '/files/' . implode('/', array_slice($parts, 3));
- $length = strrpos($realPath, '.');
- $realPath = substr($realPath, 0, $length);
- }
- return $realPath;
- }
- }
|