2018-05-06 13:47:16 +08:00
|
|
|
package filesys
|
|
|
|
|
2018-05-08 16:59:43 +08:00
|
|
|
import (
|
2018-11-23 15:05:22 +08:00
|
|
|
"context"
|
2018-11-08 23:37:34 +08:00
|
|
|
"fmt"
|
2018-11-23 15:05:22 +08:00
|
|
|
"math"
|
2018-12-29 15:36:13 +08:00
|
|
|
"os"
|
2020-04-22 09:50:30 +08:00
|
|
|
"path"
|
2018-11-08 23:37:34 +08:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2020-06-29 01:14:17 +08:00
|
|
|
"google.golang.org/grpc"
|
2020-06-11 16:50:00 +08:00
|
|
|
|
2020-06-29 01:18:32 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/grace"
|
|
|
|
|
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
|
|
|
|
2020-04-22 09:50:30 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filesys/meta_cache"
|
2018-06-06 17:09:57 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-07-22 08:39:10 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2020-03-23 15:01:34 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-04-12 03:45:24 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/chunk_cache"
|
2018-05-08 16:59:43 +08:00
|
|
|
)
|
2018-05-06 13:47:16 +08:00
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
type Option struct {
|
2020-04-12 12:12:41 +08:00
|
|
|
FilerGrpcAddress string
|
|
|
|
GrpcDialOption grpc.DialOption
|
|
|
|
FilerMountRootPath string
|
|
|
|
Collection string
|
|
|
|
Replication string
|
|
|
|
TtlSec int32
|
|
|
|
ChunkSizeLimit int64
|
|
|
|
CacheDir string
|
|
|
|
CacheSizeMB int64
|
|
|
|
DataCenter string
|
|
|
|
EntryCacheTtl time.Duration
|
|
|
|
Umask os.FileMode
|
2018-12-29 15:36:13 +08:00
|
|
|
|
2020-10-04 04:37:33 +08:00
|
|
|
MountUid uint32
|
|
|
|
MountGid uint32
|
|
|
|
MountMode os.FileMode
|
2019-05-11 06:03:31 +08:00
|
|
|
MountCtime time.Time
|
|
|
|
MountMtime time.Time
|
2020-02-27 08:46:01 +08:00
|
|
|
|
2020-03-06 16:49:47 +08:00
|
|
|
OutsideContainerClusterMode bool // whether the mount runs outside SeaweedFS containers
|
|
|
|
Cipher bool // whether encrypt data on volume server
|
2020-09-03 15:07:22 +08:00
|
|
|
UidGidMapper *meta_cache.UidGidMapper
|
2018-07-22 16:14:36 +08:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:05:22 +08:00
|
|
|
var _ = fs.FS(&WFS{})
|
|
|
|
var _ = fs.FSStatfser(&WFS{})
|
|
|
|
|
2018-05-06 13:47:16 +08:00
|
|
|
type WFS struct {
|
2020-07-11 21:16:17 +08:00
|
|
|
option *Option
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2020-01-21 12:21:01 +08:00
|
|
|
// contains all open handles, protected by handlesLock
|
2020-04-09 03:50:20 +08:00
|
|
|
handlesLock sync.Mutex
|
|
|
|
handles map[uint64]*FileHandle
|
2020-01-21 12:21:01 +08:00
|
|
|
|
|
|
|
bufPool sync.Pool
|
2018-11-15 15:31:39 +08:00
|
|
|
|
2018-11-23 16:24:51 +08:00
|
|
|
stats statsCache
|
2020-01-21 12:21:01 +08:00
|
|
|
|
2020-03-26 13:19:19 +08:00
|
|
|
root fs.Node
|
2020-08-10 12:56:09 +08:00
|
|
|
fsNodeCache *FsCache
|
2020-03-29 04:43:31 +08:00
|
|
|
|
2020-08-18 11:15:53 +08:00
|
|
|
chunkCache *chunk_cache.TieredChunkCache
|
2020-04-22 09:50:30 +08:00
|
|
|
metaCache *meta_cache.MetaCache
|
2020-08-29 14:48:48 +08:00
|
|
|
signature int32
|
2018-11-23 16:24:51 +08:00
|
|
|
}
|
|
|
|
type statsCache struct {
|
|
|
|
filer_pb.StatisticsResponse
|
|
|
|
lastChecked int64 // unix time in seconds
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
func NewSeaweedFileSystem(option *Option) *WFS {
|
2019-01-01 18:33:57 +08:00
|
|
|
wfs := &WFS{
|
2020-07-11 21:16:17 +08:00
|
|
|
option: option,
|
|
|
|
handles: make(map[uint64]*FileHandle),
|
2018-12-28 19:27:48 +08:00
|
|
|
bufPool: sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
return make([]byte, option.ChunkSizeLimit)
|
|
|
|
},
|
|
|
|
},
|
2020-08-29 14:48:48 +08:00
|
|
|
signature: util.RandomInt32(),
|
2020-04-12 15:52:54 +08:00
|
|
|
}
|
2020-08-10 12:56:09 +08:00
|
|
|
cacheUniqueId := util.Md5String([]byte(option.FilerGrpcAddress + option.FilerMountRootPath + util.Version()))[0:4]
|
2020-07-08 14:18:44 +08:00
|
|
|
cacheDir := path.Join(option.CacheDir, cacheUniqueId)
|
2020-04-12 15:52:54 +08:00
|
|
|
if option.CacheSizeMB > 0 {
|
2020-09-24 18:07:16 +08:00
|
|
|
os.MkdirAll(cacheDir, os.FileMode(0777)&^option.Umask)
|
2020-09-28 01:41:29 +08:00
|
|
|
wfs.chunkCache = chunk_cache.NewTieredChunkCache(256, cacheDir, option.CacheSizeMB, 1024*1024)
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
2020-06-29 01:18:32 +08:00
|
|
|
|
2020-10-13 12:58:37 +08:00
|
|
|
wfs.metaCache = meta_cache.NewMetaCache(path.Join(cacheDir, "meta"), util.FullPath(option.FilerMountRootPath), option.UidGidMapper)
|
2020-06-29 01:18:32 +08:00
|
|
|
startTime := time.Now()
|
2020-08-29 14:48:48 +08:00
|
|
|
go meta_cache.SubscribeMetaEvents(wfs.metaCache, wfs.signature, wfs, wfs.option.FilerMountRootPath, startTime.UnixNano())
|
2020-07-11 14:03:22 +08:00
|
|
|
grace.OnInterrupt(func() {
|
|
|
|
wfs.metaCache.Shutdown()
|
|
|
|
})
|
2019-01-01 18:33:57 +08:00
|
|
|
|
2020-09-24 18:07:16 +08:00
|
|
|
entry, _ := filer_pb.GetEntry(wfs, util.FullPath(wfs.option.FilerMountRootPath))
|
|
|
|
wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs, entry: entry}
|
2020-08-10 12:56:09 +08:00
|
|
|
wfs.fsNodeCache = newFsCache(wfs.root)
|
2020-01-21 12:21:01 +08:00
|
|
|
|
2019-01-01 18:33:57 +08:00
|
|
|
return wfs
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (wfs *WFS) Root() (fs.Node, error) {
|
2020-01-21 12:21:01 +08:00
|
|
|
return wfs.root, nil
|
2018-05-06 13:47:16 +08:00
|
|
|
}
|
2018-05-08 16:59:43 +08:00
|
|
|
|
2018-07-22 16:14:36 +08:00
|
|
|
func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (fileHandle *FileHandle) {
|
2018-06-06 17:09:57 +08:00
|
|
|
|
|
|
|
fullpath := file.fullpath()
|
2020-08-16 10:55:28 +08:00
|
|
|
glog.V(4).Infof("AcquireHandle %s uid=%d gid=%d", fullpath, uid, gid)
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2020-01-21 12:21:01 +08:00
|
|
|
wfs.handlesLock.Lock()
|
|
|
|
defer wfs.handlesLock.Unlock()
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2020-04-09 03:50:20 +08:00
|
|
|
inodeId := file.fullpath().AsInode()
|
2020-10-26 00:42:47 +08:00
|
|
|
if file.isOpen > 0 {
|
|
|
|
existingHandle, found := wfs.handles[inodeId]
|
|
|
|
if found && existingHandle != nil {
|
|
|
|
file.isOpen++
|
|
|
|
return existingHandle
|
|
|
|
}
|
2020-01-23 05:42:03 +08:00
|
|
|
}
|
|
|
|
|
2018-11-15 14:48:54 +08:00
|
|
|
fileHandle = newFileHandle(file, uid, gid)
|
2020-08-24 06:48:02 +08:00
|
|
|
file.maybeLoadEntry(context.Background())
|
|
|
|
file.isOpen++
|
|
|
|
|
2020-04-09 03:50:20 +08:00
|
|
|
wfs.handles[inodeId] = fileHandle
|
|
|
|
fileHandle.handle = inodeId
|
2018-06-06 17:09:57 +08:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-03-23 15:01:34 +08:00
|
|
|
func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
|
2020-01-21 12:21:01 +08:00
|
|
|
wfs.handlesLock.Lock()
|
|
|
|
defer wfs.handlesLock.Unlock()
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2020-08-19 14:42:09 +08:00
|
|
|
glog.V(4).Infof("%s ReleaseHandle id %d current handles length %d", fullpath, handleId, len(wfs.handles))
|
2020-04-09 03:50:20 +08:00
|
|
|
|
|
|
|
delete(wfs.handles, fullpath.AsInode())
|
2018-06-06 17:09:57 +08:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2018-11-23 15:05:22 +08:00
|
|
|
|
|
|
|
// Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
|
|
|
|
func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
|
|
|
|
|
2020-08-31 11:12:04 +08:00
|
|
|
glog.V(4).Infof("reading fs stats: %+v", req)
|
2018-11-23 15:05:22 +08:00
|
|
|
|
2018-11-23 16:24:51 +08:00
|
|
|
if wfs.stats.lastChecked < time.Now().Unix()-20 {
|
|
|
|
|
2020-02-26 13:50:12 +08:00
|
|
|
err := wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2018-11-23 16:24:51 +08:00
|
|
|
|
|
|
|
request := &filer_pb.StatisticsRequest{
|
|
|
|
Collection: wfs.option.Collection,
|
|
|
|
Replication: wfs.option.Replication,
|
|
|
|
Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
|
|
|
|
}
|
|
|
|
|
2020-08-31 11:12:04 +08:00
|
|
|
glog.V(4).Infof("reading filer stats: %+v", request)
|
2020-02-26 13:50:12 +08:00
|
|
|
resp, err := client.Statistics(context.Background(), request)
|
2018-11-23 16:24:51 +08:00
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("reading filer stats %v: %v", request, err)
|
|
|
|
return err
|
|
|
|
}
|
2020-08-31 11:12:04 +08:00
|
|
|
glog.V(4).Infof("read filer stats: %+v", resp)
|
2018-11-23 16:24:51 +08:00
|
|
|
|
|
|
|
wfs.stats.TotalSize = resp.TotalSize
|
|
|
|
wfs.stats.UsedSize = resp.UsedSize
|
|
|
|
wfs.stats.FileCount = resp.FileCount
|
|
|
|
wfs.stats.lastChecked = time.Now().Unix()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("filer Statistics: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
totalDiskSize := wfs.stats.TotalSize
|
|
|
|
usedDiskSize := wfs.stats.UsedSize
|
|
|
|
actualFileCount := wfs.stats.FileCount
|
2018-11-23 15:05:22 +08:00
|
|
|
|
|
|
|
// Compute the total number of available blocks
|
|
|
|
resp.Blocks = totalDiskSize / blockSize
|
|
|
|
|
|
|
|
// Compute the number of used blocks
|
2019-01-17 09:17:19 +08:00
|
|
|
numBlocks := uint64(usedDiskSize / blockSize)
|
2018-11-23 15:05:22 +08:00
|
|
|
|
|
|
|
// Report the number of free and available blocks for the block size
|
2019-01-17 09:17:19 +08:00
|
|
|
resp.Bfree = resp.Blocks - numBlocks
|
|
|
|
resp.Bavail = resp.Blocks - numBlocks
|
2018-11-23 15:05:22 +08:00
|
|
|
resp.Bsize = uint32(blockSize)
|
|
|
|
|
|
|
|
// Report the total number of possible files in the file system (and those free)
|
|
|
|
resp.Files = math.MaxInt64
|
|
|
|
resp.Ffree = math.MaxInt64 - actualFileCount
|
|
|
|
|
|
|
|
// Report the maximum length of a name and the minimum fragment size
|
|
|
|
resp.Namelen = 1024
|
|
|
|
resp.Frsize = uint32(blockSize)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-09-03 15:07:22 +08:00
|
|
|
|
|
|
|
func (wfs *WFS) mapPbIdFromFilerToLocal(entry *filer_pb.Entry) {
|
2020-09-24 18:06:44 +08:00
|
|
|
if entry.Attributes == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-09-03 15:07:22 +08:00
|
|
|
entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.FilerToLocal(entry.Attributes.Uid, entry.Attributes.Gid)
|
|
|
|
}
|
|
|
|
func (wfs *WFS) mapPbIdFromLocalToFiler(entry *filer_pb.Entry) {
|
2020-09-24 18:06:44 +08:00
|
|
|
if entry.Attributes == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-09-03 15:07:22 +08:00
|
|
|
entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.LocalToFiler(entry.Attributes.Uid, entry.Attributes.Gid)
|
|
|
|
}
|