filehandle.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. package filesys
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "math"
  7. "net/http"
  8. "os"
  9. "sync"
  10. "time"
  11. "github.com/seaweedfs/fuse"
  12. "github.com/seaweedfs/fuse/fs"
  13. "github.com/chrislusf/seaweedfs/weed/filer"
  14. "github.com/chrislusf/seaweedfs/weed/glog"
  15. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  16. )
  17. type FileHandle struct {
  18. // cache file has been written to
  19. dirtyPages *ContinuousDirtyPages
  20. contentType string
  21. handle uint64
  22. sync.RWMutex
  23. f *File
  24. RequestId fuse.RequestID // unique ID for request
  25. NodeId fuse.NodeID // file or directory the request is about
  26. Uid uint32 // user ID of process making request
  27. Gid uint32 // group ID of process making request
  28. }
  29. func newFileHandle(file *File, uid, gid uint32) *FileHandle {
  30. fh := &FileHandle{
  31. f: file,
  32. dirtyPages: newDirtyPages(file),
  33. Uid: uid,
  34. Gid: gid,
  35. }
  36. if fh.f.entry != nil {
  37. fh.f.entry.Attributes.FileSize = filer.FileSize(fh.f.entry)
  38. }
  39. return fh
  40. }
  41. var _ = fs.Handle(&FileHandle{})
  42. // var _ = fs.HandleReadAller(&FileHandle{})
  43. var _ = fs.HandleReader(&FileHandle{})
  44. var _ = fs.HandleFlusher(&FileHandle{})
  45. var _ = fs.HandleWriter(&FileHandle{})
  46. var _ = fs.HandleReleaser(&FileHandle{})
  47. func (fh *FileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error {
  48. glog.V(4).Infof("%s read fh %d: [%d,%d) size %d resp.Data cap=%d", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(req.Size), req.Size, cap(resp.Data))
  49. fh.RLock()
  50. defer fh.RUnlock()
  51. if req.Size <= 0 {
  52. return nil
  53. }
  54. buff := resp.Data[:cap(resp.Data)]
  55. if req.Size > cap(resp.Data) {
  56. // should not happen
  57. buff = make([]byte, req.Size)
  58. }
  59. totalRead, err := fh.readFromChunks(buff, req.Offset)
  60. if err == nil || err == io.EOF {
  61. maxStop := fh.readFromDirtyPages(buff, req.Offset)
  62. totalRead = max(maxStop-req.Offset, totalRead)
  63. }
  64. if err == io.EOF {
  65. err = nil
  66. }
  67. if err != nil {
  68. glog.Warningf("file handle read %s %d: %v", fh.f.fullpath(), totalRead, err)
  69. return fuse.EIO
  70. }
  71. if totalRead > int64(len(buff)) {
  72. glog.Warningf("%s FileHandle Read %d: [%d,%d) size %d totalRead %d", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(req.Size), req.Size, totalRead)
  73. totalRead = min(int64(len(buff)), totalRead)
  74. }
  75. // resp.Data = buff[:totalRead]
  76. resp.Data = buff
  77. return err
  78. }
  79. func (fh *FileHandle) readFromDirtyPages(buff []byte, startOffset int64) (maxStop int64) {
  80. maxStop = fh.dirtyPages.ReadDirtyDataAt(buff, startOffset)
  81. return
  82. }
  83. func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
  84. fileSize := int64(filer.FileSize(fh.f.entry))
  85. if fileSize == 0 {
  86. glog.V(1).Infof("empty fh %v", fh.f.fullpath())
  87. return 0, io.EOF
  88. }
  89. if offset+int64(len(buff)) <= int64(len(fh.f.entry.Content)) {
  90. totalRead := copy(buff, fh.f.entry.Content[offset:])
  91. glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead)
  92. return int64(totalRead), nil
  93. }
  94. var chunkResolveErr error
  95. if fh.f.entryViewCache == nil {
  96. fh.f.entryViewCache, chunkResolveErr = filer.NonOverlappingVisibleIntervals(filer.LookupFn(fh.f.wfs), fh.f.entry.Chunks)
  97. if chunkResolveErr != nil {
  98. return 0, fmt.Errorf("fail to resolve chunk manifest: %v", chunkResolveErr)
  99. }
  100. fh.f.reader = nil
  101. }
  102. if fh.f.reader == nil {
  103. chunkViews := filer.ViewFromVisibleIntervals(fh.f.entryViewCache, 0, math.MaxInt64)
  104. fh.f.reader = filer.NewChunkReaderAtFromClient(fh.f.wfs, chunkViews, fh.f.wfs.chunkCache, fileSize)
  105. }
  106. totalRead, err := fh.f.reader.ReadAt(buff, offset)
  107. if err != nil && err != io.EOF {
  108. glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
  109. }
  110. glog.V(4).Infof("file handle read %s [%d,%d] %d : %v", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead, err)
  111. return int64(totalRead), err
  112. }
  113. // Write to the file handle
  114. func (fh *FileHandle) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {
  115. fh.Lock()
  116. defer fh.Unlock()
  117. // write the request to volume servers
  118. data := req.Data
  119. if len(data) <= 512 {
  120. // fuse message cacheable size
  121. data = make([]byte, len(req.Data))
  122. copy(data, req.Data)
  123. }
  124. fh.f.entry.Content = nil
  125. fh.f.entry.Attributes.FileSize = uint64(max(req.Offset+int64(len(data)), int64(fh.f.entry.Attributes.FileSize)))
  126. glog.V(4).Infof("%v write [%d,%d) %d", fh.f.fullpath(), req.Offset, req.Offset+int64(len(req.Data)), len(req.Data))
  127. fh.dirtyPages.AddPage(req.Offset, data)
  128. resp.Size = len(data)
  129. if req.Offset == 0 {
  130. // detect mime type
  131. fh.contentType = http.DetectContentType(data)
  132. fh.f.dirtyMetadata = true
  133. }
  134. fh.f.dirtyMetadata = true
  135. return nil
  136. }
  137. func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) error {
  138. glog.V(4).Infof("Release %v fh %d", fh.f.fullpath(), fh.handle)
  139. fh.Lock()
  140. defer fh.Unlock()
  141. fh.f.isOpen--
  142. if fh.f.isOpen < 0 {
  143. glog.V(0).Infof("Release reset %s open count %d => %d", fh.f.Name, fh.f.isOpen, 0)
  144. fh.f.isOpen = 0
  145. return nil
  146. }
  147. if fh.f.isOpen == 0 {
  148. if err := fh.doFlush(ctx, req.Header); err != nil {
  149. glog.Errorf("Release doFlush %s: %v", fh.f.Name, err)
  150. }
  151. // stop the goroutine
  152. if !fh.dirtyPages.chunkSaveErrChanClosed {
  153. fh.dirtyPages.chunkSaveErrChanClosed = true
  154. close(fh.dirtyPages.chunkSaveErrChan)
  155. }
  156. fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
  157. if closer, ok := fh.f.reader.(io.Closer); ok {
  158. closer.Close()
  159. }
  160. fh.f.reader = nil
  161. }
  162. return nil
  163. }
  164. func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
  165. fh.Lock()
  166. defer fh.Unlock()
  167. return fh.doFlush(ctx, req.Header)
  168. }
  169. func (fh *FileHandle) doFlush(ctx context.Context, header fuse.Header) error {
  170. // flush works at fh level
  171. // send the data to the OS
  172. glog.V(4).Infof("doFlush %s fh %d", fh.f.fullpath(), fh.handle)
  173. fh.dirtyPages.saveExistingPagesToStorage()
  174. fh.dirtyPages.writeWaitGroup.Wait()
  175. if fh.dirtyPages.lastErr != nil {
  176. return fh.dirtyPages.lastErr
  177. }
  178. if !fh.f.dirtyMetadata {
  179. return nil
  180. }
  181. err := fh.f.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  182. if fh.f.entry.Attributes != nil {
  183. fh.f.entry.Attributes.Mime = fh.contentType
  184. if fh.f.entry.Attributes.Uid == 0 {
  185. fh.f.entry.Attributes.Uid = header.Uid
  186. }
  187. if fh.f.entry.Attributes.Gid == 0 {
  188. fh.f.entry.Attributes.Gid = header.Gid
  189. }
  190. if fh.f.entry.Attributes.Crtime == 0 {
  191. fh.f.entry.Attributes.Crtime = time.Now().Unix()
  192. }
  193. fh.f.entry.Attributes.Mtime = time.Now().Unix()
  194. fh.f.entry.Attributes.FileMode = uint32(os.FileMode(fh.f.entry.Attributes.FileMode) &^ fh.f.wfs.option.Umask)
  195. fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
  196. fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
  197. }
  198. request := &filer_pb.CreateEntryRequest{
  199. Directory: fh.f.dir.FullPath(),
  200. Entry: fh.f.entry,
  201. Signatures: []int32{fh.f.wfs.signature},
  202. }
  203. glog.V(4).Infof("%s set chunks: %v", fh.f.fullpath(), len(fh.f.entry.Chunks))
  204. for i, chunk := range fh.f.entry.Chunks {
  205. glog.V(4).Infof("%s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.GetFileIdString(), chunk.Offset, chunk.Offset+int64(chunk.Size))
  206. }
  207. manifestChunks, nonManifestChunks := filer.SeparateManifestChunks(fh.f.entry.Chunks)
  208. chunks, _ := filer.CompactFileChunks(filer.LookupFn(fh.f.wfs), nonManifestChunks)
  209. chunks, manifestErr := filer.MaybeManifestize(fh.f.wfs.saveDataAsChunk(fh.f.fullpath()), chunks)
  210. if manifestErr != nil {
  211. // not good, but should be ok
  212. glog.V(0).Infof("MaybeManifestize: %v", manifestErr)
  213. }
  214. fh.f.entry.Chunks = append(chunks, manifestChunks...)
  215. fh.f.wfs.mapPbIdFromLocalToFiler(request.Entry)
  216. defer fh.f.wfs.mapPbIdFromFilerToLocal(request.Entry)
  217. if err := filer_pb.CreateEntry(client, request); err != nil {
  218. glog.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  219. return fmt.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  220. }
  221. fh.f.wfs.metaCache.InsertEntry(context.Background(), filer.FromPbEntry(request.Directory, request.Entry))
  222. return nil
  223. })
  224. if err == nil {
  225. fh.f.dirtyMetadata = false
  226. }
  227. if err != nil {
  228. glog.Errorf("%v fh %d flush: %v", fh.f.fullpath(), fh.handle, err)
  229. return fuse.EIO
  230. }
  231. return nil
  232. }