2022-03-13 15:42:43 +00:00
|
|
|
//go:build darwin || freebsd || linux
|
2020-05-12 09:30:41 +00:00
|
|
|
// +build darwin freebsd linux
|
2015-08-16 20:27:07 +00:00
|
|
|
|
2015-07-21 19:25:05 +00:00
|
|
|
package fuse
|
|
|
|
|
|
|
|
import (
|
2020-10-05 21:09:52 +00:00
|
|
|
"context"
|
|
|
|
|
2023-06-19 18:24:47 +00:00
|
|
|
"github.com/restic/restic/internal/debug"
|
|
|
|
|
2022-11-12 13:52:37 +00:00
|
|
|
"github.com/anacrolix/fuse"
|
|
|
|
"github.com/anacrolix/fuse/fs"
|
2017-07-24 15:42:25 +00:00
|
|
|
"github.com/restic/restic/internal/restic"
|
2015-07-21 19:25:05 +00:00
|
|
|
)
|
|
|
|
|
2017-09-17 15:34:19 +00:00
|
|
|
// Statically ensure that *link implements the given interface
|
2015-07-21 19:25:05 +00:00
|
|
|
var _ = fs.NodeReadlinker(&link{})
|
|
|
|
|
|
|
|
type link struct {
|
2017-06-18 13:11:32 +00:00
|
|
|
root *Root
|
|
|
|
node *restic.Node
|
|
|
|
inode uint64
|
2015-07-21 19:25:05 +00:00
|
|
|
}
|
|
|
|
|
2022-08-19 18:29:33 +00:00
|
|
|
func newLink(root *Root, inode uint64, node *restic.Node) (*link, error) {
|
2017-06-18 13:11:32 +00:00
|
|
|
return &link{root: root, inode: inode, node: node}, nil
|
2015-07-21 19:25:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 17:27:38 +00:00
|
|
|
func (l *link) Readlink(_ context.Context, _ *fuse.ReadlinkRequest) (string, error) {
|
2015-07-21 19:25:05 +00:00
|
|
|
return l.node.LinkTarget, nil
|
|
|
|
}
|
|
|
|
|
2023-05-18 17:18:09 +00:00
|
|
|
func (l *link) Attr(_ context.Context, a *fuse.Attr) error {
|
2017-06-18 13:11:32 +00:00
|
|
|
a.Inode = l.inode
|
2015-07-21 19:25:05 +00:00
|
|
|
a.Mode = l.node.Mode
|
2015-07-26 18:41:29 +00:00
|
|
|
|
2017-06-18 13:11:32 +00:00
|
|
|
if !l.root.cfg.OwnerIsRoot {
|
2015-07-26 18:41:29 +00:00
|
|
|
a.Uid = l.node.UID
|
|
|
|
a.Gid = l.node.GID
|
|
|
|
}
|
2015-07-21 20:11:30 +00:00
|
|
|
a.Atime = l.node.AccessTime
|
|
|
|
a.Ctime = l.node.ChangeTime
|
|
|
|
a.Mtime = l.node.ModTime
|
2017-02-11 20:50:03 +00:00
|
|
|
|
|
|
|
a.Nlink = uint32(l.node.Links)
|
2022-03-13 15:42:43 +00:00
|
|
|
a.Size = uint64(len(l.node.LinkTarget))
|
2023-03-07 21:12:08 +00:00
|
|
|
a.Blocks = (a.Size + blockSize - 1) / blockSize
|
2017-02-11 20:50:03 +00:00
|
|
|
|
2015-07-21 19:25:05 +00:00
|
|
|
return nil
|
|
|
|
}
|
2023-06-19 18:24:47 +00:00
|
|
|
|
|
|
|
func (l *link) Listxattr(_ context.Context, req *fuse.ListxattrRequest, resp *fuse.ListxattrResponse) error {
|
|
|
|
debug.Log("Listxattr(%v, %v)", l.node.Name, req.Size)
|
|
|
|
for _, attr := range l.node.ExtendedAttributes {
|
|
|
|
resp.Append(attr.Name)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *link) Getxattr(_ context.Context, req *fuse.GetxattrRequest, resp *fuse.GetxattrResponse) error {
|
|
|
|
debug.Log("Getxattr(%v, %v, %v)", l.node.Name, req.Name, req.Size)
|
|
|
|
attrval := l.node.GetExtendedAttribute(req.Name)
|
|
|
|
if attrval != nil {
|
|
|
|
resp.Xattr = attrval
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fuse.ErrNoXattr
|
|
|
|
}
|