2018-03-18 17:43:38 +01:00
|
|
|
// Package fusefrontend interfaces directly with the go-fuse library.
|
|
|
|
package fusefrontend
|
|
|
|
|
|
|
|
// FUSE operations on paths
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/hanwen/go-fuse/fuse"
|
2018-03-28 19:19:58 +02:00
|
|
|
"github.com/pkg/xattr"
|
2018-03-18 17:43:38 +01:00
|
|
|
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
|
|
|
)
|
|
|
|
|
2018-06-12 21:07:00 +02:00
|
|
|
const _EOPNOTSUPP = fuse.Status(syscall.EOPNOTSUPP)
|
|
|
|
|
2018-03-18 17:43:38 +01:00
|
|
|
// xattr names are encrypted like file names, but with a fixed IV.
|
2018-06-12 21:07:00 +02:00
|
|
|
// Padded with "_xx" for length 16.
|
2018-03-18 17:43:38 +01:00
|
|
|
var xattrNameIV = []byte("xattr_name_iv_xx")
|
|
|
|
|
|
|
|
// We store encrypted xattrs under this prefix plus the base64-encoded
|
|
|
|
// encrypted original name.
|
|
|
|
var xattrStorePrefix = "user.gocryptfs."
|
|
|
|
|
2018-10-01 21:39:19 +02:00
|
|
|
// GetXAttr - FUSE call. Reads the value of extended attribute "attr".
|
2018-11-04 21:29:17 +01:00
|
|
|
//
|
2018-11-11 17:43:48 +01:00
|
|
|
// This function is symlink-safe on Linux.
|
|
|
|
// Darwin does not have fgetxattr(2) nor /proc. How to implement this on Darwin
|
|
|
|
// in a symlink-safe way?
|
|
|
|
func (fs *FS) GetXAttr(relPath string, attr string, context *fuse.Context) ([]byte, fuse.Status) {
|
|
|
|
if fs.isFiltered(relPath) {
|
2018-03-18 17:43:38 +01:00
|
|
|
return nil, fuse.EPERM
|
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
if disallowedXAttrName(attr) {
|
2018-06-12 21:07:00 +02:00
|
|
|
return nil, _EOPNOTSUPP
|
2018-04-02 18:59:02 +02:00
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
cAttr := fs.encryptXattrName(attr)
|
2018-11-11 17:43:48 +01:00
|
|
|
cData, status := fs.getXattr(relPath, cAttr, context)
|
|
|
|
if !status.Ok() {
|
|
|
|
return nil, status
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
2018-11-11 17:43:48 +01:00
|
|
|
data, err := fs.decryptXattrValue(cData)
|
2018-03-18 17:43:38 +01:00
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("GetXAttr: %v", err)
|
|
|
|
return nil, fuse.EIO
|
|
|
|
}
|
2018-05-07 22:01:36 +02:00
|
|
|
return data, fuse.OK
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
|
|
|
|
2018-11-04 22:31:55 +01:00
|
|
|
// SetXAttr - FUSE call.
|
|
|
|
//
|
|
|
|
// TODO: Make symlink-safe. Currently blocked because the xattr package does
|
|
|
|
// not provide fsetxattr.
|
2018-03-18 17:43:38 +01:00
|
|
|
func (fs *FS) SetXAttr(path string, attr string, data []byte, flags int, context *fuse.Context) fuse.Status {
|
|
|
|
if fs.isFiltered(path) {
|
|
|
|
return fuse.EPERM
|
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
if disallowedXAttrName(attr) {
|
2018-05-15 23:00:47 +02:00
|
|
|
return _EOPNOTSUPP
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
|
2018-05-01 18:46:51 +02:00
|
|
|
flags = filterXattrSetFlags(flags)
|
|
|
|
|
2018-04-17 20:33:04 +02:00
|
|
|
cPath, err := fs.getBackingPath(path)
|
2018-03-18 17:43:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
cAttr := fs.encryptXattrName(attr)
|
2018-05-07 22:01:36 +02:00
|
|
|
cData := fs.encryptXattrValue(data)
|
2018-05-27 20:09:48 +02:00
|
|
|
return unpackXattrErr(xattr.LSetWithFlags(cPath, cAttr, cData, flags))
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
|
|
|
|
2018-11-04 22:05:38 +01:00
|
|
|
// RemoveXAttr - FUSE call.
|
|
|
|
//
|
|
|
|
// TODO: Make symlink-safe. Blocker: package xattr does not provide
|
|
|
|
// fremovexattr(2).
|
2018-03-18 17:43:38 +01:00
|
|
|
func (fs *FS) RemoveXAttr(path string, attr string, context *fuse.Context) fuse.Status {
|
|
|
|
if fs.isFiltered(path) {
|
|
|
|
return fuse.EPERM
|
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
if disallowedXAttrName(attr) {
|
2018-05-15 23:00:47 +02:00
|
|
|
return _EOPNOTSUPP
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
cPath, err := fs.getBackingPath(path)
|
2018-03-18 17:43:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2018-04-17 20:33:04 +02:00
|
|
|
cAttr := fs.encryptXattrName(attr)
|
2018-05-27 20:09:48 +02:00
|
|
|
return unpackXattrErr(xattr.LRemove(cPath, cAttr))
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
|
|
|
|
2018-10-01 21:39:19 +02:00
|
|
|
// ListXAttr - FUSE call. Lists extended attributes on the file at "path".
|
2018-11-04 21:29:17 +01:00
|
|
|
//
|
2018-10-01 21:39:19 +02:00
|
|
|
// TODO: Make symlink-safe. Blocker: package xattr does not provide
|
|
|
|
// flistxattr(2).
|
2018-03-18 17:43:38 +01:00
|
|
|
func (fs *FS) ListXAttr(path string, context *fuse.Context) ([]string, fuse.Status) {
|
|
|
|
if fs.isFiltered(path) {
|
|
|
|
return nil, fuse.EPERM
|
|
|
|
}
|
|
|
|
cPath, err := fs.getBackingPath(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
2018-05-27 20:09:48 +02:00
|
|
|
cNames, err := xattr.LList(cPath)
|
2018-03-18 17:43:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, unpackXattrErr(err)
|
|
|
|
}
|
|
|
|
names := make([]string, 0, len(cNames))
|
|
|
|
for _, curName := range cNames {
|
|
|
|
if !strings.HasPrefix(curName, xattrStorePrefix) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
name, err := fs.decryptXattrName(curName)
|
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("ListXAttr: invalid xattr name %q: %v", curName, err)
|
2018-07-01 15:48:53 +02:00
|
|
|
fs.reportMitigatedCorruption(curName)
|
2018-03-18 17:43:38 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
return names, fuse.OK
|
|
|
|
}
|
|
|
|
|
|
|
|
// encryptXattrName transforms "user.foo" to "user.gocryptfs.a5sAd4XAa47f5as6dAf"
|
2018-04-17 20:33:04 +02:00
|
|
|
func (fs *FS) encryptXattrName(attr string) (cAttr string) {
|
2018-03-18 17:43:38 +01:00
|
|
|
// xattr names are encrypted like file names, but with a fixed IV.
|
|
|
|
cAttr = xattrStorePrefix + fs.nameTransform.EncryptName(attr, xattrNameIV)
|
2018-04-17 20:33:04 +02:00
|
|
|
return cAttr
|
2018-03-18 17:43:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *FS) decryptXattrName(cAttr string) (attr string, err error) {
|
|
|
|
// Reject anything that does not start with "user.gocryptfs."
|
|
|
|
if !strings.HasPrefix(cAttr, xattrStorePrefix) {
|
|
|
|
return "", syscall.EINVAL
|
|
|
|
}
|
|
|
|
// Strip "user.gocryptfs." prefix
|
|
|
|
cAttr = cAttr[len(xattrStorePrefix):]
|
|
|
|
attr, err = fs.nameTransform.DecryptName(cAttr, xattrNameIV)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return attr, nil
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:01:36 +02:00
|
|
|
// encryptXattrValue encrypts the xattr value "data".
|
|
|
|
// The data is encrypted like a file content block, but without binding it to
|
|
|
|
// a file location (block number and file id are set to zero).
|
|
|
|
// Special case: an empty value is encrypted to an empty value.
|
|
|
|
func (fs *FS) encryptXattrValue(data []byte) (cData []byte) {
|
|
|
|
if len(data) == 0 {
|
|
|
|
return []byte{}
|
|
|
|
}
|
|
|
|
return fs.contentEnc.EncryptBlock(data, 0, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// decryptXattrValue decrypts the xattr value "cData".
|
|
|
|
func (fs *FS) decryptXattrValue(cData []byte) (data []byte, err error) {
|
|
|
|
if len(cData) == 0 {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
data, err1 := fs.contentEnc.DecryptBlock([]byte(cData), 0, nil)
|
|
|
|
if err1 == nil {
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
// This backward compatibility is needed to support old
|
|
|
|
// file systems having xattr values base64-encoded.
|
|
|
|
cData, err2 := fs.nameTransform.B64.DecodeString(string(cData))
|
|
|
|
if err2 != nil {
|
|
|
|
// Looks like the value was not base64-encoded, but just corrupt.
|
|
|
|
// Return the original decryption error: err1
|
|
|
|
return nil, err1
|
|
|
|
}
|
|
|
|
return fs.contentEnc.DecryptBlock([]byte(cData), 0, nil)
|
|
|
|
}
|
|
|
|
|
2018-05-27 20:09:48 +02:00
|
|
|
// unpackXattrErr unpacks an error value that we got from xattr.LGet/LSet/etc
|
2018-03-18 17:43:38 +01:00
|
|
|
// and converts it to a fuse status.
|
|
|
|
func unpackXattrErr(err error) fuse.Status {
|
|
|
|
if err == nil {
|
|
|
|
return fuse.OK
|
|
|
|
}
|
|
|
|
err2, ok := err.(*xattr.Error)
|
|
|
|
if !ok {
|
|
|
|
tlog.Warn.Printf("unpackXattrErr: cannot unpack err=%v", err)
|
|
|
|
return fuse.EIO
|
|
|
|
}
|
|
|
|
return fuse.ToStatus(err2.Err)
|
|
|
|
}
|