Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable15] dont use part files for dav writes when the target folder doesn't have create permissions #16224

Merged
merged 2 commits into from Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions apps/dav/lib/Connector/Sabre/File.php
Expand Up @@ -147,7 +147,12 @@ public function put($data) {
if ($needsPartFile) {
// mark file as partial while uploading (ignored by the scanner)
$partFilePath = $this->getPartFileBasePath($this->path) . '.ocTransferId' . rand() . '.part';
} else {

if (!$view->isCreatable($partFilePath) && $view->isUpdatable($this->path)) {
$needsPartFile = false;
}
}
if (!$needsPartFile) {
// upload file directly as the final path
$partFilePath = $this->path;

Expand Down Expand Up @@ -178,7 +183,7 @@ public function put($data) {
}

$isEOF = false;
$wrappedData = CallbackWrapper::wrap($data, null, null, null, null, function($stream) use (&$isEOF) {
$wrappedData = CallbackWrapper::wrap($data, null, null, null, null, function ($stream) use (&$isEOF) {
$isEOF = feof($stream);
});

Expand Down
54 changes: 46 additions & 8 deletions apps/dav/tests/unit/Connector/Sabre/FileTest.php
Expand Up @@ -28,13 +28,20 @@
namespace OCA\DAV\Tests\unit\Connector\Sabre;

use OC\Files\Storage\Local;
use OC\Files\Storage\Temporary;
use OC\Files\Storage\Wrapper\PermissionsMask;
use OC\Files\View;
use OCA\DAV\Connector\Sabre\File;
use OCP\Constants;
use OCP\Files\ForbiddenException;
use OCP\Files\Storage;
use OCP\IConfig;
use Test\HookHelper;
use OC\Files\Filesystem;
use OCP\Lock\ILockingProvider;
use Test\TestCase;
use Test\Traits\MountProviderTrait;
use Test\Traits\UserTrait;

/**
* Class File
Expand All @@ -43,7 +50,9 @@
*
* @package OCA\DAV\Tests\unit\Connector\Sabre
*/
class FileTest extends \Test\TestCase {
class FileTest extends TestCase {
use MountProviderTrait;
use UserTrait;

/**
* @var string
Expand All @@ -61,9 +70,8 @@ public function setUp() {

\OC_Hook::clear();

$this->user = $this->getUniqueID('user_');
$userManager = \OC::$server->getUserManager();
$userManager->createUser($this->user, 'pass');
$this->user = 'test_user';
$this->createUser($this->user, 'pass');

$this->loginAsUser($this->user);

Expand All @@ -79,15 +87,14 @@ public function tearDown() {
}

/**
* @return \PHPUnit_Framework_MockObject_MockObject | Storage
* @return \PHPUnit_Framework_MockObject_MockObject|Storage
*/
private function getMockStorage() {
$storage = $this->getMockBuilder(Storage::class)
->disableOriginalConstructor()
->getMock();
$storage->expects($this->any())
->method('getId')
->will($this->returnValue('home::someuser'));
$storage->method('getId')
->willReturn('home::someuser');
return $storage;
}

Expand Down Expand Up @@ -1163,4 +1170,35 @@ public function testGetThrowsIfNoPermission() {

$file->get();
}

public function testSimplePutNoCreatePermissions() {
$this->logout();

$storage = new Temporary([]);
$storage->file_put_contents('file.txt', 'old content');
$noCreateStorage = new PermissionsMask([
'storage'=> $storage,
'mask' => Constants::PERMISSION_ALL - Constants::PERMISSION_CREATE
]);

$this->registerMount($this->user, $noCreateStorage, '/' . $this->user . '/files/root');

$this->loginAsUser($this->user);

$view = new View('/' . $this->user . '/files');

$info = $view->getFileInfo('root/file.txt');

$file = new File($view, $info);

// beforeMethod locks
$view->lockFile('root/file.txt', ILockingProvider::LOCK_SHARED);

$file->put($this->getStream('new content'));

// afterMethod unlocks
$view->unlockFile('root/file.txt', ILockingProvider::LOCK_SHARED);

$this->assertEquals('new content', $view->file_get_contents('root/file.txt'));
}
}