diff options
author | Sebastian Lackner | 2017-11-29 13:21:28 +0100 |
---|---|---|
committer | Sebastian Lackner | 2017-11-29 13:28:04 +0100 |
commit | 614745ee576760023961fbf815985b90f90ad1d7 (patch) | |
tree | d2577781a64df82303ed569c95cfb9a658fae5f6 /internal/syscallcompat/sys_linux.go | |
parent | 67bcbe81e80da29fb340c5a4712831f70442d8c9 (diff) |
fusefrontend: allow_other: close race between mkdir and chown
Fixes the same problem as described in 72b975867a3b9bdf53fc2da62e2ba4a328d7e4ab,
except for directories instead of device nodes.
Diffstat (limited to 'internal/syscallcompat/sys_linux.go')
-rw-r--r-- | internal/syscallcompat/sys_linux.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/syscallcompat/sys_linux.go b/internal/syscallcompat/sys_linux.go index 4fe44fd..1ea56b5 100644 --- a/internal/syscallcompat/sys_linux.go +++ b/internal/syscallcompat/sys_linux.go @@ -109,3 +109,8 @@ func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { } return } + +// Mkdirat syscall. +func Mkdirat(dirfd int, path string, mode uint32) (err error) { + return syscall.Mkdirat(dirfd, path, mode) +} |