aboutsummaryrefslogtreecommitdiff
path: root/internal/syscallcompat
diff options
context:
space:
mode:
authorJakob Unterwurzacher2019-01-20 12:59:59 +0100
committerJakob Unterwurzacher2019-01-20 12:59:59 +0100
commit0805a63df1b5f915b228727f6074c2506922d0ad (patch)
tree5bf0b6c5db8e95db1505fae2a025d75f603ea896 /internal/syscallcompat
parent8c09df03aa5eeb581befb7bb77a0af44b39dfd37 (diff)
syscallcompat: drop Faccessat AT_SYMLINK_NOFOLLOW helper
unix.Faccessat has added support for AT_SYMLINK_NOFOLLOW in July 2018, https://github.com/golang/sys/commit/bd9dbc187b6e1dacfdd2722a87e83093c2d7bd6e#diff-341484dbbe3180cd7a31ef2ad2d679b6 which means we no longer need our own helper. Closes https://github.com/rfjakob/gocryptfs/issues/347
Diffstat (limited to 'internal/syscallcompat')
-rw-r--r--internal/syscallcompat/sys_common.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/internal/syscallcompat/sys_common.go b/internal/syscallcompat/sys_common.go
index b6bbdff..aedc4da 100644
--- a/internal/syscallcompat/sys_common.go
+++ b/internal/syscallcompat/sys_common.go
@@ -29,21 +29,6 @@ func Readlinkat(dirfd int, path string) (string, error) {
}
}
-// Faccessat exists both in Linux and in MacOS 10.10+, but the Linux version
-// DOES NOT support any flags. Emulate AT_SYMLINK_NOFOLLOW like glibc does.
-func Faccessat(dirfd int, path string, mode uint32) error {
- var st unix.Stat_t
- err := Fstatat(dirfd, path, &st, unix.AT_SYMLINK_NOFOLLOW)
- if err != nil {
- return err
- }
- if st.Mode&syscall.S_IFMT == syscall.S_IFLNK {
- // Pretend that a symlink is always accessible
- return nil
- }
- return unix.Faccessat(dirfd, path, mode, 0)
-}
-
// Openat wraps the Openat syscall.
func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {
if flags&syscall.O_CREAT != 0 {