2021-09-09 20:25:25 +08:00
|
|
|
//go:build linux || freebsd
|
2021-02-04 01:46:08 +08:00
|
|
|
// +build linux freebsd
|
2016-07-18 06:03:23 +08:00
|
|
|
|
|
|
|
package mount
|
|
|
|
|
|
|
|
import (
|
2019-05-07 20:53:16 +08:00
|
|
|
"context"
|
2022-06-12 18:37:00 +08:00
|
|
|
"syscall"
|
2016-07-18 06:03:23 +08:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"bazil.org/fuse"
|
|
|
|
fusefs "bazil.org/fuse/fs"
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/fs/log"
|
|
|
|
"github.com/rclone/rclone/vfs"
|
2016-07-18 06:03:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// File represents a file
|
|
|
|
type File struct {
|
2017-10-29 03:01:34 +08:00
|
|
|
*vfs.File
|
2020-07-24 00:17:01 +08:00
|
|
|
fsys *FS
|
2016-07-18 06:03:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check interface satisfied
|
|
|
|
var _ fusefs.Node = (*File)(nil)
|
|
|
|
|
|
|
|
// Attr fills out the attributes for the file
|
2017-05-09 18:39:33 +08:00
|
|
|
func (f *File) Attr(ctx context.Context, a *fuse.Attr) (err error) {
|
2018-01-13 00:30:54 +08:00
|
|
|
defer log.Trace(f, "")("a=%+v, err=%v", a, &err)
|
2020-07-24 00:17:01 +08:00
|
|
|
a.Valid = f.fsys.opt.AttrTimeout
|
2017-10-25 17:00:26 +08:00
|
|
|
modTime := f.File.ModTime()
|
|
|
|
Size := uint64(f.File.Size())
|
|
|
|
Blocks := (Size + 511) / 512
|
2017-10-29 19:00:56 +08:00
|
|
|
a.Gid = f.VFS().Opt.GID
|
|
|
|
a.Uid = f.VFS().Opt.UID
|
|
|
|
a.Mode = f.VFS().Opt.FilePerms
|
2017-05-03 05:35:07 +08:00
|
|
|
a.Size = Size
|
|
|
|
a.Atime = modTime
|
|
|
|
a.Mtime = modTime
|
|
|
|
a.Ctime = modTime
|
|
|
|
a.Blocks = Blocks
|
2016-07-18 06:03:23 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-24 03:41:21 +08:00
|
|
|
// Check interface satisfied
|
|
|
|
var _ fusefs.NodeSetattrer = (*File)(nil)
|
|
|
|
|
2017-11-21 03:42:35 +08:00
|
|
|
// Setattr handles attribute changes from FUSE. Currently supports ModTime and Size only
|
2017-05-09 18:39:33 +08:00
|
|
|
func (f *File) Setattr(ctx context.Context, req *fuse.SetattrRequest, resp *fuse.SetattrResponse) (err error) {
|
2018-01-13 00:30:54 +08:00
|
|
|
defer log.Trace(f, "a=%+v", req)("err=%v", &err)
|
2017-11-21 03:42:35 +08:00
|
|
|
if !f.VFS().Opt.NoModTime {
|
|
|
|
if req.Valid.Mtime() {
|
|
|
|
err = f.File.SetModTime(req.Mtime)
|
2018-01-30 04:49:13 +08:00
|
|
|
} else if req.Valid.MtimeNow() {
|
|
|
|
err = f.File.SetModTime(time.Now())
|
2017-11-21 03:42:35 +08:00
|
|
|
}
|
2017-03-24 03:41:21 +08:00
|
|
|
}
|
2017-11-21 03:42:35 +08:00
|
|
|
if req.Valid.Size() {
|
|
|
|
err = f.File.Truncate(int64(req.Size))
|
2017-03-24 03:41:21 +08:00
|
|
|
}
|
2017-05-03 05:35:07 +08:00
|
|
|
return translateError(err)
|
2016-07-18 06:03:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check interface satisfied
|
|
|
|
var _ fusefs.NodeOpener = (*File)(nil)
|
|
|
|
|
|
|
|
// Open the file for read or write
|
2017-03-03 06:07:01 +08:00
|
|
|
func (f *File) Open(ctx context.Context, req *fuse.OpenRequest, resp *fuse.OpenResponse) (fh fusefs.Handle, err error) {
|
2018-01-13 00:30:54 +08:00
|
|
|
defer log.Trace(f, "flags=%v", req.Flags)("fh=%v, err=%v", &fh, &err)
|
2017-10-30 18:14:39 +08:00
|
|
|
|
|
|
|
// fuse flags are based off syscall flags as are os flags, so
|
|
|
|
// should be compatible
|
2018-03-15 18:27:04 +08:00
|
|
|
handle, err := f.File.Open(int(req.Flags))
|
2017-10-30 18:14:39 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, translateError(err)
|
|
|
|
}
|
|
|
|
|
2019-09-14 20:11:21 +08:00
|
|
|
// If size unknown then use direct io to read
|
2019-10-06 19:06:26 +08:00
|
|
|
if entry := handle.Node().DirEntry(); entry != nil && entry.Size() < 0 {
|
2019-09-14 20:11:21 +08:00
|
|
|
resp.Flags |= fuse.OpenDirectIO
|
|
|
|
}
|
|
|
|
|
2017-11-03 02:22:26 +08:00
|
|
|
return &FileHandle{handle}, nil
|
2016-07-18 06:03:23 +08:00
|
|
|
}
|
2017-01-29 19:29:42 +08:00
|
|
|
|
|
|
|
// Check interface satisfied
|
|
|
|
var _ fusefs.NodeFsyncer = (*File)(nil)
|
|
|
|
|
|
|
|
// Fsync the file
|
|
|
|
//
|
|
|
|
// Note that we don't do anything except return OK
|
2017-05-09 18:39:33 +08:00
|
|
|
func (f *File) Fsync(ctx context.Context, req *fuse.FsyncRequest) (err error) {
|
2018-01-13 00:30:54 +08:00
|
|
|
defer log.Trace(f, "")("err=%v", &err)
|
2017-01-29 19:29:42 +08:00
|
|
|
return nil
|
|
|
|
}
|
2018-05-03 16:15:32 +08:00
|
|
|
|
|
|
|
// Getxattr gets an extended attribute by the given name from the
|
|
|
|
// node.
|
|
|
|
//
|
|
|
|
// If there is no xattr by that name, returns fuse.ErrNoXattr.
|
|
|
|
func (f *File) Getxattr(ctx context.Context, req *fuse.GetxattrRequest, resp *fuse.GetxattrResponse) error {
|
2022-06-12 18:37:00 +08:00
|
|
|
return syscall.ENOSYS // we never implement this
|
2018-05-03 16:15:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ fusefs.NodeGetxattrer = (*File)(nil)
|
|
|
|
|
|
|
|
// Listxattr lists the extended attributes recorded for the node.
|
|
|
|
func (f *File) Listxattr(ctx context.Context, req *fuse.ListxattrRequest, resp *fuse.ListxattrResponse) error {
|
2022-06-12 18:37:00 +08:00
|
|
|
return syscall.ENOSYS // we never implement this
|
2018-05-03 16:15:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ fusefs.NodeListxattrer = (*File)(nil)
|
|
|
|
|
|
|
|
// Setxattr sets an extended attribute with the given name and
|
|
|
|
// value for the node.
|
|
|
|
func (f *File) Setxattr(ctx context.Context, req *fuse.SetxattrRequest) error {
|
2022-06-12 18:37:00 +08:00
|
|
|
return syscall.ENOSYS // we never implement this
|
2018-05-03 16:15:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ fusefs.NodeSetxattrer = (*File)(nil)
|
|
|
|
|
|
|
|
// Removexattr removes an extended attribute for the name.
|
|
|
|
//
|
|
|
|
// If there is no xattr by that name, returns fuse.ErrNoXattr.
|
|
|
|
func (f *File) Removexattr(ctx context.Context, req *fuse.RemovexattrRequest) error {
|
2022-06-12 18:37:00 +08:00
|
|
|
return syscall.ENOSYS // we never implement this
|
2018-05-03 16:15:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ fusefs.NodeRemovexattrer = (*File)(nil)
|