2018-05-05 22:47:16 -07:00
|
|
|
package filesys
|
|
|
|
|
2018-05-08 01:59:43 -07:00
|
|
|
import (
|
2018-11-22 23:05:22 -08:00
|
|
|
"context"
|
2018-11-08 07:37:34 -08:00
|
|
|
"fmt"
|
2021-09-12 22:47:52 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2018-11-22 23:05:22 -08:00
|
|
|
"math"
|
2021-05-21 01:41:34 -07:00
|
|
|
"math/rand"
|
2018-12-28 23:36:13 -08:00
|
|
|
"os"
|
2020-04-21 18:50:30 -07:00
|
|
|
"path"
|
2018-11-08 07:37:34 -08:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2021-06-02 19:30:55 +02:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/types"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/wdclient"
|
|
|
|
|
2020-06-28 10:14:17 -07:00
|
|
|
"google.golang.org/grpc"
|
2020-06-11 01:50:00 -07:00
|
|
|
|
2020-06-28 10:18:32 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/grace"
|
|
|
|
|
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
|
|
|
|
2020-04-21 18:50:30 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filesys/meta_cache"
|
2018-06-06 02:09:57 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-07-21 17:39:10 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2020-03-23 00:01:34 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-04-11 12:45:24 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/chunk_cache"
|
2018-05-08 01:59:43 -07:00
|
|
|
)
|
2018-05-05 22:47:16 -07:00
|
|
|
|
2018-07-22 01:14:36 -07:00
|
|
|
type Option struct {
|
2021-01-25 09:10:20 -08:00
|
|
|
MountDirectory string
|
2021-09-12 22:47:52 -07:00
|
|
|
FilerAddresses []pb.ServerAddress
|
2021-05-21 01:28:00 -07:00
|
|
|
filerIndex int
|
2020-04-11 21:12:41 -07:00
|
|
|
GrpcDialOption grpc.DialOption
|
|
|
|
FilerMountRootPath string
|
|
|
|
Collection string
|
|
|
|
Replication string
|
|
|
|
TtlSec int32
|
2021-02-16 02:47:02 -08:00
|
|
|
DiskType types.DiskType
|
2020-04-11 21:12:41 -07:00
|
|
|
ChunkSizeLimit int64
|
2020-10-30 21:22:20 -07:00
|
|
|
ConcurrentWriters int
|
2020-04-11 21:12:41 -07:00
|
|
|
CacheDir string
|
|
|
|
CacheSizeMB int64
|
|
|
|
DataCenter string
|
|
|
|
Umask os.FileMode
|
2018-12-28 23:36:13 -08:00
|
|
|
|
2021-06-02 19:30:55 +02:00
|
|
|
MountUid uint32
|
|
|
|
MountGid uint32
|
|
|
|
MountMode os.FileMode
|
|
|
|
MountCtime time.Time
|
|
|
|
MountMtime time.Time
|
|
|
|
MountParentInode uint64
|
2020-02-26 16:46:01 -08:00
|
|
|
|
2021-01-28 15:23:16 -08:00
|
|
|
VolumeServerAccess string // how to access volume servers
|
|
|
|
Cipher bool // whether encrypt data on volume server
|
|
|
|
UidGidMapper *meta_cache.UidGidMapper
|
2021-05-21 13:02:18 -07:00
|
|
|
|
2022-02-16 00:37:24 -08:00
|
|
|
uniqueCacheDir string
|
2018-07-22 01:14:36 -07:00
|
|
|
}
|
|
|
|
|
2018-11-22 23:05:22 -08:00
|
|
|
var _ = fs.FS(&WFS{})
|
|
|
|
var _ = fs.FSStatfser(&WFS{})
|
|
|
|
|
2018-05-05 22:47:16 -07:00
|
|
|
type WFS struct {
|
2020-07-11 06:16:17 -07:00
|
|
|
option *Option
|
2018-06-06 02:09:57 -07:00
|
|
|
|
2020-01-20 20:21:01 -08:00
|
|
|
// contains all open handles, protected by handlesLock
|
2020-04-08 12:50:20 -07:00
|
|
|
handlesLock sync.Mutex
|
|
|
|
handles map[uint64]*FileHandle
|
2020-01-20 20:21:01 -08:00
|
|
|
|
|
|
|
bufPool sync.Pool
|
2018-11-14 23:31:39 -08:00
|
|
|
|
2018-11-23 00:24:51 -08:00
|
|
|
stats statsCache
|
2020-01-20 20:21:01 -08:00
|
|
|
|
2020-03-25 22:19:19 -07:00
|
|
|
root fs.Node
|
2020-08-09 21:56:09 -07:00
|
|
|
fsNodeCache *FsCache
|
2020-03-28 13:43:31 -07:00
|
|
|
|
2020-08-17 20:15:53 -07:00
|
|
|
chunkCache *chunk_cache.TieredChunkCache
|
2020-04-21 18:50:30 -07:00
|
|
|
metaCache *meta_cache.MetaCache
|
2020-08-28 23:48:48 -07:00
|
|
|
signature int32
|
2020-10-30 21:22:20 -07:00
|
|
|
|
|
|
|
// throttle writers
|
2021-04-02 02:21:38 -07:00
|
|
|
concurrentWriters *util.LimitedConcurrentExecutor
|
2021-01-26 02:50:50 -08:00
|
|
|
Server *fs.Server
|
2018-11-23 00:24:51 -08:00
|
|
|
}
|
|
|
|
type statsCache struct {
|
|
|
|
filer_pb.StatisticsResponse
|
|
|
|
lastChecked int64 // unix time in seconds
|
2018-05-05 22:47:16 -07:00
|
|
|
}
|
|
|
|
|
2018-07-22 01:14:36 -07:00
|
|
|
func NewSeaweedFileSystem(option *Option) *WFS {
|
2019-01-01 02:33:57 -08:00
|
|
|
wfs := &WFS{
|
2020-07-11 06:16:17 -07:00
|
|
|
option: option,
|
|
|
|
handles: make(map[uint64]*FileHandle),
|
2018-12-28 03:27:48 -08:00
|
|
|
bufPool: sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
return make([]byte, option.ChunkSizeLimit)
|
|
|
|
},
|
|
|
|
},
|
2020-08-28 23:48:48 -07:00
|
|
|
signature: util.RandomInt32(),
|
2020-04-12 00:52:54 -07:00
|
|
|
}
|
2021-05-21 01:41:34 -07:00
|
|
|
wfs.option.filerIndex = rand.Intn(len(option.FilerAddresses))
|
2021-05-21 13:02:18 -07:00
|
|
|
wfs.option.setupUniqueCacheDirectory()
|
2020-04-12 00:52:54 -07:00
|
|
|
if option.CacheSizeMB > 0 {
|
2021-05-21 13:02:18 -07:00
|
|
|
wfs.chunkCache = chunk_cache.NewTieredChunkCache(256, option.getUniqueCacheDir(), option.CacheSizeMB, 1024*1024)
|
2018-05-05 22:47:16 -07:00
|
|
|
}
|
2020-06-28 10:18:32 -07:00
|
|
|
|
2022-01-12 11:51:13 -08:00
|
|
|
wfs.metaCache = meta_cache.NewMetaCache(path.Join(option.getUniqueCacheDir(), "meta"), util.FullPath(option.FilerMountRootPath), option.UidGidMapper, func(filePath util.FullPath, entry *filer_pb.Entry) {
|
2021-04-17 10:48:22 -07:00
|
|
|
|
2022-01-12 11:51:13 -08:00
|
|
|
fsNode := NodeWithId(filePath.AsInode(entry.FileMode()))
|
2021-04-16 02:55:09 -07:00
|
|
|
if err := wfs.Server.InvalidateNodeData(fsNode); err != nil {
|
|
|
|
glog.V(4).Infof("InvalidateNodeData %s : %v", filePath, err)
|
2020-10-25 19:24:15 -07:00
|
|
|
}
|
2021-04-16 02:55:09 -07:00
|
|
|
|
2021-01-26 02:50:50 -08:00
|
|
|
dir, name := filePath.DirAndName()
|
2022-01-12 11:51:13 -08:00
|
|
|
parent := NodeWithId(util.FullPath(dir).AsInode(os.ModeDir))
|
2021-04-30 22:51:06 -07:00
|
|
|
if dir == option.FilerMountRootPath {
|
|
|
|
parent = NodeWithId(1)
|
|
|
|
}
|
2021-04-16 02:55:09 -07:00
|
|
|
if err := wfs.Server.InvalidateEntry(parent, name); err != nil {
|
|
|
|
glog.V(4).Infof("InvalidateEntry %s : %v", filePath, err)
|
2021-01-26 02:50:50 -08:00
|
|
|
}
|
2020-10-25 19:24:15 -07:00
|
|
|
})
|
2020-07-10 23:03:22 -07:00
|
|
|
grace.OnInterrupt(func() {
|
|
|
|
wfs.metaCache.Shutdown()
|
2022-02-16 00:39:21 -08:00
|
|
|
os.RemoveAll(option.getUniqueCacheDir())
|
2020-07-10 23:03:22 -07:00
|
|
|
})
|
2019-01-01 02:33:57 -08:00
|
|
|
|
2021-04-30 22:51:06 -07:00
|
|
|
wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs, id: 1}
|
2020-08-09 21:56:09 -07:00
|
|
|
wfs.fsNodeCache = newFsCache(wfs.root)
|
2020-01-20 20:21:01 -08:00
|
|
|
|
2020-10-30 21:22:20 -07:00
|
|
|
if wfs.option.ConcurrentWriters > 0 {
|
2021-04-02 02:21:38 -07:00
|
|
|
wfs.concurrentWriters = util.NewLimitedConcurrentExecutor(wfs.option.ConcurrentWriters)
|
2020-10-30 21:22:20 -07:00
|
|
|
}
|
|
|
|
|
2019-01-01 02:33:57 -08:00
|
|
|
return wfs
|
2018-05-05 22:47:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-06 20:22:42 -07:00
|
|
|
func (wfs *WFS) StartBackgroundTasks() {
|
|
|
|
startTime := time.Now()
|
|
|
|
go meta_cache.SubscribeMetaEvents(wfs.metaCache, wfs.signature, wfs, wfs.option.FilerMountRootPath, startTime.UnixNano())
|
|
|
|
}
|
|
|
|
|
2018-05-05 22:47:16 -07:00
|
|
|
func (wfs *WFS) Root() (fs.Node, error) {
|
2020-01-20 20:21:01 -08:00
|
|
|
return wfs.root, nil
|
2018-05-05 22:47:16 -07:00
|
|
|
}
|
2018-05-08 01:59:43 -07:00
|
|
|
|
2021-12-20 01:11:43 -08:00
|
|
|
func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (fileHandle *FileHandle) {
|
2018-06-06 02:09:57 -07:00
|
|
|
|
|
|
|
fullpath := file.fullpath()
|
2020-08-15 19:55:28 -07:00
|
|
|
glog.V(4).Infof("AcquireHandle %s uid=%d gid=%d", fullpath, uid, gid)
|
2018-06-06 02:09:57 -07:00
|
|
|
|
2021-04-17 10:48:22 -07:00
|
|
|
inodeId := file.Id()
|
2018-06-06 02:09:57 -07:00
|
|
|
|
2021-04-17 10:48:22 -07:00
|
|
|
wfs.handlesLock.Lock()
|
|
|
|
existingHandle, found := wfs.handles[inodeId]
|
2021-08-11 22:58:35 +09:00
|
|
|
if found && existingHandle != nil && existingHandle.f.isOpen > 0 {
|
2021-04-17 10:48:22 -07:00
|
|
|
existingHandle.f.isOpen++
|
2021-08-11 22:58:35 +09:00
|
|
|
wfs.handlesLock.Unlock()
|
|
|
|
glog.V(4).Infof("Reuse AcquiredHandle %s open %d", fullpath, existingHandle.f.isOpen)
|
2021-04-17 10:48:22 -07:00
|
|
|
return existingHandle
|
2020-01-22 13:42:03 -08:00
|
|
|
}
|
2021-08-11 22:58:35 +09:00
|
|
|
wfs.handlesLock.Unlock()
|
2020-01-22 13:42:03 -08:00
|
|
|
|
2021-04-14 20:49:15 -07:00
|
|
|
entry, _ := file.maybeLoadEntry(context.Background())
|
|
|
|
file.entry = entry
|
2021-12-20 01:11:43 -08:00
|
|
|
fileHandle = newFileHandle(file, uid, gid)
|
2020-08-23 15:48:02 -07:00
|
|
|
|
2021-04-17 10:48:22 -07:00
|
|
|
wfs.handlesLock.Lock()
|
2021-08-11 22:58:35 +09:00
|
|
|
file.isOpen++
|
2020-04-08 12:50:20 -07:00
|
|
|
wfs.handles[inodeId] = fileHandle
|
2021-04-17 10:48:22 -07:00
|
|
|
wfs.handlesLock.Unlock()
|
2020-04-08 12:50:20 -07:00
|
|
|
fileHandle.handle = inodeId
|
2018-06-06 02:09:57 -07:00
|
|
|
|
2021-04-17 10:48:22 -07:00
|
|
|
glog.V(4).Infof("Acquired new Handle %s open %d", fullpath, file.isOpen)
|
2018-06-06 02:09:57 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-10 00:52:16 -08:00
|
|
|
func (wfs *WFS) Fsync(file *File, header fuse.Header) error {
|
|
|
|
|
|
|
|
inodeId := file.Id()
|
|
|
|
|
|
|
|
wfs.handlesLock.Lock()
|
|
|
|
existingHandle, found := wfs.handles[inodeId]
|
|
|
|
wfs.handlesLock.Unlock()
|
|
|
|
|
2022-01-15 05:45:29 -08:00
|
|
|
if found && existingHandle != nil {
|
2022-01-10 00:52:16 -08:00
|
|
|
|
|
|
|
existingHandle.Lock()
|
|
|
|
defer existingHandle.Unlock()
|
|
|
|
|
2022-01-15 05:45:29 -08:00
|
|
|
if existingHandle.f.isOpen > 0 {
|
|
|
|
return existingHandle.doFlush(context.Background(), header)
|
|
|
|
}
|
|
|
|
|
2022-01-10 00:52:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-23 00:01:34 -07:00
|
|
|
func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
|
2020-01-20 20:21:01 -08:00
|
|
|
wfs.handlesLock.Lock()
|
|
|
|
defer wfs.handlesLock.Unlock()
|
2018-06-06 02:09:57 -07:00
|
|
|
|
2021-04-17 10:48:22 -07:00
|
|
|
glog.V(4).Infof("ReleaseHandle %s id %d current handles length %d", fullpath, handleId, len(wfs.handles))
|
2020-04-08 12:50:20 -07:00
|
|
|
|
2021-04-17 10:48:22 -07:00
|
|
|
delete(wfs.handles, uint64(handleId))
|
2018-06-06 02:09:57 -07:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2018-11-22 23: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-30 20:12:04 -07:00
|
|
|
glog.V(4).Infof("reading fs stats: %+v", req)
|
2018-11-22 23:05:22 -08:00
|
|
|
|
2018-11-23 00:24:51 -08:00
|
|
|
if wfs.stats.lastChecked < time.Now().Unix()-20 {
|
|
|
|
|
2021-12-26 00:15:03 -08:00
|
|
|
err := wfs.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
2018-11-23 00:24:51 -08:00
|
|
|
|
|
|
|
request := &filer_pb.StatisticsRequest{
|
|
|
|
Collection: wfs.option.Collection,
|
|
|
|
Replication: wfs.option.Replication,
|
|
|
|
Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
|
2020-12-16 09:14:05 -08:00
|
|
|
DiskType: string(wfs.option.DiskType),
|
2018-11-23 00:24:51 -08:00
|
|
|
}
|
|
|
|
|
2020-08-30 20:12:04 -07:00
|
|
|
glog.V(4).Infof("reading filer stats: %+v", request)
|
2020-02-25 21:50:12 -08:00
|
|
|
resp, err := client.Statistics(context.Background(), request)
|
2018-11-23 00:24:51 -08:00
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("reading filer stats %v: %v", request, err)
|
|
|
|
return err
|
|
|
|
}
|
2020-08-30 20:12:04 -07:00
|
|
|
glog.V(4).Infof("read filer stats: %+v", resp)
|
2018-11-23 00: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-22 23: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-22 23: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-22 23: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 00:07:22 -07:00
|
|
|
|
|
|
|
func (wfs *WFS) mapPbIdFromFilerToLocal(entry *filer_pb.Entry) {
|
2020-09-24 03:06:44 -07:00
|
|
|
if entry.Attributes == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-09-03 00:07:22 -07: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 03:06:44 -07:00
|
|
|
if entry.Attributes == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-09-03 00:07:22 -07:00
|
|
|
entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.LocalToFiler(entry.Attributes.Uid, entry.Attributes.Gid)
|
|
|
|
}
|
2021-01-24 19:01:58 -08:00
|
|
|
|
|
|
|
func (wfs *WFS) LookupFn() wdclient.LookupFileIdFunctionType {
|
2021-01-28 15:23:16 -08:00
|
|
|
if wfs.option.VolumeServerAccess == "filerProxy" {
|
2021-01-24 19:01:58 -08:00
|
|
|
return func(fileId string) (targetUrls []string, err error) {
|
2021-09-12 22:47:52 -07:00
|
|
|
return []string{"http://" + wfs.getCurrentFiler().ToHttpAddress() + "/?proxyChunkId=" + fileId}, nil
|
2021-01-24 19:01:58 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return filer.LookupFn(wfs)
|
2021-05-21 01:28:00 -07:00
|
|
|
}
|
2021-09-12 22:47:52 -07:00
|
|
|
func (wfs *WFS) getCurrentFiler() pb.ServerAddress {
|
2021-05-21 01:28:00 -07:00
|
|
|
return wfs.option.FilerAddresses[wfs.option.filerIndex]
|
2021-01-24 19:01:58 -08:00
|
|
|
}
|
2021-04-16 02:55:09 -07:00
|
|
|
|
2021-05-21 13:02:18 -07:00
|
|
|
func (option *Option) setupUniqueCacheDirectory() {
|
2021-09-12 22:47:52 -07:00
|
|
|
cacheUniqueId := util.Md5String([]byte(option.MountDirectory + string(option.FilerAddresses[0]) + option.FilerMountRootPath + util.Version()))[0:8]
|
2021-05-21 13:02:18 -07:00
|
|
|
option.uniqueCacheDir = path.Join(option.CacheDir, cacheUniqueId)
|
2022-02-16 01:09:21 -08:00
|
|
|
os.MkdirAll(option.uniqueCacheDir, os.FileMode(0777)&^option.Umask)
|
2021-05-21 13:02:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (option *Option) getUniqueCacheDir() string {
|
|
|
|
return option.uniqueCacheDir
|
|
|
|
}
|
|
|
|
|
2021-04-16 02:55:09 -07:00
|
|
|
type NodeWithId uint64
|
2021-05-06 03:37:51 -07:00
|
|
|
|
2021-04-16 02:55:09 -07:00
|
|
|
func (n NodeWithId) Id() uint64 {
|
|
|
|
return uint64(n)
|
|
|
|
}
|
|
|
|
func (n NodeWithId) Attr(ctx context.Context, attr *fuse.Attr) error {
|
|
|
|
return nil
|
|
|
|
}
|