From 0fd7637624c6994ce50be8a374648352f3f52501 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 2 Jan 2019 22:19:59 +0100 Subject: [PATCH] fusefrontend: use O_RDONLY in the ListXAttr fallback path Copy-paste error. https://github.com/rfjakob/gocryptfs/issues/308 --- internal/fusefrontend/xattr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/fusefrontend/xattr.go b/internal/fusefrontend/xattr.go index 7ffec25..ad1c330 100644 --- a/internal/fusefrontend/xattr.go +++ b/internal/fusefrontend/xattr.go @@ -132,7 +132,7 @@ func (fs *FS) ListXAttr(relPath string, context *fuse.Context) ([]string, fuse.S cNames, err = syscallcompat.Llistxattr(procPath) } else { // O_NONBLOCK to not block on FIFOs. - fd, err2 := fs.openBackingFile(relPath, syscall.O_WRONLY|syscall.O_NONBLOCK) + fd, err2 := fs.openBackingFile(relPath, syscall.O_RDONLY|syscall.O_NONBLOCK) // On a symlink, openBackingFile fails with ELOOP. Let's pretend there // can be no xattrs on symlinks, and always return an empty result. if err2 == syscall.ELOOP {