diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-30 21:55:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 21:55:50 +0200 |
commit | f3738eeff70ead6657149fa5d25bfde04f731746 (patch) | |
tree | a86cfadb738b1753d6cf469f3e2b613926cc21ad /lib/private/Files/Storage | |
parent | 0a6416f84fd69fad1aaa01c6d96f1c64a77917b0 (diff) | |
parent | e5dc1a8085226492b6d323142381fd163451c06d (diff) | |
download | nextcloud-server-f3738eeff70ead6657149fa5d25bfde04f731746.tar.gz nextcloud-server-f3738eeff70ead6657149fa5d25bfde04f731746.zip |
Merge pull request #25280 from nextcloud/explicit-file-permissions
Set umask before operations that create local files
Diffstat (limited to 'lib/private/Files/Storage')
-rw-r--r-- | lib/private/Files/Storage/Local.php | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/lib/private/Files/Storage/Local.php b/lib/private/Files/Storage/Local.php index c21364847e1..a29fc6c02de 100644 --- a/lib/private/Files/Storage/Local.php +++ b/lib/private/Files/Storage/Local.php @@ -87,8 +87,9 @@ class Local extends \OC\Files\Storage\Common { public function mkdir($path) { $sourcePath = $this->getSourcePath($path); + $oldMask = umask(022); $result = @mkdir($sourcePath, 0777, true); - chmod($sourcePath, 0755); + umask($oldMask); return $result; } @@ -258,11 +259,13 @@ class Local extends \OC\Files\Storage\Common { if ($this->file_exists($path) and !$this->isUpdatable($path)) { return false; } + $oldMask = umask(022); if (!is_null($mtime)) { $result = @touch($this->getSourcePath($path), $mtime); } else { $result = @touch($this->getSourcePath($path)); } + umask($oldMask); if ($result) { clearstatcache(true, $this->getSourcePath($path)); } @@ -275,7 +278,10 @@ class Local extends \OC\Files\Storage\Common { } public function file_put_contents($path, $data) { - return file_put_contents($this->getSourcePath($path), $data); + $oldMask = umask(022); + $result = file_put_contents($this->getSourcePath($path), $data); + umask($oldMask); + return $result; } public function unlink($path) { @@ -345,12 +351,18 @@ class Local extends \OC\Files\Storage\Common { if ($this->is_dir($path1)) { return parent::copy($path1, $path2); } else { - return copy($this->getSourcePath($path1), $this->getSourcePath($path2)); + $oldMask = umask(022); + $result = copy($this->getSourcePath($path1), $this->getSourcePath($path2)); + umask($oldMask); + return $result; } } public function fopen($path, $mode) { - return fopen($this->getSourcePath($path), $mode); + $oldMask = umask(022); + $result = fopen($this->getSourcePath($path), $mode); + umask($oldMask); + return $result; } public function hash($type, $path, $raw = false) { |