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