2015-08-16 22:27:07 +02:00
|
|
|
// +build !openbsd
|
2015-08-17 19:40:34 +02:00
|
|
|
// +build !windows
|
2015-08-16 22:27:07 +02:00
|
|
|
|
2015-07-21 21:25:05 +02:00
|
|
|
package fuse
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bazil.org/fuse"
|
|
|
|
"bazil.org/fuse/fs"
|
2017-07-24 17:42:25 +02:00
|
|
|
"github.com/restic/restic/internal/restic"
|
2015-07-21 21:25:05 +02:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
2017-09-17 17:34:19 +02:00
|
|
|
// Statically ensure that *link implements the given interface
|
2015-07-21 21:25:05 +02:00
|
|
|
var _ = fs.NodeReadlinker(&link{})
|
|
|
|
|
|
|
|
type link struct {
|
2017-06-18 15:11:32 +02:00
|
|
|
root *Root
|
|
|
|
node *restic.Node
|
|
|
|
inode uint64
|
2015-07-21 21:25:05 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 15:11:32 +02:00
|
|
|
func newLink(ctx context.Context, root *Root, inode uint64, node *restic.Node) (*link, error) {
|
|
|
|
return &link{root: root, inode: inode, node: node}, nil
|
2015-07-21 21:25:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *link) Readlink(ctx context.Context, req *fuse.ReadlinkRequest) (string, error) {
|
|
|
|
return l.node.LinkTarget, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *link) Attr(ctx context.Context, a *fuse.Attr) error {
|
2017-06-18 15:11:32 +02:00
|
|
|
a.Inode = l.inode
|
2015-07-21 21:25:05 +02:00
|
|
|
a.Mode = l.node.Mode
|
2015-07-26 20:41:29 +02:00
|
|
|
|
2017-06-18 15:11:32 +02:00
|
|
|
if !l.root.cfg.OwnerIsRoot {
|
2015-07-26 20:41:29 +02:00
|
|
|
a.Uid = l.node.UID
|
|
|
|
a.Gid = l.node.GID
|
|
|
|
}
|
2015-07-21 22:11:30 +02:00
|
|
|
a.Atime = l.node.AccessTime
|
|
|
|
a.Ctime = l.node.ChangeTime
|
|
|
|
a.Mtime = l.node.ModTime
|
2017-02-11 21:50:03 +01:00
|
|
|
|
|
|
|
a.Nlink = uint32(l.node.Links)
|
|
|
|
|
2015-07-21 21:25:05 +02:00
|
|
|
return nil
|
|
|
|
}
|