nametransform: Create *.name files with 0400 permission.

Similar to gocryptfs.iv files they are never modified.
This commit is contained in:
Sebastian Lackner 2019-01-09 02:49:24 +01:00 committed by Jakob Unterwurzacher
parent b22cc03c75
commit aae45b4d77
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ func (n *NameTransform) WriteLongNameAt(dirfd int, hashName string, plainName st
// Write the encrypted name into hashName.name
fdRaw, err := syscallcompat.Openat(dirfd, hashName+LongNameSuffix,
syscall.O_WRONLY|syscall.O_CREAT|syscall.O_EXCL, 0600)
syscall.O_WRONLY|syscall.O_CREAT|syscall.O_EXCL, 0400)
if err != nil {
// Don't warn if the file already exists - this is allowed for renames
// and should be handled by the caller.