You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

271 lines
7.5 KiB

7 years ago
5 years ago
5 years ago
6 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
  1. package filesys
  2. import (
  3. "context"
  4. "fmt"
  5. "github.com/chrislusf/seaweedfs/weed/filer"
  6. "github.com/chrislusf/seaweedfs/weed/storage/types"
  7. "github.com/chrislusf/seaweedfs/weed/wdclient"
  8. "math"
  9. "os"
  10. "path"
  11. "sync"
  12. "time"
  13. "google.golang.org/grpc"
  14. "github.com/chrislusf/seaweedfs/weed/util/grace"
  15. "github.com/seaweedfs/fuse"
  16. "github.com/seaweedfs/fuse/fs"
  17. "github.com/chrislusf/seaweedfs/weed/filesys/meta_cache"
  18. "github.com/chrislusf/seaweedfs/weed/glog"
  19. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  20. "github.com/chrislusf/seaweedfs/weed/util"
  21. "github.com/chrislusf/seaweedfs/weed/util/chunk_cache"
  22. )
  23. type Option struct {
  24. MountDirectory string
  25. FilerAddress string
  26. FilerGrpcAddress string
  27. GrpcDialOption grpc.DialOption
  28. FilerMountRootPath string
  29. Collection string
  30. Replication string
  31. TtlSec int32
  32. DiskType types.DiskType
  33. ChunkSizeLimit int64
  34. ConcurrentWriters int
  35. CacheDir string
  36. CacheSizeMB int64
  37. DataCenter string
  38. Umask os.FileMode
  39. MountUid uint32
  40. MountGid uint32
  41. MountMode os.FileMode
  42. MountCtime time.Time
  43. MountMtime time.Time
  44. VolumeServerAccess string // how to access volume servers
  45. Cipher bool // whether encrypt data on volume server
  46. UidGidMapper *meta_cache.UidGidMapper
  47. }
  48. var _ = fs.FS(&WFS{})
  49. var _ = fs.FSStatfser(&WFS{})
  50. type WFS struct {
  51. option *Option
  52. // contains all open handles, protected by handlesLock
  53. handlesLock sync.Mutex
  54. handles map[uint64]*FileHandle
  55. bufPool sync.Pool
  56. stats statsCache
  57. root fs.Node
  58. fsNodeCache *FsCache
  59. chunkCache *chunk_cache.TieredChunkCache
  60. metaCache *meta_cache.MetaCache
  61. signature int32
  62. // throttle writers
  63. concurrentWriters *util.LimitedConcurrentExecutor
  64. Server *fs.Server
  65. }
  66. type statsCache struct {
  67. filer_pb.StatisticsResponse
  68. lastChecked int64 // unix time in seconds
  69. }
  70. func NewSeaweedFileSystem(option *Option) *WFS {
  71. wfs := &WFS{
  72. option: option,
  73. handles: make(map[uint64]*FileHandle),
  74. bufPool: sync.Pool{
  75. New: func() interface{} {
  76. return make([]byte, option.ChunkSizeLimit)
  77. },
  78. },
  79. signature: util.RandomInt32(),
  80. }
  81. cacheUniqueId := util.Md5String([]byte(option.MountDirectory + option.FilerGrpcAddress + option.FilerMountRootPath + util.Version()))[0:8]
  82. cacheDir := path.Join(option.CacheDir, cacheUniqueId)
  83. if option.CacheSizeMB > 0 {
  84. os.MkdirAll(cacheDir, os.FileMode(0777)&^option.Umask)
  85. wfs.chunkCache = chunk_cache.NewTieredChunkCache(256, cacheDir, option.CacheSizeMB, 1024*1024)
  86. }
  87. wfs.metaCache = meta_cache.NewMetaCache(path.Join(cacheDir, "meta"), util.FullPath(option.FilerMountRootPath), option.UidGidMapper, func(filePath util.FullPath) {
  88. fsNode := NodeWithId(filePath.AsInode())
  89. if err := wfs.Server.InvalidateNodeData(fsNode); err != nil {
  90. glog.V(4).Infof("InvalidateNodeData %s : %v", filePath, err)
  91. }
  92. dir, name := filePath.DirAndName()
  93. parent := NodeWithId(util.FullPath(dir).AsInode())
  94. if err := wfs.Server.InvalidateEntry(parent, name); err != nil {
  95. glog.V(4).Infof("InvalidateEntry %s : %v", filePath, err)
  96. }
  97. })
  98. startTime := time.Now()
  99. go meta_cache.SubscribeMetaEvents(wfs.metaCache, wfs.signature, wfs, wfs.option.FilerMountRootPath, startTime.UnixNano())
  100. grace.OnInterrupt(func() {
  101. wfs.metaCache.Shutdown()
  102. })
  103. wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs}
  104. wfs.fsNodeCache = newFsCache(wfs.root)
  105. if wfs.option.ConcurrentWriters > 0 {
  106. wfs.concurrentWriters = util.NewLimitedConcurrentExecutor(wfs.option.ConcurrentWriters)
  107. }
  108. return wfs
  109. }
  110. func (wfs *WFS) Root() (fs.Node, error) {
  111. return wfs.root, nil
  112. }
  113. func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (fileHandle *FileHandle) {
  114. fullpath := file.fullpath()
  115. glog.V(4).Infof("AcquireHandle %s uid=%d gid=%d", fullpath, uid, gid)
  116. inodeId := file.Id()
  117. wfs.handlesLock.Lock()
  118. existingHandle, found := wfs.handles[inodeId]
  119. wfs.handlesLock.Unlock()
  120. if found && existingHandle != nil {
  121. existingHandle.f.isOpen++
  122. glog.V(4).Infof("Acquired Handle %s open %d", fullpath, existingHandle.f.isOpen)
  123. return existingHandle
  124. }
  125. entry, _ := file.maybeLoadEntry(context.Background())
  126. file.entry = entry
  127. fileHandle = newFileHandle(file, uid, gid)
  128. file.isOpen++
  129. wfs.handlesLock.Lock()
  130. wfs.handles[inodeId] = fileHandle
  131. wfs.handlesLock.Unlock()
  132. fileHandle.handle = inodeId
  133. glog.V(4).Infof("Acquired new Handle %s open %d", fullpath, file.isOpen)
  134. return
  135. }
  136. func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
  137. wfs.handlesLock.Lock()
  138. defer wfs.handlesLock.Unlock()
  139. glog.V(4).Infof("ReleaseHandle %s id %d current handles length %d", fullpath, handleId, len(wfs.handles))
  140. delete(wfs.handles, uint64(handleId))
  141. return
  142. }
  143. // Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
  144. func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
  145. glog.V(4).Infof("reading fs stats: %+v", req)
  146. if wfs.stats.lastChecked < time.Now().Unix()-20 {
  147. err := wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  148. request := &filer_pb.StatisticsRequest{
  149. Collection: wfs.option.Collection,
  150. Replication: wfs.option.Replication,
  151. Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
  152. DiskType: string(wfs.option.DiskType),
  153. }
  154. glog.V(4).Infof("reading filer stats: %+v", request)
  155. resp, err := client.Statistics(context.Background(), request)
  156. if err != nil {
  157. glog.V(0).Infof("reading filer stats %v: %v", request, err)
  158. return err
  159. }
  160. glog.V(4).Infof("read filer stats: %+v", resp)
  161. wfs.stats.TotalSize = resp.TotalSize
  162. wfs.stats.UsedSize = resp.UsedSize
  163. wfs.stats.FileCount = resp.FileCount
  164. wfs.stats.lastChecked = time.Now().Unix()
  165. return nil
  166. })
  167. if err != nil {
  168. glog.V(0).Infof("filer Statistics: %v", err)
  169. return err
  170. }
  171. }
  172. totalDiskSize := wfs.stats.TotalSize
  173. usedDiskSize := wfs.stats.UsedSize
  174. actualFileCount := wfs.stats.FileCount
  175. // Compute the total number of available blocks
  176. resp.Blocks = totalDiskSize / blockSize
  177. // Compute the number of used blocks
  178. numBlocks := uint64(usedDiskSize / blockSize)
  179. // Report the number of free and available blocks for the block size
  180. resp.Bfree = resp.Blocks - numBlocks
  181. resp.Bavail = resp.Blocks - numBlocks
  182. resp.Bsize = uint32(blockSize)
  183. // Report the total number of possible files in the file system (and those free)
  184. resp.Files = math.MaxInt64
  185. resp.Ffree = math.MaxInt64 - actualFileCount
  186. // Report the maximum length of a name and the minimum fragment size
  187. resp.Namelen = 1024
  188. resp.Frsize = uint32(blockSize)
  189. return nil
  190. }
  191. func (wfs *WFS) mapPbIdFromFilerToLocal(entry *filer_pb.Entry) {
  192. if entry.Attributes == nil {
  193. return
  194. }
  195. entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.FilerToLocal(entry.Attributes.Uid, entry.Attributes.Gid)
  196. }
  197. func (wfs *WFS) mapPbIdFromLocalToFiler(entry *filer_pb.Entry) {
  198. if entry.Attributes == nil {
  199. return
  200. }
  201. entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.LocalToFiler(entry.Attributes.Uid, entry.Attributes.Gid)
  202. }
  203. func (wfs *WFS) LookupFn() wdclient.LookupFileIdFunctionType {
  204. if wfs.option.VolumeServerAccess == "filerProxy" {
  205. return func(fileId string) (targetUrls []string, err error) {
  206. return []string{"http://" + wfs.option.FilerAddress + "/?proxyChunkId=" + fileId}, nil
  207. }
  208. }
  209. return filer.LookupFn(wfs)
  210. }
  211. type NodeWithId uint64
  212. func (n NodeWithId) Id() uint64 {
  213. return uint64(n)
  214. }
  215. func (n NodeWithId) Attr(ctx context.Context, attr *fuse.Attr) error {
  216. return nil
  217. }