diff options
author | Roland Tapken <roland@bitarbeiter.net> | 2018-02-09 16:09:56 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-10-02 18:27:06 +0200 |
commit | d17856a1e9b846a1e4420107a88686822effe444 (patch) | |
tree | 6c8ea48c465e9b592e24a942b37772a22ab05220 /lib/private/Log | |
parent | c2ef47ee13799bf0b5a0dbe97e54a021c888d8eb (diff) | |
download | nextcloud-server-d17856a1e9b846a1e4420107a88686822effe444.tar.gz nextcloud-server-d17856a1e9b846a1e4420107a88686822effe444.zip |
Make logfile's mode configurable.
The file logger currently resets the mode of the logfile to 0640.
When the webserver is running as a different user than the cron job
(but both are in the same group) the files mode has to be 0660. The
current implementation breaks logging for the user that is not the
owner of the logfile.
This patch introduces a new config option 'logfilemode' that expects
an octal value (defaults to 0640). Unless the value is lower or equal
than 0 the logfiles mode will be resetted to this value.
Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
Diffstat (limited to 'lib/private/Log')
-rw-r--r-- | lib/private/Log/File.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/private/Log/File.php b/lib/private/Log/File.php index c881c6dd9de..6810e2598cf 100644 --- a/lib/private/Log/File.php +++ b/lib/private/Log/File.php @@ -50,6 +50,8 @@ use OCP\ILogger; class File implements IWriter, IFileBased { /** @var string */ protected $logFile; + /** @var int */ + protected $logFileMode; /** @var SystemConfig */ private $config; @@ -67,6 +69,7 @@ class File implements IWriter, IFileBased { } } $this->config = $config; + $this->logFileMode = $config->getValue('logfilemode', 0640); } /** @@ -134,8 +137,8 @@ class File implements IWriter, IFileBased { } $entry = json_encode($entry, JSON_PARTIAL_OUTPUT_ON_ERROR); $handle = @fopen($this->logFile, 'a'); - if ((fileperms($this->logFile) & 0777) != 0640) { - @chmod($this->logFile, 0640); + if ($this->logFileMode > 0 && (fileperms($this->logFile) & 0777) != $this->logFileMode) { + @chmod($this->logFile, $this->logFileMode); } if ($handle) { fwrite($handle, $entry."\n"); |