weedfs_file_copy_range.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package mount
  2. import (
  3. "context"
  4. "net/http"
  5. "github.com/hanwen/go-fuse/v2/fuse"
  6. "github.com/seaweedfs/seaweedfs/weed/glog"
  7. )
  8. // CopyFileRange copies data from one file to another from and to specified offsets.
  9. //
  10. // See https://man7.org/linux/man-pages/man2/copy_file_range.2.html
  11. // See https://github.com/libfuse/libfuse/commit/fe4f9428fc403fa8b99051f52d84ea5bd13f3855
  12. /**
  13. * Copy a range of data from one file to another
  14. *
  15. * Niels de Vos: • libfuse: add copy_file_range() support
  16. *
  17. * Performs an optimized copy between two file descriptors without the
  18. * additional cost of transferring data through the FUSE kernel module
  19. * to user space (glibc) and then back into the FUSE filesystem again.
  20. *
  21. * In case this method is not implemented, applications are expected to
  22. * fall back to a regular file copy. (Some glibc versions did this
  23. * emulation automatically, but the emulation has been removed from all
  24. * glibc release branches.)
  25. */
  26. func (wfs *WFS) CopyFileRange(cancel <-chan struct{}, in *fuse.CopyFileRangeIn) (written uint32, code fuse.Status) {
  27. // flags must equal 0 for this syscall as of now
  28. if in.Flags != 0 {
  29. return 0, fuse.EINVAL
  30. }
  31. // files must exist
  32. fhOut := wfs.GetHandle(FileHandleId(in.FhOut))
  33. if fhOut == nil {
  34. return 0, fuse.EBADF
  35. }
  36. fhIn := wfs.GetHandle(FileHandleId(in.FhIn))
  37. if fhIn == nil {
  38. return 0, fuse.EBADF
  39. }
  40. // lock source and target file handles
  41. fhOut.orderedMutex.Acquire(context.Background(), 1)
  42. defer fhOut.orderedMutex.Release(1)
  43. fhOut.entryLock.Lock()
  44. defer fhOut.entryLock.Unlock()
  45. if fhOut.entry == nil {
  46. return 0, fuse.ENOENT
  47. }
  48. if fhIn.fh != fhOut.fh {
  49. fhIn.orderedMutex.Acquire(context.Background(), 1)
  50. defer fhIn.orderedMutex.Release(1)
  51. fhIn.entryLock.Lock()
  52. defer fhIn.entryLock.Unlock()
  53. }
  54. // directories are not supported
  55. if fhIn.entry.IsDirectory || fhOut.entry.IsDirectory {
  56. return 0, fuse.EISDIR
  57. }
  58. glog.V(4).Infof(
  59. "CopyFileRange %s fhIn %d -> %s fhOut %d, [%d,%d) -> [%d,%d)",
  60. fhIn.FullPath(), fhIn.fh,
  61. fhOut.FullPath(), fhOut.fh,
  62. in.OffIn, in.OffIn+in.Len,
  63. in.OffOut, in.OffOut+in.Len,
  64. )
  65. data := make([]byte, in.Len)
  66. totalRead, err := readDataByFileHandle(data, fhIn, int64(in.OffIn))
  67. if err != nil {
  68. glog.Warningf("file handle read %s %d: %v", fhIn.FullPath(), totalRead, err)
  69. return 0, fuse.EIO
  70. }
  71. data = data[:totalRead]
  72. if totalRead == 0 {
  73. return 0, fuse.OK
  74. }
  75. // put data at the specified offset in target file
  76. fhOut.dirtyPages.writerPattern.MonitorWriteAt(int64(in.OffOut), int(in.Len))
  77. fhOut.entry.Content = nil
  78. fhOut.dirtyPages.AddPage(int64(in.OffOut), data, fhOut.dirtyPages.writerPattern.IsSequentialMode())
  79. fhOut.entry.Attributes.FileSize = uint64(max(int64(in.OffOut)+totalRead, int64(fhOut.entry.Attributes.FileSize)))
  80. fhOut.dirtyMetadata = true
  81. written = uint32(totalRead)
  82. // detect mime type
  83. if written > 0 && in.OffOut <= 512 {
  84. fhOut.contentType = http.DetectContentType(data)
  85. }
  86. return written, fuse.OK
  87. }