Skip to content

Commit

Permalink
Merge pull request #4030 from nextcloud/masterkey-publiclink-nc12
Browse files Browse the repository at this point in the history
Make public links work with master key
  • Loading branch information
rullzer authored Apr 4, 2017
2 parents efb21a9 + 6b9ef15 commit da178db
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 18 deletions.
17 changes: 14 additions & 3 deletions apps/encryption/lib/KeyManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,10 @@ public function getPrivateKey($userId) {
* @return string
*/
public function getFileKey($path, $uid) {
if ($uid === '') {
$uid = null;
}
$publicAccess = is_null($uid);
$encryptedFileKey = $this->keyStorage->getFileKey($path, $this->fileKeyId, Encryption::ID);

if (empty($encryptedFileKey)) {
Expand All @@ -407,9 +411,16 @@ public function getFileKey($path, $uid) {

if ($this->util->isMasterKeyEnabled()) {
$uid = $this->getMasterKeyId();
}

if (is_null($uid)) {
$shareKey = $this->getShareKey($path, $uid);
if ($publicAccess) {
$privateKey = $this->getSystemPrivateKey($uid);
$privateKey = $this->crypt->decryptPrivateKey($privateKey, $this->getMasterKeyPassword(), $uid);
} else {
// when logged in, the master key is already decrypted in the session
$privateKey = $this->session->getPrivateKey();
}
} else if ($publicAccess) {
// use public share key for public links
$uid = $this->getPublicShareKeyId();
$shareKey = $this->getShareKey($path, $uid);
$privateKey = $this->keyStorage->getSystemUserKey($this->publicShareKeyId . '.privateKey', Encryption::ID);
Expand Down
35 changes: 20 additions & 15 deletions apps/encryption/tests/KeyManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,19 @@ public function testGetEncryptedFileKey() {
$this->assertTrue($this->instance->getEncryptedFileKey('/'));
}

public function dataTestGetFileKey() {
return [
['user1', false, 'privateKey', true],
['user1', false, false, ''],
['user1', true, 'privateKey', true],
['user1', true, false, ''],
[null, false, 'privateKey', true],
[null, false, false, ''],
[null, true, 'privateKey', true],
[null, true, false, '']
];
}

/**
* @dataProvider dataTestGetFileKey
*
Expand All @@ -363,6 +376,10 @@ public function testGetFileKey($uid, $isMasterKeyEnabled, $privateKey, $expected

if ($isMasterKeyEnabled) {
$expectedUid = 'masterKeyId';
$this->configMock->expects($this->any())->method('getSystemValue')->with('secret')
->willReturn('password');
} else if (!$uid) {
$expectedUid = 'systemKeyId';
} else {
$expectedUid = $uid;
}
Expand All @@ -379,6 +396,9 @@ public function testGetFileKey($uid, $isMasterKeyEnabled, $privateKey, $expected
->with($path, $expectedUid . '.shareKey', 'OC_DEFAULT_MODULE')
->willReturn(true);

$this->utilMock->expects($this->any())->method('isMasterKeyEnabled')
->willReturn($isMasterKeyEnabled);

if (is_null($uid)) {
$this->keyStorageMock->expects($this->once())
->method('getSystemUserKey')
Expand All @@ -389,8 +409,6 @@ public function testGetFileKey($uid, $isMasterKeyEnabled, $privateKey, $expected
} else {
$this->keyStorageMock->expects($this->never())
->method('getSystemUserKey');
$this->utilMock->expects($this->once())->method('isMasterKeyEnabled')
->willReturn($isMasterKeyEnabled);
$this->sessionMock->expects($this->once())->method('getPrivateKey')->willReturn($privateKey);
}

Expand All @@ -409,19 +427,6 @@ public function testGetFileKey($uid, $isMasterKeyEnabled, $privateKey, $expected

}

public function dataTestGetFileKey() {
return [
['user1', false, 'privateKey', true],
['user1', false, false, ''],
['user1', true, 'privateKey', true],
['user1', true, false, ''],
['', false, 'privateKey', true],
['', false, false, ''],
['', true, 'privateKey', true],
['', true, false, '']
];
}

public function testDeletePrivateKey() {
$this->keyStorageMock->expects($this->once())
->method('deleteUserKey')
Expand Down

0 comments on commit da178db

Please sign in to comment.