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.

268 lines
7.3 KiB

7 years ago
5 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 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. wfs.handlesLock.Lock()
  117. defer wfs.handlesLock.Unlock()
  118. inodeId := file.fullpath().AsInode()
  119. if file.isOpen > 0 {
  120. existingHandle, found := wfs.handles[inodeId]
  121. if found && existingHandle != nil {
  122. file.isOpen++
  123. return existingHandle
  124. }
  125. }
  126. entry, _ := file.maybeLoadEntry(context.Background())
  127. file.entry = entry
  128. fileHandle = newFileHandle(file, uid, gid)
  129. file.isOpen++
  130. wfs.handles[inodeId] = fileHandle
  131. fileHandle.handle = inodeId
  132. return
  133. }
  134. func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
  135. wfs.handlesLock.Lock()
  136. defer wfs.handlesLock.Unlock()
  137. glog.V(4).Infof("%s ReleaseHandle id %d current handles length %d", fullpath, handleId, len(wfs.handles))
  138. delete(wfs.handles, fullpath.AsInode())
  139. return
  140. }
  141. // Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
  142. func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
  143. glog.V(4).Infof("reading fs stats: %+v", req)
  144. if wfs.stats.lastChecked < time.Now().Unix()-20 {
  145. err := wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  146. request := &filer_pb.StatisticsRequest{
  147. Collection: wfs.option.Collection,
  148. Replication: wfs.option.Replication,
  149. Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
  150. DiskType: string(wfs.option.DiskType),
  151. }
  152. glog.V(4).Infof("reading filer stats: %+v", request)
  153. resp, err := client.Statistics(context.Background(), request)
  154. if err != nil {
  155. glog.V(0).Infof("reading filer stats %v: %v", request, err)
  156. return err
  157. }
  158. glog.V(4).Infof("read filer stats: %+v", resp)
  159. wfs.stats.TotalSize = resp.TotalSize
  160. wfs.stats.UsedSize = resp.UsedSize
  161. wfs.stats.FileCount = resp.FileCount
  162. wfs.stats.lastChecked = time.Now().Unix()
  163. return nil
  164. })
  165. if err != nil {
  166. glog.V(0).Infof("filer Statistics: %v", err)
  167. return err
  168. }
  169. }
  170. totalDiskSize := wfs.stats.TotalSize
  171. usedDiskSize := wfs.stats.UsedSize
  172. actualFileCount := wfs.stats.FileCount
  173. // Compute the total number of available blocks
  174. resp.Blocks = totalDiskSize / blockSize
  175. // Compute the number of used blocks
  176. numBlocks := uint64(usedDiskSize / blockSize)
  177. // Report the number of free and available blocks for the block size
  178. resp.Bfree = resp.Blocks - numBlocks
  179. resp.Bavail = resp.Blocks - numBlocks
  180. resp.Bsize = uint32(blockSize)
  181. // Report the total number of possible files in the file system (and those free)
  182. resp.Files = math.MaxInt64
  183. resp.Ffree = math.MaxInt64 - actualFileCount
  184. // Report the maximum length of a name and the minimum fragment size
  185. resp.Namelen = 1024
  186. resp.Frsize = uint32(blockSize)
  187. return nil
  188. }
  189. func (wfs *WFS) mapPbIdFromFilerToLocal(entry *filer_pb.Entry) {
  190. if entry.Attributes == nil {
  191. return
  192. }
  193. entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.FilerToLocal(entry.Attributes.Uid, entry.Attributes.Gid)
  194. }
  195. func (wfs *WFS) mapPbIdFromLocalToFiler(entry *filer_pb.Entry) {
  196. if entry.Attributes == nil {
  197. return
  198. }
  199. entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.LocalToFiler(entry.Attributes.Uid, entry.Attributes.Gid)
  200. }
  201. func (wfs *WFS) LookupFn() wdclient.LookupFileIdFunctionType {
  202. if wfs.option.VolumeServerAccess == "filerProxy" {
  203. return func(fileId string) (targetUrls []string, err error) {
  204. return []string{"http://" + wfs.option.FilerAddress + "/?proxyChunkId=" + fileId}, nil
  205. }
  206. }
  207. return filer.LookupFn(wfs)
  208. }
  209. type NodeWithId uint64
  210. func (n NodeWithId) Id() uint64 {
  211. return uint64(n)
  212. }
  213. func (n NodeWithId) Attr(ctx context.Context, attr *fuse.Attr) error {
  214. return nil
  215. }