2016-02-06 19:27:59 +01:00
|
|
|
package fusefrontend
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2015-12-19 13:21:15 +01:00
|
|
|
// FUSE operations on file handles
|
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2015-10-04 14:36:20 +02:00
|
|
|
"io"
|
2016-05-30 09:29:30 +02:00
|
|
|
"log"
|
2015-09-08 00:54:24 +02:00
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hanwen/go-fuse/fuse"
|
|
|
|
"github.com/hanwen/go-fuse/fuse/nodefs"
|
2016-02-06 19:20:54 +01:00
|
|
|
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/contentenc"
|
2016-07-03 17:51:40 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/syscallcompat"
|
2016-06-15 23:30:44 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
2015-09-08 00:54:24 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// File - based on loopbackFile in go-fuse/fuse/nodefs/files.go
|
|
|
|
type file struct {
|
|
|
|
fd *os.File
|
2016-05-30 09:29:30 +02:00
|
|
|
// Has Release() already been called on this file? This also means that the
|
|
|
|
// wlock entry has been freed, so let's not crash trying to access it.
|
|
|
|
// Due to concurrency, Release can overtake other operations. These will
|
|
|
|
// return EBADF in that case.
|
|
|
|
released bool
|
2016-01-25 00:51:28 +01:00
|
|
|
// fdLock prevents the fd to be closed while we are in the middle of
|
|
|
|
// an operation.
|
|
|
|
// Every FUSE entrypoint should RLock(). The only user of Lock() is
|
2016-05-30 09:29:30 +02:00
|
|
|
// Release(), which closes the fd and sets "released" to true.
|
2016-01-25 00:51:28 +01:00
|
|
|
fdLock sync.RWMutex
|
2015-09-08 00:54:24 +02:00
|
|
|
// Was the file opened O_WRONLY?
|
|
|
|
writeOnly bool
|
2016-02-06 19:20:54 +01:00
|
|
|
// Content encryption helper
|
|
|
|
contentEnc *contentenc.ContentEnc
|
2015-10-03 13:36:49 +02:00
|
|
|
// Inode number
|
|
|
|
ino uint64
|
2015-11-01 01:32:33 +01:00
|
|
|
// File header
|
2016-02-06 19:20:54 +01:00
|
|
|
header *contentenc.FileHeader
|
2016-09-25 16:30:29 +02:00
|
|
|
// go-fuse nodefs.loopbackFile
|
|
|
|
loopbackFile nodefs.File
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
2016-10-02 06:14:18 +02:00
|
|
|
// NewFile returns a new go-fuse File instance.
|
2016-05-29 22:41:46 +02:00
|
|
|
func NewFile(fd *os.File, writeOnly bool, contentEnc *contentenc.ContentEnc) (nodefs.File, fuse.Status) {
|
2015-10-03 13:36:49 +02:00
|
|
|
var st syscall.Stat_t
|
2016-05-29 22:41:46 +02:00
|
|
|
err := syscall.Fstat(int(fd.Fd()), &st)
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("NewFile: Fstat on fd %d failed: %v\n", fd.Fd(), err)
|
2016-05-29 22:41:46 +02:00
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
2016-01-24 13:08:08 +01:00
|
|
|
wlock.register(st.Ino)
|
2015-10-03 13:36:49 +02:00
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
return &file{
|
2016-09-25 16:30:29 +02:00
|
|
|
fd: fd,
|
|
|
|
writeOnly: writeOnly,
|
|
|
|
contentEnc: contentEnc,
|
|
|
|
ino: st.Ino,
|
|
|
|
loopbackFile: nodefs.NewLoopbackFile(fd),
|
2016-05-29 22:41:46 +02:00
|
|
|
}, fuse.OK
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
2016-01-25 00:51:28 +01:00
|
|
|
// intFd - return the backing file descriptor as an integer. Used for debug
|
|
|
|
// messages.
|
|
|
|
func (f *file) intFd() int {
|
|
|
|
return int(f.fd.Fd())
|
|
|
|
}
|
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
func (f *file) InnerFile() nodefs.File {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *file) SetInode(n *nodefs.Inode) {
|
|
|
|
}
|
|
|
|
|
2015-11-01 01:32:33 +01:00
|
|
|
// readHeader - load the file header from disk
|
|
|
|
//
|
|
|
|
// Returns io.EOF if the file is empty
|
|
|
|
func (f *file) readHeader() error {
|
2016-10-02 06:14:18 +02:00
|
|
|
buf := make([]byte, contentenc.HeaderLen)
|
2015-11-01 01:32:33 +01:00
|
|
|
_, err := f.fd.ReadAt(buf, 0)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-02-06 19:20:54 +01:00
|
|
|
h, err := contentenc.ParseHeader(buf)
|
2015-11-01 01:32:33 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
f.header = h
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// createHeader - create a new random header and write it to disk
|
|
|
|
func (f *file) createHeader() error {
|
2016-02-06 19:20:54 +01:00
|
|
|
h := contentenc.RandomHeader()
|
2015-11-01 01:32:33 +01:00
|
|
|
buf := h.Pack()
|
2015-12-06 15:05:52 +01:00
|
|
|
|
|
|
|
// Prevent partially written (=corrupt) header by preallocating the space beforehand
|
2016-10-02 06:14:18 +02:00
|
|
|
err := syscallcompat.EnospcPrealloc(int(f.fd.Fd()), 0, contentenc.HeaderLen)
|
2015-12-06 15:05:52 +01:00
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d: createHeader: prealloc failed: %s\n", f.ino, err.Error())
|
2015-12-08 13:51:06 +01:00
|
|
|
return err
|
2015-12-06 15:05:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Actually write header
|
|
|
|
_, err = f.fd.WriteAt(buf, 0)
|
2015-11-01 01:32:33 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
f.header = h
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
func (f *file) String() string {
|
|
|
|
return fmt.Sprintf("cryptFile(%s)", f.fd.Name())
|
|
|
|
}
|
|
|
|
|
2015-10-03 13:36:49 +02:00
|
|
|
// doRead - returns "length" plaintext bytes from plaintext offset "off".
|
2015-11-01 01:32:33 +01:00
|
|
|
// Arguments "length" and "off" do not have to be block-aligned.
|
2015-09-30 22:36:53 +02:00
|
|
|
//
|
2015-11-01 01:32:33 +01:00
|
|
|
// doRead reads the corresponding ciphertext blocks from disk, decrypts them and
|
2015-10-03 13:36:49 +02:00
|
|
|
// returns the requested part of the plaintext.
|
|
|
|
//
|
2015-11-01 01:32:33 +01:00
|
|
|
// Called by Read() for normal reading,
|
|
|
|
// by Write() and Truncate() for Read-Modify-Write
|
2015-09-08 21:35:06 +02:00
|
|
|
func (f *file) doRead(off uint64, length uint64) ([]byte, fuse.Status) {
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2015-11-01 01:32:33 +01:00
|
|
|
// Read file header
|
|
|
|
if f.header == nil {
|
|
|
|
err := f.readHeader()
|
|
|
|
if err == io.EOF {
|
|
|
|
return nil, fuse.OK
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
// Read the backing ciphertext in one go
|
2016-02-06 19:20:54 +01:00
|
|
|
blocks := f.contentEnc.ExplodePlainRange(off, length)
|
2015-11-01 12:11:36 +01:00
|
|
|
alignedOffset, alignedLength := blocks[0].JointCiphertextRange(blocks)
|
|
|
|
skip := blocks[0].Skip
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("JointCiphertextRange(%d, %d) -> %d, %d, %d", off, length, alignedOffset, alignedLength, skip)
|
2015-09-08 00:54:24 +02:00
|
|
|
ciphertext := make([]byte, int(alignedLength))
|
2015-09-08 21:35:06 +02:00
|
|
|
n, err := f.fd.ReadAt(ciphertext, int64(alignedOffset))
|
2015-09-08 00:54:24 +02:00
|
|
|
if err != nil && err != io.EOF {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("read: ReadAt: %s", err.Error())
|
2015-09-08 00:54:24 +02:00
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
2015-10-03 13:36:49 +02:00
|
|
|
// Truncate ciphertext buffer down to actually read bytes
|
|
|
|
ciphertext = ciphertext[0:n]
|
2015-10-06 22:27:37 +02:00
|
|
|
|
2015-11-01 12:11:36 +01:00
|
|
|
firstBlockNo := blocks[0].BlockNo
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("ReadAt offset=%d bytes (%d blocks), want=%d, got=%d", alignedOffset, firstBlockNo, alignedLength, n)
|
2015-09-08 00:54:24 +02:00
|
|
|
|
|
|
|
// Decrypt it
|
2016-10-02 06:14:18 +02:00
|
|
|
plaintext, err := f.contentEnc.DecryptBlocks(ciphertext, firstBlockNo, f.header.ID)
|
2015-09-08 00:54:24 +02:00
|
|
|
if err != nil {
|
2016-02-06 19:20:54 +01:00
|
|
|
curruptBlockNo := firstBlockNo + f.contentEnc.PlainOffToBlockNo(uint64(len(plaintext)))
|
|
|
|
cipherOff := f.contentEnc.BlockNoToCipherOff(curruptBlockNo)
|
|
|
|
plainOff := f.contentEnc.BlockNoToPlainOff(curruptBlockNo)
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d: doRead: corrupt block #%d (plainOff=%d, cipherOff=%d)",
|
2015-11-01 12:11:36 +01:00
|
|
|
f.ino, curruptBlockNo, plainOff, cipherOff)
|
2015-09-08 00:54:24 +02:00
|
|
|
return nil, fuse.EIO
|
|
|
|
}
|
|
|
|
|
|
|
|
// Crop down to the relevant part
|
|
|
|
var out []byte
|
|
|
|
lenHave := len(plaintext)
|
2015-11-01 12:11:36 +01:00
|
|
|
lenWant := int(skip + length)
|
2015-09-08 00:54:24 +02:00
|
|
|
if lenHave > lenWant {
|
2015-11-01 12:11:36 +01:00
|
|
|
out = plaintext[skip:lenWant]
|
|
|
|
} else if lenHave > int(skip) {
|
2015-09-08 00:54:24 +02:00
|
|
|
out = plaintext[skip:lenHave]
|
2015-09-08 21:35:06 +02:00
|
|
|
}
|
2015-11-01 01:32:33 +01:00
|
|
|
// else: out stays empty, file was smaller than the requested offset
|
2015-09-08 21:35:06 +02:00
|
|
|
|
|
|
|
return out, fuse.OK
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read - FUSE call
|
|
|
|
func (f *file) Read(buf []byte, off int64) (resultData fuse.ReadResult, code fuse.Status) {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2015-11-01 01:32:33 +01:00
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("ino%d: FUSE Read: offset=%d length=%d", f.ino, len(buf), off)
|
2015-09-08 21:35:06 +02:00
|
|
|
|
|
|
|
if f.writeOnly {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d: Tried to read from write-only file", f.ino)
|
2015-09-08 21:35:06 +02:00
|
|
|
return nil, fuse.EBADF
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
2015-09-08 21:35:06 +02:00
|
|
|
out, status := f.doRead(uint64(off), uint64(len(buf)))
|
2015-09-30 20:32:24 +02:00
|
|
|
|
|
|
|
if status == fuse.EIO {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d: Read failed with EIO, offset=%d, length=%d", f.ino, len(buf), off)
|
2015-09-30 20:32:24 +02:00
|
|
|
}
|
2015-09-08 21:35:06 +02:00
|
|
|
if status != fuse.OK {
|
|
|
|
return nil, status
|
|
|
|
}
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("ino%d: Read: status %v, returning %d bytes", f.ino, status, len(out))
|
2015-09-08 21:35:06 +02:00
|
|
|
return fuse.ReadResultData(out), status
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
2015-11-01 01:32:33 +01:00
|
|
|
// doWrite - encrypt "data" and write it to plaintext offset "off"
|
|
|
|
//
|
|
|
|
// Arguments do not have to be block-aligned, read-modify-write is
|
2016-10-24 19:18:13 +02:00
|
|
|
// performed internally as necessary
|
2015-11-01 01:32:33 +01:00
|
|
|
//
|
|
|
|
// Called by Write() for normal writing,
|
|
|
|
// and by Truncate() to rewrite the last file block.
|
2016-07-01 23:29:31 +02:00
|
|
|
//
|
|
|
|
// Empty writes do nothing and are allowed.
|
2015-10-04 11:39:35 +02:00
|
|
|
func (f *file) doWrite(data []byte, off int64) (uint32, fuse.Status) {
|
2015-11-01 01:32:33 +01:00
|
|
|
|
|
|
|
// Read header from disk, create a new one if the file is empty
|
|
|
|
if f.header == nil {
|
|
|
|
err := f.readHeader()
|
|
|
|
if err == io.EOF {
|
|
|
|
err = f.createHeader()
|
|
|
|
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return 0, fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
var written uint32
|
2015-09-30 22:36:53 +02:00
|
|
|
status := fuse.OK
|
2015-09-08 00:54:24 +02:00
|
|
|
dataBuf := bytes.NewBuffer(data)
|
2016-02-06 19:20:54 +01:00
|
|
|
blocks := f.contentEnc.ExplodePlainRange(uint64(off), uint64(len(data)))
|
2015-10-04 14:36:20 +02:00
|
|
|
for _, b := range blocks {
|
2015-09-08 00:54:24 +02:00
|
|
|
|
|
|
|
blockData := dataBuf.Next(int(b.Length))
|
|
|
|
|
|
|
|
// Incomplete block -> Read-Modify-Write
|
|
|
|
if b.IsPartial() {
|
|
|
|
// Read
|
2016-07-02 00:12:36 +02:00
|
|
|
o := b.BlockPlainOff()
|
2016-04-10 21:29:42 +02:00
|
|
|
var oldData []byte
|
|
|
|
oldData, status = f.doRead(o, f.contentEnc.PlainBS())
|
2015-09-08 00:54:24 +02:00
|
|
|
if status != fuse.OK {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d fh%d: RMW read failed: %s", f.ino, f.intFd(), status.String())
|
2015-09-08 00:54:24 +02:00
|
|
|
return written, status
|
|
|
|
}
|
|
|
|
// Modify
|
2016-02-06 19:20:54 +01:00
|
|
|
blockData = f.contentEnc.MergeBlocks(oldData, blockData, int(b.Skip))
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("len(oldData)=%d len(blockData)=%d", len(oldData), len(blockData))
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
2015-09-09 19:32:59 +02:00
|
|
|
|
2016-01-24 13:08:08 +01:00
|
|
|
// Encrypt
|
2016-07-02 00:12:36 +02:00
|
|
|
blockOffset := b.BlockCipherOff()
|
2016-10-02 06:14:18 +02:00
|
|
|
blockData = f.contentEnc.EncryptBlock(blockData, b.BlockNo, f.header.ID)
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("ino%d: Writing %d bytes to block #%d",
|
2016-02-06 19:20:54 +01:00
|
|
|
f.ino, uint64(len(blockData))-f.contentEnc.BlockOverhead(), b.BlockNo)
|
2015-11-08 22:36:29 +01:00
|
|
|
|
|
|
|
// Prevent partially written (=corrupt) blocks by preallocating the space beforehand
|
2016-07-03 19:14:12 +02:00
|
|
|
err := syscallcompat.EnospcPrealloc(int(f.fd.Fd()), int64(blockOffset), int64(len(blockData)))
|
2015-11-08 22:36:29 +01:00
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d fh%d: doWrite: prealloc failed: %s", f.ino, f.intFd(), err.Error())
|
2015-11-08 22:36:29 +01:00
|
|
|
status = fuse.ToStatus(err)
|
|
|
|
break
|
|
|
|
}
|
2015-12-13 20:10:52 +01:00
|
|
|
|
|
|
|
// Write
|
2015-11-08 22:36:29 +01:00
|
|
|
_, err = f.fd.WriteAt(blockData, int64(blockOffset))
|
2016-01-24 13:08:08 +01:00
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("doWrite: Write failed: %s", err.Error())
|
2015-09-08 00:54:24 +02:00
|
|
|
status = fuse.ToStatus(err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
written += uint32(b.Length)
|
|
|
|
}
|
|
|
|
return written, status
|
|
|
|
}
|
|
|
|
|
2015-10-04 11:39:35 +02:00
|
|
|
// Write - FUSE call
|
2016-07-01 23:29:31 +02:00
|
|
|
//
|
|
|
|
// If the write creates a hole, pads the file to the next block boundary.
|
2015-10-04 11:39:35 +02:00
|
|
|
func (f *file) Write(data []byte, off int64) (uint32, fuse.Status) {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2016-05-30 09:29:30 +02:00
|
|
|
if f.released {
|
2016-06-08 22:39:35 +02:00
|
|
|
// The file descriptor has been closed concurrently, which also means
|
|
|
|
// the wlock has been freed. Exit here so we don't crash trying to access
|
|
|
|
// it.
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("ino%d fh%d: Write on released file", f.ino, f.intFd())
|
2016-05-08 23:16:40 +02:00
|
|
|
return 0, fuse.EBADF
|
|
|
|
}
|
2016-01-24 13:08:08 +01:00
|
|
|
wlock.lock(f.ino)
|
|
|
|
defer wlock.unlock(f.ino)
|
2015-10-04 14:21:07 +02:00
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("ino%d: FUSE Write: offset=%d length=%d", f.ino, off, len(data))
|
2016-01-25 00:51:28 +01:00
|
|
|
|
2015-10-04 14:21:07 +02:00
|
|
|
fi, err := f.fd.Stat()
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("Write: Fstat failed: %v", err)
|
2015-10-04 14:21:07 +02:00
|
|
|
return 0, fuse.ToStatus(err)
|
|
|
|
}
|
2016-02-06 19:20:54 +01:00
|
|
|
plainSize := f.contentEnc.CipherSizeToPlainSize(uint64(fi.Size()))
|
2016-10-25 21:19:37 +02:00
|
|
|
if f.createsCiphertextHole(plainSize, off) {
|
2015-10-04 14:21:07 +02:00
|
|
|
status := f.zeroPad(plainSize)
|
|
|
|
if status != fuse.OK {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("zeroPad returned error %v", status)
|
2015-10-04 14:21:07 +02:00
|
|
|
return 0, status
|
|
|
|
}
|
|
|
|
}
|
2015-10-04 11:39:35 +02:00
|
|
|
return f.doWrite(data, off)
|
|
|
|
}
|
|
|
|
|
2016-01-25 00:51:28 +01:00
|
|
|
// Release - FUSE call, close file
|
2015-09-08 00:54:24 +02:00
|
|
|
func (f *file) Release() {
|
2015-11-01 01:32:33 +01:00
|
|
|
f.fdLock.Lock()
|
2016-05-30 09:29:30 +02:00
|
|
|
if f.released {
|
|
|
|
log.Panicf("ino%d fh%d: double release", f.ino, f.intFd())
|
|
|
|
}
|
2015-09-08 00:54:24 +02:00
|
|
|
f.fd.Close()
|
2016-05-30 09:29:30 +02:00
|
|
|
f.released = true
|
2016-05-05 13:38:39 +02:00
|
|
|
f.fdLock.Unlock()
|
|
|
|
|
|
|
|
wlock.unregister(f.ino)
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Flush - FUSE call
|
|
|
|
func (f *file) Flush() fuse.Status {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2015-09-08 00:54:24 +02:00
|
|
|
|
|
|
|
// Since Flush() may be called for each dup'd fd, we don't
|
|
|
|
// want to really close the file, we just want to flush. This
|
|
|
|
// is achieved by closing a dup'd fd.
|
|
|
|
newFd, err := syscall.Dup(int(f.fd.Fd()))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
err = syscall.Close(newFd)
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *file) Fsync(flags int) (code fuse.Status) {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2016-01-25 00:51:28 +01:00
|
|
|
return fuse.ToStatus(syscall.Fsync(int(f.fd.Fd())))
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *file) Chmod(mode uint32) fuse.Status {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2016-06-26 20:13:21 +02:00
|
|
|
// os.File.Chmod goes through the "syscallMode" translation function that messes
|
|
|
|
// up the suid and sgid bits. So use syscall.Fchmod directly.
|
|
|
|
err := syscall.Fchmod(f.intFd(), mode)
|
|
|
|
return fuse.ToStatus(err)
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *file) Chown(uid uint32, gid uint32) fuse.Status {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2016-01-25 00:51:28 +01:00
|
|
|
return fuse.ToStatus(f.fd.Chown(int(uid), int(gid)))
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *file) GetAttr(a *fuse.Attr) fuse.Status {
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("file.GetAttr()")
|
2015-09-08 00:54:24 +02:00
|
|
|
st := syscall.Stat_t{}
|
|
|
|
err := syscall.Fstat(int(f.fd.Fd()), &st)
|
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
a.FromStat(&st)
|
2016-02-06 19:20:54 +01:00
|
|
|
a.Size = f.contentEnc.CipherSizeToPlainSize(a.Size)
|
2015-09-08 00:54:24 +02:00
|
|
|
|
|
|
|
return fuse.OK
|
|
|
|
}
|
|
|
|
|
2016-10-19 22:25:54 +02:00
|
|
|
// BrokenAtime means that atime support is broken.
|
2016-10-16 15:02:44 +02:00
|
|
|
// TODO drop this once https://github.com/hanwen/go-fuse/pull/131 is
|
|
|
|
// merged
|
2016-10-19 22:25:54 +02:00
|
|
|
const BrokenAtime = true
|
2016-10-16 15:02:44 +02:00
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
func (f *file) Utimens(a *time.Time, m *time.Time) fuse.Status {
|
2016-10-19 22:25:54 +02:00
|
|
|
if BrokenAtime {
|
|
|
|
if m == nil {
|
|
|
|
tlog.Warn.Printf("refusing to set the atime to prevent a crash in go-fuse")
|
|
|
|
return fuse.EINVAL
|
|
|
|
}
|
|
|
|
// Due to a bug in loopbackFile.Utimens, the "a" value will be used
|
|
|
|
// to set both mtime and atime. Because mtime is more important, we
|
|
|
|
// override "a".
|
2016-10-16 15:02:44 +02:00
|
|
|
a = m
|
|
|
|
}
|
2016-01-25 00:51:28 +01:00
|
|
|
f.fdLock.RLock()
|
|
|
|
defer f.fdLock.RUnlock()
|
2016-09-25 16:30:29 +02:00
|
|
|
return f.loopbackFile.Utimens(a, m)
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|