2018-05-23 18:08:46 +08:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
2018-05-28 02:52:26 +08:00
|
|
|
"context"
|
2018-05-23 18:08:46 +08:00
|
|
|
"fmt"
|
2020-06-10 09:04:40 +08:00
|
|
|
"io"
|
2020-03-22 16:00:36 +08:00
|
|
|
"math"
|
2020-04-15 02:32:31 +08:00
|
|
|
"net/http"
|
2020-06-25 14:26:54 +08:00
|
|
|
"os"
|
2020-08-24 06:48:02 +08:00
|
|
|
"sync"
|
2019-05-03 15:24:35 +08:00
|
|
|
"time"
|
|
|
|
|
2020-08-07 01:04:17 +08:00
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
|
|
|
|
2018-05-23 18:08:46 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-05-28 02:52:26 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-05-23 18:08:46 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type FileHandle struct {
|
|
|
|
// cache file has been written to
|
2020-08-16 00:32:47 +08:00
|
|
|
dirtyPages *ContinuousDirtyPages
|
|
|
|
contentType string
|
|
|
|
handle uint64
|
2020-08-24 06:48:02 +08:00
|
|
|
sync.RWMutex
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2018-05-25 15:57:25 +08:00
|
|
|
f *File
|
|
|
|
RequestId fuse.RequestID // unique ID for request
|
|
|
|
NodeId fuse.NodeID // file or directory the request is about
|
|
|
|
Uid uint32 // user ID of process making request
|
|
|
|
Gid uint32 // group ID of process making request
|
2020-03-27 19:50:51 +08:00
|
|
|
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|
|
|
|
|
2018-06-06 17:09:57 +08:00
|
|
|
func newFileHandle(file *File, uid, gid uint32) *FileHandle {
|
2020-04-09 03:50:59 +08:00
|
|
|
fh := &FileHandle{
|
2018-06-06 17:09:57 +08:00
|
|
|
f: file,
|
|
|
|
dirtyPages: newDirtyPages(file),
|
|
|
|
Uid: uid,
|
|
|
|
Gid: gid,
|
|
|
|
}
|
2020-04-09 03:50:59 +08:00
|
|
|
if fh.f.entry != nil {
|
2020-08-16 00:32:47 +08:00
|
|
|
fh.f.entry.Attributes.FileSize = filer2.FileSize(fh.f.entry)
|
2020-04-09 03:50:59 +08:00
|
|
|
}
|
2020-08-24 06:48:02 +08:00
|
|
|
|
2020-04-09 03:50:59 +08:00
|
|
|
return fh
|
2018-06-06 17:09:57 +08:00
|
|
|
}
|
|
|
|
|
2018-05-23 18:08:46 +08:00
|
|
|
var _ = fs.Handle(&FileHandle{})
|
2018-05-28 02:52:26 +08:00
|
|
|
|
2018-05-24 16:22:37 +08:00
|
|
|
// var _ = fs.HandleReadAller(&FileHandle{})
|
|
|
|
var _ = fs.HandleReader(&FileHandle{})
|
2018-05-23 18:08:46 +08:00
|
|
|
var _ = fs.HandleFlusher(&FileHandle{})
|
|
|
|
var _ = fs.HandleWriter(&FileHandle{})
|
|
|
|
var _ = fs.HandleReleaser(&FileHandle{})
|
|
|
|
|
2018-05-24 16:22:37 +08:00
|
|
|
func (fh *FileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error {
|
2018-05-23 18:08:46 +08:00
|
|
|
|
2020-08-19 03:52:54 +08:00
|
|
|
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))
|
2020-08-24 06:48:02 +08:00
|
|
|
fh.RLock()
|
|
|
|
defer fh.RUnlock()
|
|
|
|
|
|
|
|
if req.Size <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2018-05-23 18:08:46 +08:00
|
|
|
|
2020-08-17 07:24:40 +08:00
|
|
|
buff := resp.Data[:cap(resp.Data)]
|
|
|
|
if req.Size > cap(resp.Data) {
|
|
|
|
// should not happen
|
|
|
|
buff = make([]byte, req.Size)
|
|
|
|
}
|
2020-01-23 05:42:03 +08:00
|
|
|
|
2020-02-26 14:23:59 +08:00
|
|
|
totalRead, err := fh.readFromChunks(buff, req.Offset)
|
2020-01-23 05:42:03 +08:00
|
|
|
if err == nil {
|
2020-08-17 14:47:34 +08:00
|
|
|
maxStop := fh.readFromDirtyPages(buff, req.Offset)
|
2020-08-24 06:48:02 +08:00
|
|
|
totalRead = max(maxStop-req.Offset, totalRead)
|
2020-01-23 05:42:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2020-08-31 12:01:44 +08:00
|
|
|
glog.Warningf("file handle read %s %d: %v", fh.f.fullpath(), totalRead, err)
|
2020-08-31 12:00:09 +08:00
|
|
|
return nil
|
2020-01-23 05:42:03 +08:00
|
|
|
}
|
|
|
|
|
2020-08-18 07:04:56 +08:00
|
|
|
if totalRead > int64(len(buff)) {
|
|
|
|
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)
|
|
|
|
totalRead = min(int64(len(buff)), totalRead)
|
|
|
|
}
|
2020-08-24 06:48:02 +08:00
|
|
|
// resp.Data = buff[:totalRead]
|
|
|
|
resp.Data = buff
|
2020-08-17 14:49:10 +08:00
|
|
|
|
2020-01-23 05:42:03 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-17 14:47:34 +08:00
|
|
|
func (fh *FileHandle) readFromDirtyPages(buff []byte, startOffset int64) (maxStop int64) {
|
2020-08-24 06:48:02 +08:00
|
|
|
maxStop = fh.dirtyPages.ReadDirtyDataAt(buff, startOffset)
|
|
|
|
return
|
2020-01-23 05:42:03 +08:00
|
|
|
}
|
|
|
|
|
2020-02-26 14:23:59 +08:00
|
|
|
func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
|
2020-01-23 05:42:03 +08:00
|
|
|
|
2020-08-16 15:49:08 +08:00
|
|
|
fileSize := int64(filer2.FileSize(fh.f.entry))
|
|
|
|
|
|
|
|
if fileSize == 0 {
|
2020-01-25 23:34:09 +08:00
|
|
|
glog.V(1).Infof("empty fh %v", fh.f.fullpath())
|
2020-08-16 15:49:08 +08:00
|
|
|
return 0, io.EOF
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|
|
|
|
|
2020-07-20 08:59:43 +08:00
|
|
|
var chunkResolveErr error
|
2018-12-30 16:51:44 +08:00
|
|
|
if fh.f.entryViewCache == nil {
|
2020-07-20 08:59:43 +08:00
|
|
|
fh.f.entryViewCache, chunkResolveErr = filer2.NonOverlappingVisibleIntervals(filer2.LookupFn(fh.f.wfs), fh.f.entry.Chunks)
|
|
|
|
if chunkResolveErr != nil {
|
|
|
|
return 0, fmt.Errorf("fail to resolve chunk manifest: %v", chunkResolveErr)
|
|
|
|
}
|
2020-03-22 16:00:36 +08:00
|
|
|
fh.f.reader = nil
|
|
|
|
}
|
2020-03-27 19:50:51 +08:00
|
|
|
|
2020-03-22 16:00:36 +08:00
|
|
|
if fh.f.reader == nil {
|
2020-08-18 07:04:56 +08:00
|
|
|
chunkViews := filer2.ViewFromVisibleIntervals(fh.f.entryViewCache, 0, math.MaxInt64)
|
2020-08-16 15:49:08 +08:00
|
|
|
fh.f.reader = filer2.NewChunkReaderAtFromClient(fh.f.wfs, chunkViews, fh.f.wfs.chunkCache, fileSize)
|
2018-12-30 16:51:44 +08:00
|
|
|
}
|
|
|
|
|
2020-03-27 19:50:51 +08:00
|
|
|
totalRead, err := fh.f.reader.ReadAt(buff, offset)
|
2018-05-24 16:22:37 +08:00
|
|
|
|
2020-06-10 09:04:40 +08:00
|
|
|
if err == io.EOF {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
|
2019-06-21 14:45:30 +08:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
|
|
|
|
}
|
|
|
|
|
2020-08-19 03:52:54 +08:00
|
|
|
glog.V(4).Infof("file handle read %s [%d,%d] %d : %v", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead, err)
|
2020-03-22 16:00:36 +08:00
|
|
|
|
|
|
|
return int64(totalRead), err
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write to the file handle
|
|
|
|
func (fh *FileHandle) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {
|
2018-05-24 11:55:24 +08:00
|
|
|
|
2020-08-24 06:48:02 +08:00
|
|
|
fh.Lock()
|
|
|
|
defer fh.Unlock()
|
|
|
|
|
2018-05-23 18:08:46 +08:00
|
|
|
// write the request to volume servers
|
2020-04-09 13:31:19 +08:00
|
|
|
data := make([]byte, len(req.Data))
|
|
|
|
copy(data, req.Data)
|
2018-05-24 11:55:24 +08:00
|
|
|
|
2020-04-09 13:31:19 +08:00
|
|
|
fh.f.entry.Attributes.FileSize = uint64(max(req.Offset+int64(len(data)), int64(fh.f.entry.Attributes.FileSize)))
|
2020-08-19 00:09:29 +08:00
|
|
|
glog.V(4).Infof("%v write [%d,%d) %d", fh.f.fullpath(), req.Offset, req.Offset+int64(len(req.Data)), len(req.Data))
|
2020-01-24 13:59:58 +08:00
|
|
|
|
2020-04-09 13:31:19 +08:00
|
|
|
chunks, err := fh.dirtyPages.AddPage(req.Offset, data)
|
2018-05-23 18:08:46 +08:00
|
|
|
if err != nil {
|
2020-04-09 13:31:19 +08:00
|
|
|
glog.Errorf("%v write fh %d: [%d,%d): %v", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(len(data)), err)
|
2020-01-24 17:41:31 +08:00
|
|
|
return fuse.EIO
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|
|
|
|
|
2020-04-09 13:31:19 +08:00
|
|
|
resp.Size = len(data)
|
2018-05-23 18:08:46 +08:00
|
|
|
|
2018-05-31 11:24:57 +08:00
|
|
|
if req.Offset == 0 {
|
2019-03-28 05:25:18 +08:00
|
|
|
// detect mime type
|
2020-04-15 02:32:31 +08:00
|
|
|
fh.contentType = http.DetectContentType(data)
|
2020-08-16 00:32:47 +08:00
|
|
|
fh.f.dirtyMetadata = true
|
2018-05-31 11:24:57 +08:00
|
|
|
}
|
|
|
|
|
2019-01-06 07:16:39 +08:00
|
|
|
if len(chunks) > 0 {
|
2019-12-15 03:04:20 +08:00
|
|
|
|
|
|
|
fh.f.addChunks(chunks)
|
|
|
|
|
2020-08-16 00:32:47 +08:00
|
|
|
fh.f.dirtyMetadata = true
|
2018-05-29 03:30:17 +08:00
|
|
|
}
|
2018-05-23 18:08:46 +08:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) error {
|
|
|
|
|
2020-08-16 10:55:28 +08:00
|
|
|
glog.V(4).Infof("Release %v fh %d", fh.f.fullpath(), fh.handle)
|
2018-06-06 17:09:57 +08:00
|
|
|
|
2020-08-24 06:48:02 +08:00
|
|
|
fh.Lock()
|
|
|
|
defer fh.Unlock()
|
|
|
|
|
2020-01-23 05:42:03 +08:00
|
|
|
fh.f.isOpen--
|
2018-12-28 19:27:48 +08:00
|
|
|
|
2020-08-24 06:48:02 +08:00
|
|
|
if fh.f.isOpen < 0 {
|
|
|
|
glog.V(0).Infof("Release reset %s open count %d => %d", fh.f.Name, fh.f.isOpen, 0)
|
|
|
|
fh.f.isOpen = 0
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if fh.f.isOpen == 0 {
|
2020-08-19 16:27:10 +08:00
|
|
|
fh.doFlush(ctx, req.Header)
|
2020-01-23 05:42:03 +08:00
|
|
|
fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
|
|
|
|
}
|
2018-05-25 16:27:21 +08:00
|
|
|
|
2018-05-23 18:08:46 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
|
2020-08-24 06:48:02 +08:00
|
|
|
|
|
|
|
fh.Lock()
|
|
|
|
defer fh.Unlock()
|
|
|
|
|
2020-08-19 16:27:10 +08:00
|
|
|
return fh.doFlush(ctx, req.Header)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fh *FileHandle) doFlush(ctx context.Context, header fuse.Header) error {
|
2018-05-23 18:08:46 +08:00
|
|
|
// fflush works at fh level
|
|
|
|
// send the data to the OS
|
2020-08-30 02:56:22 +08:00
|
|
|
glog.V(4).Infof("doFlush %s fh %d", fh.f.fullpath(), fh.handle)
|
2018-05-23 18:08:46 +08:00
|
|
|
|
2020-08-24 06:48:02 +08:00
|
|
|
chunks, err := fh.dirtyPages.saveExistingPagesToStorage()
|
2018-05-29 03:30:17 +08:00
|
|
|
if err != nil {
|
2020-01-25 23:34:09 +08:00
|
|
|
glog.Errorf("flush %s: %v", fh.f.fullpath(), err)
|
2020-01-24 17:41:31 +08:00
|
|
|
return fuse.EIO
|
2018-05-29 03:30:17 +08:00
|
|
|
}
|
2019-01-06 07:16:39 +08:00
|
|
|
|
2020-01-23 15:00:04 +08:00
|
|
|
if len(chunks) > 0 {
|
2020-08-24 06:48:02 +08:00
|
|
|
|
2020-03-27 19:50:51 +08:00
|
|
|
fh.f.addChunks(chunks)
|
2020-08-16 00:32:47 +08:00
|
|
|
fh.f.dirtyMetadata = true
|
2020-01-23 15:00:04 +08:00
|
|
|
}
|
2018-05-29 03:30:17 +08:00
|
|
|
|
2020-08-16 00:32:47 +08:00
|
|
|
if !fh.f.dirtyMetadata {
|
2018-05-23 18:08:46 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-26 13:50:12 +08:00
|
|
|
err = fh.f.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2018-05-23 18:08:46 +08:00
|
|
|
|
2018-09-22 15:11:46 +08:00
|
|
|
if fh.f.entry.Attributes != nil {
|
|
|
|
fh.f.entry.Attributes.Mime = fh.contentType
|
2020-07-25 01:13:45 +08:00
|
|
|
if fh.f.entry.Attributes.Uid == 0 {
|
2020-08-19 16:27:10 +08:00
|
|
|
fh.f.entry.Attributes.Uid = header.Uid
|
2020-07-25 01:06:43 +08:00
|
|
|
}
|
2020-07-25 01:13:45 +08:00
|
|
|
if fh.f.entry.Attributes.Gid == 0 {
|
2020-08-19 16:27:10 +08:00
|
|
|
fh.f.entry.Attributes.Gid = header.Gid
|
2020-07-25 01:06:43 +08:00
|
|
|
}
|
2020-07-25 01:13:45 +08:00
|
|
|
if fh.f.entry.Attributes.Crtime == 0 {
|
|
|
|
fh.f.entry.Attributes.Crtime = time.Now().Unix()
|
|
|
|
}
|
2018-12-17 15:20:08 +08:00
|
|
|
fh.f.entry.Attributes.Mtime = time.Now().Unix()
|
2020-06-25 14:26:54 +08:00
|
|
|
fh.f.entry.Attributes.FileMode = uint32(os.FileMode(fh.f.entry.Attributes.FileMode) &^ fh.f.wfs.option.Umask)
|
2020-02-25 14:28:45 +08:00
|
|
|
fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
|
|
|
|
fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
|
2018-07-06 14:16:34 +08:00
|
|
|
}
|
|
|
|
|
2018-09-22 15:11:46 +08:00
|
|
|
request := &filer_pb.CreateEntryRequest{
|
2020-08-29 14:48:48 +08:00
|
|
|
Directory: fh.f.dir.FullPath(),
|
|
|
|
Entry: fh.f.entry,
|
|
|
|
Signatures: []int32{fh.f.wfs.signature},
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|
|
|
|
|
2020-08-14 15:22:21 +08:00
|
|
|
glog.V(4).Infof("%s set chunks: %v", fh.f.fullpath(), len(fh.f.entry.Chunks))
|
2019-06-22 03:14:40 +08:00
|
|
|
for i, chunk := range fh.f.entry.Chunks {
|
2020-08-16 10:55:28 +08:00
|
|
|
glog.V(4).Infof("%s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.GetFileIdString(), chunk.Offset, chunk.Offset+int64(chunk.Size))
|
2019-06-22 03:14:40 +08:00
|
|
|
}
|
2019-01-01 18:33:57 +08:00
|
|
|
|
2020-08-24 08:15:12 +08:00
|
|
|
manifestChunks, nonManifestChunks := filer2.SeparateManifestChunks(fh.f.entry.Chunks)
|
2020-08-24 07:59:01 +08:00
|
|
|
|
|
|
|
chunks, _ := filer2.CompactFileChunks(filer2.LookupFn(fh.f.wfs), nonManifestChunks)
|
2020-07-20 08:59:43 +08:00
|
|
|
chunks, manifestErr := filer2.MaybeManifestize(fh.f.wfs.saveDataAsChunk(fh.f.dir.FullPath()), chunks)
|
|
|
|
if manifestErr != nil {
|
|
|
|
// not good, but should be ok
|
|
|
|
glog.V(0).Infof("MaybeManifestize: %v", manifestErr)
|
|
|
|
}
|
2020-08-24 08:15:12 +08:00
|
|
|
fh.f.entry.Chunks = append(chunks, manifestChunks...)
|
2020-08-24 06:48:02 +08:00
|
|
|
fh.f.entryViewCache = nil
|
2020-08-07 01:04:17 +08:00
|
|
|
|
2020-02-26 13:50:12 +08:00
|
|
|
if err := filer_pb.CreateEntry(client, request); err != nil {
|
|
|
|
glog.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
|
|
|
|
return fmt.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|
|
|
|
|
2020-06-29 01:18:32 +08:00
|
|
|
fh.f.wfs.metaCache.InsertEntry(context.Background(), filer2.FromPbEntry(request.Directory, request.Entry))
|
2020-04-23 06:40:47 +08:00
|
|
|
|
2018-05-23 18:08:46 +08:00
|
|
|
return nil
|
|
|
|
})
|
2020-01-23 05:42:03 +08:00
|
|
|
|
|
|
|
if err == nil {
|
2020-08-16 00:32:47 +08:00
|
|
|
fh.f.dirtyMetadata = false
|
2020-01-23 05:42:03 +08:00
|
|
|
}
|
|
|
|
|
2020-01-24 17:41:31 +08:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("%v fh %d flush: %v", fh.f.fullpath(), fh.handle, err)
|
|
|
|
return fuse.EIO
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2018-05-23 18:08:46 +08:00
|
|
|
}
|