From 7386cf6a06f4e879f3598895d66e65d538eac26e Mon Sep 17 00:00:00 2001 From: chrislu Date: Sun, 24 Jul 2022 15:11:24 -0700 Subject: [PATCH] mount: resolve symlink --- weed/mount/weedfs.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/weed/mount/weedfs.go b/weed/mount/weedfs.go index 584174202..697afcbca 100644 --- a/weed/mount/weedfs.go +++ b/weed/mount/weedfs.go @@ -139,6 +139,10 @@ func (wfs *WFS) maybeReadEntry(inode uint64) (path util.FullPath, fh *FileHandle return path, fh, entry, fuse.OK } entry, status = wfs.maybeLoadEntry(path) + if status == fuse.OK && entry.FileMode()&os.ModeSymlink != 0 { + target := filepath.Join(string(path), "../"+entry.Attributes.SymlinkTarget) + entry, status = wfs.maybeLoadEntry(util.FullPath(target)) + } return }