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.

276 lines
7.6 KiB

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