123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\Encryption;
- use OC\Files\View;
- use OCA\Encryption\Crypto\Crypt;
- use OCP\Encryption\IFile;
- use OCP\IConfig;
- use OCP\IUser;
- use OCP\IUserSession;
- use OCP\PreConditionNotMetException;
- class Recovery {
- /**
- * @var null|IUser
- */
- protected $user;
- /**
- * @var Crypt
- */
- protected $crypt;
- /**
- * @var KeyManager
- */
- private $keyManager;
- /**
- * @var IConfig
- */
- private $config;
- /**
- * @var View
- */
- private $view;
- /**
- * @var IFile
- */
- private $file;
- /**
- * @param IUserSession $userSession
- * @param Crypt $crypt
- * @param KeyManager $keyManager
- * @param IConfig $config
- * @param IFile $file
- * @param View $view
- */
- public function __construct(IUserSession $userSession,
- Crypt $crypt,
- KeyManager $keyManager,
- IConfig $config,
- IFile $file,
- View $view) {
- $this->user = ($userSession->isLoggedIn()) ? $userSession->getUser() : null;
- $this->crypt = $crypt;
- $this->keyManager = $keyManager;
- $this->config = $config;
- $this->view = $view;
- $this->file = $file;
- }
- /**
- * @param string $password
- * @return bool
- */
- public function enableAdminRecovery($password) {
- $appConfig = $this->config;
- $keyManager = $this->keyManager;
- if (!$keyManager->recoveryKeyExists()) {
- $keyPair = $this->crypt->createKeyPair();
- if (!is_array($keyPair)) {
- return false;
- }
- $this->keyManager->setRecoveryKey($password, $keyPair);
- }
- if ($keyManager->checkRecoveryPassword($password)) {
- $appConfig->setAppValue('encryption', 'recoveryAdminEnabled', '1');
- return true;
- }
- return false;
- }
- /**
- * change recovery key id
- *
- * @param string $newPassword
- * @param string $oldPassword
- * @return bool
- */
- public function changeRecoveryKeyPassword($newPassword, $oldPassword) {
- $recoveryKey = $this->keyManager->getSystemPrivateKey($this->keyManager->getRecoveryKeyId());
- $decryptedRecoveryKey = $this->crypt->decryptPrivateKey($recoveryKey, $oldPassword);
- if ($decryptedRecoveryKey === false) {
- return false;
- }
- $encryptedRecoveryKey = $this->crypt->encryptPrivateKey($decryptedRecoveryKey, $newPassword);
- $header = $this->crypt->generateHeader();
- if ($encryptedRecoveryKey) {
- $this->keyManager->setSystemPrivateKey($this->keyManager->getRecoveryKeyId(), $header . $encryptedRecoveryKey);
- return true;
- }
- return false;
- }
- /**
- * @param string $recoveryPassword
- * @return bool
- */
- public function disableAdminRecovery($recoveryPassword) {
- $keyManager = $this->keyManager;
- if ($keyManager->checkRecoveryPassword($recoveryPassword)) {
- // Set recoveryAdmin as disabled
- $this->config->setAppValue('encryption', 'recoveryAdminEnabled', '0');
- return true;
- }
- return false;
- }
- /**
- * check if recovery is enabled for user
- *
- * @param string $user if no user is given we check the current logged-in user
- *
- * @return bool
- */
- public function isRecoveryEnabledForUser($user = '') {
- $uid = $user === '' ? $this->user->getUID() : $user;
- $recoveryMode = $this->config->getUserValue($uid,
- 'encryption',
- 'recoveryEnabled',
- 0);
- return ($recoveryMode === '1');
- }
- /**
- * check if recovery is key is enabled by the administrator
- *
- * @return bool
- */
- public function isRecoveryKeyEnabled() {
- $enabled = $this->config->getAppValue('encryption', 'recoveryAdminEnabled', '0');
- return ($enabled === '1');
- }
- /**
- * @param string $value
- * @return bool
- */
- public function setRecoveryForUser($value) {
- try {
- $this->config->setUserValue($this->user->getUID(),
- 'encryption',
- 'recoveryEnabled',
- $value);
- if ($value === '1') {
- $this->addRecoveryKeys('/' . $this->user->getUID() . '/files/');
- } else {
- $this->removeRecoveryKeys('/' . $this->user->getUID() . '/files/');
- }
- return true;
- } catch (PreConditionNotMetException $e) {
- return false;
- }
- }
- /**
- * add recovery key to all encrypted files
- */
- private function addRecoveryKeys(string $path): void {
- $dirContent = $this->view->getDirectoryContent($path);
- foreach ($dirContent as $item) {
- $filePath = $item->getPath();
- if ($item['type'] === 'dir') {
- $this->addRecoveryKeys($filePath . '/');
- } else {
- $fileKey = $this->keyManager->getFileKey($filePath, $this->user->getUID(), null);
- if (!empty($fileKey)) {
- $accessList = $this->file->getAccessList($filePath);
- $publicKeys = [];
- foreach ($accessList['users'] as $uid) {
- $publicKeys[$uid] = $this->keyManager->getPublicKey($uid);
- }
- $publicKeys = $this->keyManager->addSystemKeys($accessList, $publicKeys, $this->user->getUID());
- $shareKeys = $this->crypt->multiKeyEncrypt($fileKey, $publicKeys);
- $this->keyManager->deleteLegacyFileKey($filePath);
- foreach ($shareKeys as $uid => $keyFile) {
- $this->keyManager->setShareKey($filePath, $uid, $keyFile);
- }
- }
- }
- }
- }
- /**
- * remove recovery key to all encrypted files
- */
- private function removeRecoveryKeys(string $path): void {
- $dirContent = $this->view->getDirectoryContent($path);
- foreach ($dirContent as $item) {
- $filePath = $item->getPath();
- if ($item['type'] === 'dir') {
- $this->removeRecoveryKeys($filePath . '/');
- } else {
- $this->keyManager->deleteShareKey($filePath, $this->keyManager->getRecoveryKeyId());
- }
- }
- }
- /**
- * recover users files with the recovery key
- */
- public function recoverUsersFiles(string $recoveryPassword, string $user): void {
- $encryptedKey = $this->keyManager->getSystemPrivateKey($this->keyManager->getRecoveryKeyId());
- $privateKey = $this->crypt->decryptPrivateKey($encryptedKey, $recoveryPassword);
- if ($privateKey !== false) {
- $this->recoverAllFiles('/' . $user . '/files/', $privateKey, $user);
- }
- }
- /**
- * recover users files
- */
- private function recoverAllFiles(string $path, string $privateKey, string $uid): void {
- $dirContent = $this->view->getDirectoryContent($path);
- foreach ($dirContent as $item) {
- // Get relative path from encryption/keyfiles
- $filePath = $item->getPath();
- if ($this->view->is_dir($filePath)) {
- $this->recoverAllFiles($filePath . '/', $privateKey, $uid);
- } else {
- $this->recoverFile($filePath, $privateKey, $uid);
- }
- }
- }
- /**
- * recover file
- */
- private function recoverFile(string $path, string $privateKey, string $uid): void {
- $encryptedFileKey = $this->keyManager->getEncryptedFileKey($path);
- $shareKey = $this->keyManager->getShareKey($path, $this->keyManager->getRecoveryKeyId());
- if ($encryptedFileKey && $shareKey && $privateKey) {
- $fileKey = $this->crypt->multiKeyDecryptLegacy($encryptedFileKey,
- $shareKey,
- $privateKey);
- } elseif ($shareKey && $privateKey) {
- $fileKey = $this->crypt->multiKeyDecrypt($shareKey, $privateKey);
- }
- if (!empty($fileKey)) {
- $accessList = $this->file->getAccessList($path);
- $publicKeys = [];
- foreach ($accessList['users'] as $user) {
- $publicKeys[$user] = $this->keyManager->getPublicKey($user);
- }
- $publicKeys = $this->keyManager->addSystemKeys($accessList, $publicKeys, $uid);
- $shareKeys = $this->crypt->multiKeyEncrypt($fileKey, $publicKeys);
- $this->keyManager->deleteLegacyFileKey($path);
- foreach ($shareKeys as $uid => $keyFile) {
- $this->keyManager->setShareKey($path, $uid, $keyFile);
- }
- }
- }
- }
|