acb73ca436
The fmt.Printfs output would end up in the paniclog.
72 lines
1.9 KiB
Go
72 lines
1.9 KiB
Go
package fusefrontend_reverse
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/hanwen/go-fuse/fuse"
|
|
"github.com/hanwen/go-fuse/fuse/nodefs"
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
|
)
|
|
|
|
func (rfs *ReverseFS) newDirIVFile(cRelPath string) (nodefs.File, fuse.Status) {
|
|
cDir := saneDir(cRelPath)
|
|
absDir, err := rfs.abs(rfs.decryptPath(cDir))
|
|
if err != nil {
|
|
return nil, fuse.ToStatus(err)
|
|
}
|
|
return rfs.newVirtualFile(derivePathIV(cDir, ivPurposeDirIV), absDir)
|
|
}
|
|
|
|
type virtualFile struct {
|
|
// Embed nodefs.defaultFile for a ENOSYS implementation of all methods
|
|
nodefs.File
|
|
// file content
|
|
content []byte
|
|
// absolute path to a parent file
|
|
parentFile string
|
|
// inode number
|
|
ino uint64
|
|
}
|
|
|
|
// newVirtualFile creates a new in-memory file that does not have a representation
|
|
// on disk. "content" is the file content. Timestamps and file owner are copied
|
|
// from "parentFile" (absolute plaintext path). For a "gocryptfs.diriv" file, you
|
|
// would use the parent directory as "parentFile".
|
|
func (rfs *ReverseFS) newVirtualFile(content []byte, parentFile string) (nodefs.File, fuse.Status) {
|
|
return &virtualFile{
|
|
File: nodefs.NewDefaultFile(),
|
|
content: content,
|
|
parentFile: parentFile,
|
|
ino: rfs.inoGen.next(),
|
|
}, fuse.OK
|
|
}
|
|
|
|
// Read - FUSE call
|
|
func (f *virtualFile) Read(buf []byte, off int64) (resultData fuse.ReadResult, status fuse.Status) {
|
|
if off >= int64(len(f.content)) {
|
|
return nil, fuse.OK
|
|
}
|
|
end := int(off) + len(buf)
|
|
if end > len(f.content) {
|
|
end = len(f.content)
|
|
}
|
|
return fuse.ReadResultData(f.content[off:end]), fuse.OK
|
|
}
|
|
|
|
// GetAttr - FUSE call
|
|
func (f *virtualFile) GetAttr(a *fuse.Attr) fuse.Status {
|
|
var st syscall.Stat_t
|
|
err := syscall.Lstat(f.parentFile, &st)
|
|
if err != nil {
|
|
tlog.Debug.Printf("GetAttr: Lstat %q: %v\n", f.parentFile, err)
|
|
return fuse.ToStatus(err)
|
|
}
|
|
st.Ino = f.ino
|
|
st.Size = int64(len(f.content))
|
|
st.Mode = virtualFileMode
|
|
st.Nlink = 1
|
|
a.FromStat(&st)
|
|
return fuse.OK
|
|
}
|