weedfs_file_copy_range.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package mount
  2. import (
  3. "net/http"
  4. "time"
  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.Lock()
  42. defer fhOut.Unlock()
  43. if fhOut.entry == nil {
  44. return 0, fuse.ENOENT
  45. }
  46. if fhIn.fh != fhOut.fh {
  47. fhIn.RLock()
  48. defer fhIn.RUnlock()
  49. }
  50. // directories are not supported
  51. if fhIn.entry.IsDirectory || fhOut.entry.IsDirectory {
  52. return 0, fuse.EISDIR
  53. }
  54. glog.V(4).Infof(
  55. "CopyFileRange %s fhIn %d -> %s fhOut %d, [%d,%d) -> [%d,%d)",
  56. fhIn.FullPath(), fhIn.fh,
  57. fhOut.FullPath(), fhOut.fh,
  58. in.OffIn, in.OffIn+in.Len,
  59. in.OffOut, in.OffOut+in.Len,
  60. )
  61. data := make([]byte, in.Len)
  62. totalRead, err := readDataByFileHandle(data, fhIn, int64(in.OffIn))
  63. if err != nil {
  64. glog.Warningf("file handle read %s %d: %v", fhIn.FullPath(), totalRead, err)
  65. return 0, fuse.EIO
  66. }
  67. data = data[:totalRead]
  68. if totalRead == 0 {
  69. return 0, fuse.OK
  70. }
  71. // put data at the specified offset in target file
  72. fhOut.dirtyPages.writerPattern.MonitorWriteAt(int64(in.OffOut), int(in.Len))
  73. fhOut.entry.Content = nil
  74. fhOut.dirtyPages.AddPage(int64(in.OffOut), data, fhOut.dirtyPages.writerPattern.IsSequentialMode(), time.Now().UnixNano())
  75. fhOut.entry.Attributes.FileSize = uint64(max(int64(in.OffOut)+totalRead, int64(fhOut.entry.Attributes.FileSize)))
  76. fhOut.dirtyMetadata = true
  77. written = uint32(totalRead)
  78. // detect mime type
  79. if written > 0 && in.OffOut <= 512 {
  80. fhOut.contentType = http.DetectContentType(data)
  81. }
  82. return written, fuse.OK
  83. }