aboutsummaryrefslogtreecommitdiff
path: root/internal/fusefrontend/node_helpers.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2023-03-29 22:16:14 +0200
committerJakob Unterwurzacher2023-03-29 22:16:14 +0200
commit24b3978715186bed3edc2703e81f165a73c0a74a (patch)
tree54d427d9f1e667deafeb7034f6f3001dfe63b827 /internal/fusefrontend/node_helpers.go
parentb370325ccf8a15d3b58418d85fd22e32e2aeb2fc (diff)
fusefrontent: report correct size on hard link creation
And add a test for it. Fixes https://github.com/rfjakob/gocryptfs/issues/724
Diffstat (limited to 'internal/fusefrontend/node_helpers.go')
-rw-r--r--internal/fusefrontend/node_helpers.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/fusefrontend/node_helpers.go b/internal/fusefrontend/node_helpers.go
index 46046f1..f5dfeb6 100644
--- a/internal/fusefrontend/node_helpers.go
+++ b/internal/fusefrontend/node_helpers.go
@@ -62,6 +62,7 @@ func (n *Node) translateSize(dirfd int, cName string, out *fuse.Attr) {
rn := n.rootNode()
out.Size = rn.contentEnc.CipherSizeToPlainSize(out.Size)
} else if out.IsSymlink() {
+ // read and decrypt target
target, _ := n.readlink(dirfd, cName)
out.Size = uint64(len(target))
}