2016-09-22 23:28:11 +02:00
|
|
|
package fusefrontend_reverse
|
|
|
|
|
|
|
|
import (
|
2017-07-29 16:13:38 +02:00
|
|
|
"log"
|
2018-01-17 21:36:38 +01:00
|
|
|
"path/filepath"
|
2016-09-22 23:28:11 +02:00
|
|
|
"syscall"
|
|
|
|
|
2018-01-17 21:36:38 +01:00
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
|
2020-05-17 14:18:23 +02:00
|
|
|
"github.com/hanwen/go-fuse/v2/fuse"
|
|
|
|
"github.com/hanwen/go-fuse/v2/fuse/nodefs"
|
2017-04-01 15:49:53 +02:00
|
|
|
|
2020-05-03 15:22:10 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/inomap"
|
2017-08-06 23:12:27 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/nametransform"
|
2017-05-28 18:09:02 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/pathiv"
|
2018-01-17 21:36:38 +01:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/syscallcompat"
|
2017-04-01 15:49:53 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
2016-09-22 23:28:11 +02:00
|
|
|
)
|
|
|
|
|
2017-04-01 17:19:15 +02:00
|
|
|
const (
|
|
|
|
// virtualFileMode is the mode to use for virtual files (gocryptfs.diriv and
|
|
|
|
// *.name). They are always readable, as stated in func Access
|
|
|
|
virtualFileMode = syscall.S_IFREG | 0444
|
2020-05-03 15:22:10 +02:00
|
|
|
// We use inomap's `Tag` feature to generate unique inode numbers for
|
|
|
|
// virtual files. These are the tags we use.
|
|
|
|
inoTagDirIV = 1
|
|
|
|
inoTagNameFile = 2
|
2017-04-01 17:19:15 +02:00
|
|
|
)
|
|
|
|
|
2016-11-10 00:38:01 +01:00
|
|
|
func (rfs *ReverseFS) newDirIVFile(cRelPath string) (nodefs.File, fuse.Status) {
|
2017-08-06 23:12:27 +02:00
|
|
|
cDir := nametransform.Dir(cRelPath)
|
2018-01-17 21:36:38 +01:00
|
|
|
dir, err := rfs.decryptPath(cDir)
|
2016-09-28 23:30:13 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
2018-01-17 21:36:38 +01:00
|
|
|
iv := pathiv.Derive(cDir, pathiv.PurposeDirIV)
|
2020-05-03 15:22:10 +02:00
|
|
|
return rfs.newVirtualFile(iv, rfs.args.Cipherdir, dir, inoTagDirIV)
|
2016-09-28 23:30:13 +02:00
|
|
|
}
|
|
|
|
|
2016-09-22 23:28:11 +02:00
|
|
|
type virtualFile struct {
|
|
|
|
// Embed nodefs.defaultFile for a ENOSYS implementation of all methods
|
|
|
|
nodefs.File
|
2020-05-03 15:22:10 +02:00
|
|
|
// pointer to parent filesystem
|
|
|
|
rfs *ReverseFS
|
2016-09-22 23:28:11 +02:00
|
|
|
// file content
|
|
|
|
content []byte
|
2018-01-17 21:36:38 +01:00
|
|
|
// backing directory
|
|
|
|
cipherdir string
|
|
|
|
// path to a parent file (relative to cipherdir)
|
2016-09-22 23:28:11 +02:00
|
|
|
parentFile string
|
2020-05-03 15:22:10 +02:00
|
|
|
// inomap `Tag`.
|
|
|
|
// Depending on the file type, either `inoTagDirIV` or `inoTagNameFile`.
|
|
|
|
inoTag uint8
|
2016-09-22 23:28:11 +02:00
|
|
|
}
|
|
|
|
|
2017-04-01 14:17:54 +02:00
|
|
|
// 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
|
2018-01-17 21:36:38 +01:00
|
|
|
// from "parentFile" (plaintext path relative to "cipherdir").
|
|
|
|
// For a "gocryptfs.diriv" file, you would use the parent directory as
|
|
|
|
// "parentFile".
|
2020-05-03 15:22:10 +02:00
|
|
|
func (rfs *ReverseFS) newVirtualFile(content []byte, cipherdir string, parentFile string, inoTag uint8) (nodefs.File, fuse.Status) {
|
|
|
|
if inoTag == 0 {
|
|
|
|
log.Panicf("BUG: inoTag for virtual file is zero - this will cause ino collisions!")
|
2017-07-29 16:13:38 +02:00
|
|
|
}
|
2016-09-22 23:28:11 +02:00
|
|
|
return &virtualFile{
|
|
|
|
File: nodefs.NewDefaultFile(),
|
2020-05-03 15:22:10 +02:00
|
|
|
rfs: rfs,
|
2016-09-22 23:28:11 +02:00
|
|
|
content: content,
|
2018-01-17 21:36:38 +01:00
|
|
|
cipherdir: cipherdir,
|
2016-09-22 23:28:11 +02:00
|
|
|
parentFile: parentFile,
|
2020-05-03 15:22:10 +02:00
|
|
|
inoTag: inoTag,
|
2016-09-22 23:28:11 +02:00
|
|
|
}, 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 {
|
2018-01-17 21:36:38 +01:00
|
|
|
dir := filepath.Dir(f.parentFile)
|
2018-09-08 17:41:17 +02:00
|
|
|
dirfd, err := syscallcompat.OpenDirNofollow(f.cipherdir, dir)
|
2018-01-17 21:36:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
defer syscall.Close(dirfd)
|
|
|
|
name := filepath.Base(f.parentFile)
|
2020-05-03 15:22:10 +02:00
|
|
|
var st2 unix.Stat_t
|
|
|
|
err = syscallcompat.Fstatat(dirfd, name, &st2, unix.AT_SYMLINK_NOFOLLOW)
|
2016-09-22 23:28:11 +02:00
|
|
|
if err != nil {
|
2018-01-17 21:36:38 +01:00
|
|
|
tlog.Debug.Printf("GetAttr: Fstatat %q: %v\n", f.parentFile, err)
|
2016-09-22 23:28:11 +02:00
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2020-05-03 15:22:10 +02:00
|
|
|
st := syscallcompat.Unix2syscall(st2)
|
|
|
|
q := inomap.NewQIno(uint64(st.Dev), f.inoTag, uint64(st.Ino))
|
|
|
|
st.Ino = f.rfs.inoMap.Translate(q)
|
2016-09-22 23:28:11 +02:00
|
|
|
st.Size = int64(len(f.content))
|
2017-03-27 22:47:45 +02:00
|
|
|
st.Mode = virtualFileMode
|
2016-09-22 23:28:11 +02:00
|
|
|
st.Nlink = 1
|
2020-05-03 15:22:10 +02:00
|
|
|
a.FromStat(&st)
|
2016-09-22 23:28:11 +02:00
|
|
|
return fuse.OK
|
|
|
|
}
|