2016-07-18 00:03:23 +02:00
|
|
|
// FUSE main Fs
|
|
|
|
|
|
|
|
// +build linux darwin freebsd
|
|
|
|
|
|
|
|
package mount
|
|
|
|
|
|
|
|
import (
|
2017-05-11 14:15:51 +02:00
|
|
|
"syscall"
|
|
|
|
|
2016-07-18 00:03:23 +02:00
|
|
|
"bazil.org/fuse"
|
|
|
|
fusefs "bazil.org/fuse/fs"
|
2018-06-26 10:26:34 +02:00
|
|
|
"github.com/ncw/rclone/cmd/mountlib"
|
2016-07-18 00:03:23 +02:00
|
|
|
"github.com/ncw/rclone/fs"
|
2018-01-12 17:30:54 +01:00
|
|
|
"github.com/ncw/rclone/fs/log"
|
2017-10-28 21:01:34 +02:00
|
|
|
"github.com/ncw/rclone/vfs"
|
2017-10-29 12:00:56 +01:00
|
|
|
"github.com/ncw/rclone/vfs/vfsflags"
|
2017-05-02 23:35:07 +02:00
|
|
|
"github.com/pkg/errors"
|
2018-04-06 20:13:27 +02:00
|
|
|
"golang.org/x/net/context" // switch to "context" when we stop supporting go1.8
|
2016-07-18 00:03:23 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// FS represents the top level filing system
|
|
|
|
type FS struct {
|
2017-10-28 21:01:34 +02:00
|
|
|
*vfs.VFS
|
2017-05-02 23:35:07 +02:00
|
|
|
f fs.Fs
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check interface satistfied
|
|
|
|
var _ fusefs.FS = (*FS)(nil)
|
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
// NewFS makes a new FS
|
|
|
|
func NewFS(f fs.Fs) *FS {
|
|
|
|
fsys := &FS{
|
2017-10-29 12:00:56 +01:00
|
|
|
VFS: vfs.New(f, &vfsflags.Opt),
|
2017-10-28 21:01:34 +02:00
|
|
|
f: f,
|
2016-09-09 09:39:19 +02:00
|
|
|
}
|
2017-05-02 23:35:07 +02:00
|
|
|
return fsys
|
2016-09-09 09:39:19 +02:00
|
|
|
}
|
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
// Root returns the root node
|
2017-05-09 12:39:33 +02:00
|
|
|
func (f *FS) Root() (node fusefs.Node, err error) {
|
2018-01-12 17:30:54 +01:00
|
|
|
defer log.Trace("", "")("node=%+v, err=%v", &node, &err)
|
2017-10-28 21:01:34 +02:00
|
|
|
root, err := f.VFS.Root()
|
2017-05-04 22:49:06 +02:00
|
|
|
if err != nil {
|
2017-05-02 23:35:07 +02:00
|
|
|
return nil, translateError(err)
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
2017-05-02 23:35:07 +02:00
|
|
|
return &Dir{root}, nil
|
2016-07-18 00:03:23 +02:00
|
|
|
}
|
2016-11-20 23:54:03 +01:00
|
|
|
|
|
|
|
// Check interface satsified
|
|
|
|
var _ fusefs.FSStatfser = (*FS)(nil)
|
|
|
|
|
|
|
|
// Statfs is called to obtain file system metadata.
|
|
|
|
// It should write that data to resp.
|
2017-05-09 12:39:33 +02:00
|
|
|
func (f *FS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) (err error) {
|
2018-01-12 17:30:54 +01:00
|
|
|
defer log.Trace("", "")("stat=%+v, err=%v", resp, &err)
|
2016-11-20 23:54:03 +01:00
|
|
|
const blockSize = 4096
|
|
|
|
const fsBlocks = (1 << 50) / blockSize
|
|
|
|
resp.Blocks = fsBlocks // Total data blocks in file system.
|
|
|
|
resp.Bfree = fsBlocks // Free blocks in file system.
|
|
|
|
resp.Bavail = fsBlocks // Free blocks in file system if you're not root.
|
|
|
|
resp.Files = 1E9 // Total files in file system.
|
|
|
|
resp.Ffree = 1E9 // Free files in file system.
|
|
|
|
resp.Bsize = blockSize // Block size
|
|
|
|
resp.Namelen = 255 // Maximum file name length?
|
|
|
|
resp.Frsize = blockSize // Fragment size, smallest addressable data size in the file system.
|
2018-04-18 00:19:34 +02:00
|
|
|
total, used, free := f.VFS.Statfs()
|
|
|
|
if total >= 0 {
|
|
|
|
resp.Blocks = uint64(total) / blockSize
|
|
|
|
}
|
|
|
|
if used >= 0 {
|
|
|
|
resp.Bfree = resp.Blocks - uint64(used)/blockSize
|
|
|
|
}
|
|
|
|
if free >= 0 {
|
|
|
|
resp.Bavail = uint64(free) / blockSize
|
|
|
|
}
|
2018-06-26 10:26:34 +02:00
|
|
|
mountlib.ClipBlocks(&resp.Blocks)
|
|
|
|
mountlib.ClipBlocks(&resp.Bfree)
|
|
|
|
mountlib.ClipBlocks(&resp.Bavail)
|
2016-11-20 23:54:03 +01:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-04 22:49:06 +02:00
|
|
|
|
2017-05-02 23:35:07 +02:00
|
|
|
// Translate errors from mountlib
|
|
|
|
func translateError(err error) error {
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2017-10-28 21:16:03 +02:00
|
|
|
switch errors.Cause(err) {
|
|
|
|
case vfs.OK:
|
|
|
|
return nil
|
|
|
|
case vfs.ENOENT:
|
|
|
|
return fuse.ENOENT
|
|
|
|
case vfs.EEXIST:
|
|
|
|
return fuse.EEXIST
|
2017-11-03 12:35:36 +01:00
|
|
|
case vfs.EPERM:
|
|
|
|
return fuse.EPERM
|
|
|
|
case vfs.ECLOSED:
|
|
|
|
return fuse.Errno(syscall.EBADF)
|
|
|
|
case vfs.ENOTEMPTY:
|
|
|
|
return fuse.Errno(syscall.ENOTEMPTY)
|
2017-10-28 21:16:03 +02:00
|
|
|
case vfs.ESPIPE:
|
|
|
|
return fuse.Errno(syscall.ESPIPE)
|
|
|
|
case vfs.EBADF:
|
|
|
|
return fuse.Errno(syscall.EBADF)
|
|
|
|
case vfs.EROFS:
|
|
|
|
return fuse.Errno(syscall.EROFS)
|
2017-10-30 11:14:39 +01:00
|
|
|
case vfs.ENOSYS:
|
2017-10-31 16:33:08 +01:00
|
|
|
return fuse.ENOSYS
|
2018-02-23 23:39:28 +01:00
|
|
|
case vfs.EINVAL:
|
|
|
|
return fuse.Errno(syscall.EINVAL)
|
2017-05-02 23:35:07 +02:00
|
|
|
}
|
|
|
|
return err
|
2017-05-04 22:49:06 +02:00
|
|
|
}
|