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.

269 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 := wfs.fsNodeCache.GetFsNode(filePath)
  89. if fsNode != nil {
  90. if file, ok := fsNode.(*File); ok {
  91. if err := wfs.Server.InvalidateNodeData(file); err != nil {
  92. glog.V(4).Infof("InvalidateNodeData %s : %v", filePath, err)
  93. }
  94. file.entry = nil
  95. }
  96. }
  97. dir, name := filePath.DirAndName()
  98. parent := wfs.root
  99. if dir != "/" {
  100. parent = wfs.fsNodeCache.GetFsNode(util.FullPath(dir))
  101. }
  102. if parent != nil {
  103. if err := wfs.Server.InvalidateEntry(parent, name); err != nil {
  104. glog.V(4).Infof("InvalidateEntry %s : %v", filePath, err)
  105. }
  106. }
  107. })
  108. startTime := time.Now()
  109. go meta_cache.SubscribeMetaEvents(wfs.metaCache, wfs.signature, wfs, wfs.option.FilerMountRootPath, startTime.UnixNano())
  110. grace.OnInterrupt(func() {
  111. wfs.metaCache.Shutdown()
  112. })
  113. wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs}
  114. wfs.fsNodeCache = newFsCache(wfs.root)
  115. if wfs.option.ConcurrentWriters > 0 {
  116. wfs.concurrentWriters = util.NewLimitedConcurrentExecutor(wfs.option.ConcurrentWriters)
  117. }
  118. return wfs
  119. }
  120. func (wfs *WFS) Root() (fs.Node, error) {
  121. return wfs.root, nil
  122. }
  123. func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (fileHandle *FileHandle) {
  124. fullpath := file.fullpath()
  125. glog.V(4).Infof("AcquireHandle %s uid=%d gid=%d", fullpath, uid, gid)
  126. wfs.handlesLock.Lock()
  127. defer wfs.handlesLock.Unlock()
  128. inodeId := file.fullpath().AsInode()
  129. if file.isOpen > 0 {
  130. existingHandle, found := wfs.handles[inodeId]
  131. if found && existingHandle != nil {
  132. file.isOpen++
  133. return existingHandle
  134. }
  135. }
  136. entry, _ := file.maybeLoadEntry(context.Background())
  137. file.entry = entry
  138. fileHandle = newFileHandle(file, uid, gid)
  139. file.isOpen++
  140. wfs.handles[inodeId] = fileHandle
  141. fileHandle.handle = inodeId
  142. return
  143. }
  144. func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
  145. wfs.handlesLock.Lock()
  146. defer wfs.handlesLock.Unlock()
  147. glog.V(4).Infof("%s ReleaseHandle id %d current handles length %d", fullpath, handleId, len(wfs.handles))
  148. delete(wfs.handles, fullpath.AsInode())
  149. return
  150. }
  151. // Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
  152. func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
  153. glog.V(4).Infof("reading fs stats: %+v", req)
  154. if wfs.stats.lastChecked < time.Now().Unix()-20 {
  155. err := wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  156. request := &filer_pb.StatisticsRequest{
  157. Collection: wfs.option.Collection,
  158. Replication: wfs.option.Replication,
  159. Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
  160. DiskType: string(wfs.option.DiskType),
  161. }
  162. glog.V(4).Infof("reading filer stats: %+v", request)
  163. resp, err := client.Statistics(context.Background(), request)
  164. if err != nil {
  165. glog.V(0).Infof("reading filer stats %v: %v", request, err)
  166. return err
  167. }
  168. glog.V(4).Infof("read filer stats: %+v", resp)
  169. wfs.stats.TotalSize = resp.TotalSize
  170. wfs.stats.UsedSize = resp.UsedSize
  171. wfs.stats.FileCount = resp.FileCount
  172. wfs.stats.lastChecked = time.Now().Unix()
  173. return nil
  174. })
  175. if err != nil {
  176. glog.V(0).Infof("filer Statistics: %v", err)
  177. return err
  178. }
  179. }
  180. totalDiskSize := wfs.stats.TotalSize
  181. usedDiskSize := wfs.stats.UsedSize
  182. actualFileCount := wfs.stats.FileCount
  183. // Compute the total number of available blocks
  184. resp.Blocks = totalDiskSize / blockSize
  185. // Compute the number of used blocks
  186. numBlocks := uint64(usedDiskSize / blockSize)
  187. // Report the number of free and available blocks for the block size
  188. resp.Bfree = resp.Blocks - numBlocks
  189. resp.Bavail = resp.Blocks - numBlocks
  190. resp.Bsize = uint32(blockSize)
  191. // Report the total number of possible files in the file system (and those free)
  192. resp.Files = math.MaxInt64
  193. resp.Ffree = math.MaxInt64 - actualFileCount
  194. // Report the maximum length of a name and the minimum fragment size
  195. resp.Namelen = 1024
  196. resp.Frsize = uint32(blockSize)
  197. return nil
  198. }
  199. func (wfs *WFS) mapPbIdFromFilerToLocal(entry *filer_pb.Entry) {
  200. if entry.Attributes == nil {
  201. return
  202. }
  203. entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.FilerToLocal(entry.Attributes.Uid, entry.Attributes.Gid)
  204. }
  205. func (wfs *WFS) mapPbIdFromLocalToFiler(entry *filer_pb.Entry) {
  206. if entry.Attributes == nil {
  207. return
  208. }
  209. entry.Attributes.Uid, entry.Attributes.Gid = wfs.option.UidGidMapper.LocalToFiler(entry.Attributes.Uid, entry.Attributes.Gid)
  210. }
  211. func (wfs *WFS) LookupFn() wdclient.LookupFileIdFunctionType {
  212. if wfs.option.VolumeServerAccess == "filerProxy" {
  213. return func(fileId string) (targetUrls []string, err error) {
  214. return []string{"http://" + wfs.option.FilerAddress + "/?proxyChunkId=" + fileId}, nil
  215. }
  216. }
  217. return filer.LookupFn(wfs)
  218. }