2016-02-06 19:27:59 +01:00
|
|
|
package fusefrontend
|
2015-12-11 19:54:53 +01:00
|
|
|
|
2015-12-19 13:21:15 +01:00
|
|
|
// Mkdir and Rmdir
|
|
|
|
|
2015-12-11 19:54:53 +01:00
|
|
|
import (
|
2015-12-13 20:10:52 +01:00
|
|
|
"fmt"
|
2016-06-27 00:25:56 +02:00
|
|
|
"io"
|
2015-12-11 19:54:53 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2017-09-05 21:47:05 +02:00
|
|
|
"runtime"
|
2017-09-03 15:05:54 +02:00
|
|
|
"sync"
|
2015-12-11 19:54:53 +01:00
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/hanwen/go-fuse/fuse"
|
2016-02-06 19:20:54 +01:00
|
|
|
|
2016-02-07 14:02:09 +01:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/configfile"
|
2016-02-06 19:20:54 +01:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/cryptocore"
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/nametransform"
|
2016-07-03 20:05:32 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/syscallcompat"
|
2016-06-15 23:30:44 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
2015-12-11 19:54:53 +01:00
|
|
|
)
|
|
|
|
|
2017-09-05 22:47:15 +02:00
|
|
|
const dsStoreName = ".DS_Store"
|
|
|
|
|
2016-04-10 19:32:10 +02:00
|
|
|
func (fs *FS) mkdirWithIv(cPath string, mode uint32) error {
|
|
|
|
// Between the creation of the directory and the creation of gocryptfs.diriv
|
2016-10-10 08:43:09 +02:00
|
|
|
// the directory is inconsistent. Take the lock to prevent other readers
|
|
|
|
// from seeing it.
|
2016-04-10 19:32:10 +02:00
|
|
|
fs.dirIVLock.Lock()
|
|
|
|
// The new directory may take the place of an older one that is still in the cache
|
|
|
|
fs.nameTransform.DirIVCache.Clear()
|
|
|
|
defer fs.dirIVLock.Unlock()
|
|
|
|
err := os.Mkdir(cPath, os.FileMode(mode))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Create gocryptfs.diriv
|
|
|
|
err = nametransform.WriteDirIV(cPath)
|
|
|
|
if err != nil {
|
|
|
|
err2 := syscall.Rmdir(cPath)
|
|
|
|
if err2 != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("mkdirWithIv: rollback failed: %v", err2)
|
2016-04-10 19:32:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-10-02 06:14:18 +02:00
|
|
|
// Mkdir implements pathfs.FileSystem
|
2016-04-10 19:32:10 +02:00
|
|
|
func (fs *FS) Mkdir(newPath string, mode uint32, context *fuse.Context) (code fuse.Status) {
|
|
|
|
if fs.isFiltered(newPath) {
|
2015-12-11 19:54:53 +01:00
|
|
|
return fuse.EPERM
|
|
|
|
}
|
2016-04-10 19:32:10 +02:00
|
|
|
cPath, err := fs.getBackingPath(newPath)
|
2015-12-11 19:54:53 +01:00
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2016-06-27 00:25:56 +02:00
|
|
|
if fs.args.PlaintextNames {
|
|
|
|
err = os.Mkdir(cPath, os.FileMode(mode))
|
2016-10-10 08:43:09 +02:00
|
|
|
// Set owner
|
|
|
|
if fs.args.PreserveOwner {
|
2016-11-28 22:46:04 +01:00
|
|
|
err = os.Lchown(cPath, int(context.Owner.Uid), int(context.Owner.Gid))
|
2016-10-10 08:43:09 +02:00
|
|
|
if err != nil {
|
2016-11-28 22:46:04 +01:00
|
|
|
tlog.Warn.Printf("Mkdir: Lchown failed: %v", err)
|
2016-10-10 08:43:09 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-27 00:25:56 +02:00
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
|
2015-12-11 19:54:53 +01:00
|
|
|
// We need write and execute permissions to create gocryptfs.diriv
|
|
|
|
origMode := mode
|
|
|
|
mode = mode | 0300
|
2016-04-10 19:32:10 +02:00
|
|
|
|
|
|
|
// Handle long file name
|
|
|
|
cName := filepath.Base(cPath)
|
|
|
|
if nametransform.IsLongContent(cName) {
|
2016-04-10 21:29:42 +02:00
|
|
|
var dirfd *os.File
|
|
|
|
dirfd, err = os.Open(filepath.Dir(cPath))
|
2016-04-10 19:32:10 +02:00
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
defer dirfd.Close()
|
|
|
|
|
|
|
|
// Create ".name"
|
|
|
|
err = fs.nameTransform.WriteLongName(dirfd, cName, newPath)
|
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create directory
|
|
|
|
err = fs.mkdirWithIv(cPath, mode)
|
|
|
|
if err != nil {
|
|
|
|
nametransform.DeleteLongName(dirfd, cName)
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
err = fs.mkdirWithIv(cPath, mode)
|
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
2015-12-11 19:54:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Set permissions back to what the user wanted
|
|
|
|
if origMode != mode {
|
2016-04-10 19:32:10 +02:00
|
|
|
err = os.Chmod(cPath, os.FileMode(origMode))
|
2015-12-11 19:54:53 +01:00
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("Mkdir: Chmod failed: %v", err)
|
2015-12-11 19:54:53 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-10 08:43:09 +02:00
|
|
|
// Set owner
|
|
|
|
if fs.args.PreserveOwner {
|
2016-11-28 22:46:04 +01:00
|
|
|
err = os.Lchown(cPath, int(context.Owner.Uid), int(context.Owner.Gid))
|
2016-10-10 08:43:09 +02:00
|
|
|
if err != nil {
|
2016-11-28 22:46:04 +01:00
|
|
|
tlog.Warn.Printf("Mkdir: Lchown 1 failed: %v", err)
|
2016-10-10 08:43:09 +02:00
|
|
|
}
|
2016-11-28 22:46:04 +01:00
|
|
|
err = os.Lchown(filepath.Join(cPath, nametransform.DirIVFilename), int(context.Owner.Uid), int(context.Owner.Gid))
|
2016-10-10 08:43:09 +02:00
|
|
|
if err != nil {
|
2016-11-28 22:46:04 +01:00
|
|
|
tlog.Warn.Printf("Mkdir: Lchown 2 failed: %v", err)
|
2016-10-10 08:43:09 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-11 19:54:53 +01:00
|
|
|
return fuse.OK
|
|
|
|
}
|
|
|
|
|
2017-09-05 22:47:15 +02:00
|
|
|
// haveDsstore return true if one of the entries in "names" is ".DS_Store".
|
|
|
|
func haveDsstore(names []string) bool {
|
|
|
|
for _, n := range names {
|
|
|
|
if n == dsStoreName {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-10-02 06:14:18 +02:00
|
|
|
// Rmdir implements pathfs.FileSystem
|
2016-04-10 19:32:10 +02:00
|
|
|
func (fs *FS) Rmdir(path string, context *fuse.Context) (code fuse.Status) {
|
|
|
|
cPath, err := fs.getBackingPath(path)
|
2015-12-11 19:54:53 +01:00
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2016-06-27 00:25:56 +02:00
|
|
|
if fs.args.PlaintextNames {
|
|
|
|
err = syscall.Rmdir(cPath)
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2016-04-10 19:32:10 +02:00
|
|
|
parentDir := filepath.Dir(cPath)
|
|
|
|
parentDirFd, err := os.Open(parentDir)
|
|
|
|
if err != nil {
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
defer parentDirFd.Close()
|
|
|
|
|
|
|
|
cName := filepath.Base(cPath)
|
2016-07-03 20:17:40 +02:00
|
|
|
dirfdRaw, err := syscallcompat.Openat(int(parentDirFd.Fd()), cName,
|
2016-04-10 19:32:10 +02:00
|
|
|
syscall.O_RDONLY, 0)
|
|
|
|
if err == syscall.EACCES {
|
2015-12-11 19:54:53 +01:00
|
|
|
// We need permission to read and modify the directory
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("Rmdir: handling EACCESS")
|
2016-04-10 19:32:10 +02:00
|
|
|
// TODO use syscall.Fstatat once it is available in Go
|
|
|
|
var fi os.FileInfo
|
|
|
|
fi, err = os.Lstat(cPath)
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("Rmdir: Stat: %v", err)
|
2016-04-10 19:32:10 +02:00
|
|
|
return fuse.ToStatus(err)
|
2015-12-11 19:54:53 +01:00
|
|
|
}
|
|
|
|
origMode := fi.Mode()
|
2016-04-10 19:32:10 +02:00
|
|
|
// TODO use syscall.Chmodat once it is available in Go
|
|
|
|
err = os.Chmod(cPath, origMode|0700)
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("Rmdir: Chmod failed: %v", err)
|
2015-12-11 19:54:53 +01:00
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2016-04-10 19:32:10 +02:00
|
|
|
// Retry open
|
|
|
|
var st syscall.Stat_t
|
|
|
|
syscall.Lstat(cPath, &st)
|
2016-07-03 20:17:40 +02:00
|
|
|
dirfdRaw, err = syscallcompat.Openat(int(parentDirFd.Fd()), cName,
|
2016-04-10 19:32:10 +02:00
|
|
|
syscall.O_RDONLY, 0)
|
|
|
|
// Undo the chmod if removing the directory failed
|
2015-12-13 20:10:52 +01:00
|
|
|
defer func() {
|
2015-12-11 19:54:53 +01:00
|
|
|
if code != fuse.OK {
|
2016-06-14 22:45:33 +02:00
|
|
|
err = os.Chmod(cPath, origMode)
|
2016-04-10 19:32:10 +02:00
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("Rmdir: Chmod rollback failed: %v", err)
|
2015-12-11 19:54:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("Rmdir: Open: %v", err)
|
2015-12-11 19:54:53 +01:00
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2016-04-10 19:32:10 +02:00
|
|
|
dirfd := os.NewFile(uintptr(dirfdRaw), cName)
|
|
|
|
defer dirfd.Close()
|
2017-09-05 22:47:15 +02:00
|
|
|
retry:
|
2017-09-05 22:08:59 +02:00
|
|
|
// Check directory contents
|
2016-04-10 19:32:10 +02:00
|
|
|
children, err := dirfd.Readdirnames(10)
|
2017-09-05 22:08:59 +02:00
|
|
|
if err == io.EOF {
|
2016-06-27 00:25:56 +02:00
|
|
|
// The directory is empty
|
|
|
|
tlog.Warn.Printf("Rmdir: %q: gocryptfs.diriv is missing", cPath)
|
|
|
|
err = syscall.Rmdir(cPath)
|
2016-04-10 19:32:10 +02:00
|
|
|
if err != nil {
|
2016-06-27 00:25:56 +02:00
|
|
|
return fuse.ToStatus(err)
|
2015-12-11 19:54:53 +01:00
|
|
|
}
|
2017-09-05 22:08:59 +02:00
|
|
|
}
|
|
|
|
if err != nil {
|
2016-06-27 00:25:56 +02:00
|
|
|
tlog.Warn.Printf("Rmdir: Readdirnames: %v", err)
|
2015-12-11 19:54:53 +01:00
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
2017-09-05 22:47:15 +02:00
|
|
|
// MacOS sprinkles .DS_Store files everywhere. This is hard to avoid for
|
|
|
|
// users, so handle it transparently here.
|
|
|
|
if runtime.GOOS == "darwin" && len(children) <= 2 && haveDsstore(children) {
|
|
|
|
ds := filepath.Join(cPath, dsStoreName)
|
|
|
|
err = syscall.Unlink(ds)
|
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("Rmdir: failed to delete blocking file %q: %v", ds, err)
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
tlog.Warn.Printf("Rmdir: had to delete blocking file %q", ds)
|
|
|
|
goto retry
|
|
|
|
}
|
2017-09-05 22:08:59 +02:00
|
|
|
// If the directory is not empty besides gocryptfs.diriv, do not even
|
|
|
|
// attempt the dance around gocryptfs.diriv.
|
|
|
|
if len(children) > 1 {
|
|
|
|
return fuse.ToStatus(syscall.ENOTEMPTY)
|
|
|
|
}
|
|
|
|
// Move "gocryptfs.diriv" to the parent dir as "gocryptfs.diriv.rmdir.XYZ"
|
|
|
|
tmpName := fmt.Sprintf("gocryptfs.diriv.rmdir.%d", cryptocore.RandUint64())
|
|
|
|
tlog.Debug.Printf("Rmdir: Renaming %s to %s", nametransform.DirIVFilename, tmpName)
|
|
|
|
// The directory is in an inconsistent state between rename and rmdir.
|
|
|
|
// Protect against concurrent readers.
|
|
|
|
fs.dirIVLock.Lock()
|
|
|
|
defer fs.dirIVLock.Unlock()
|
|
|
|
err = syscallcompat.Renameat(int(dirfd.Fd()), nametransform.DirIVFilename,
|
|
|
|
int(parentDirFd.Fd()), tmpName)
|
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("Rmdir: Renaming %s to %s failed: %v",
|
|
|
|
nametransform.DirIVFilename, tmpName, err)
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
// Actual Rmdir
|
|
|
|
// TODO Use syscall.Unlinkat with the AT_REMOVEDIR flag once it is available
|
|
|
|
// in Go
|
|
|
|
err = syscall.Rmdir(cPath)
|
|
|
|
if err != nil {
|
|
|
|
// This can happen if another file in the directory was created in the
|
|
|
|
// meantime, undo the rename
|
|
|
|
err2 := syscallcompat.Renameat(int(parentDirFd.Fd()), tmpName,
|
|
|
|
int(dirfd.Fd()), nametransform.DirIVFilename)
|
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("Rmdir: Rename rollback failed: %v", err2)
|
|
|
|
}
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
// Delete "gocryptfs.diriv.rmdir.XYZ"
|
|
|
|
err = syscallcompat.Unlinkat(int(parentDirFd.Fd()), tmpName)
|
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("Rmdir: Could not clean up %s: %v", tmpName, err)
|
|
|
|
}
|
2016-04-10 19:32:10 +02:00
|
|
|
// Delete .name file
|
|
|
|
if nametransform.IsLongContent(cName) {
|
|
|
|
nametransform.DeleteLongName(parentDirFd, cName)
|
2016-02-07 14:02:09 +01:00
|
|
|
}
|
2015-12-11 19:54:53 +01:00
|
|
|
// The now-deleted directory may have been in the DirIV cache. Clear it.
|
2016-02-06 19:20:54 +01:00
|
|
|
fs.nameTransform.DirIVCache.Clear()
|
2015-12-11 19:54:53 +01:00
|
|
|
return fuse.OK
|
|
|
|
}
|
2016-02-07 11:29:54 +01:00
|
|
|
|
2017-09-05 22:47:15 +02:00
|
|
|
// If syscallcompat.HaveGetdents is false we will warn once about it
|
2017-09-03 15:05:54 +02:00
|
|
|
var haveGetdentsWarnOnce sync.Once
|
|
|
|
|
2016-10-02 06:14:18 +02:00
|
|
|
// OpenDir implements pathfs.FileSystem
|
2016-02-07 11:29:54 +01:00
|
|
|
func (fs *FS) OpenDir(dirName string, context *fuse.Context) ([]fuse.DirEntry, fuse.Status) {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("OpenDir(%s)", dirName)
|
2016-02-07 11:29:54 +01:00
|
|
|
cDirName, err := fs.encryptPath(dirName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
// Read ciphertext directory
|
2017-08-15 18:35:30 +02:00
|
|
|
cDirAbsPath := filepath.Join(fs.args.Cipherdir, cDirName)
|
|
|
|
var cipherEntries []fuse.DirEntry
|
|
|
|
var status fuse.Status
|
|
|
|
if syscallcompat.HaveGetdents {
|
|
|
|
// Getdents avoids calling Lstat on each file.
|
|
|
|
cipherEntries, err = syscallcompat.Getdents(cDirAbsPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
} else {
|
2017-09-03 15:05:54 +02:00
|
|
|
haveGetdentsWarnOnce.Do(func() {
|
|
|
|
tlog.Warn.Printf("OpenDir: Getdents not available, falling back to OpenDir")
|
|
|
|
})
|
2017-08-15 18:35:30 +02:00
|
|
|
cipherEntries, status = fs.FileSystem.OpenDir(cDirName, context)
|
|
|
|
if !status.Ok() {
|
|
|
|
return nil, status
|
|
|
|
}
|
2016-02-07 11:29:54 +01:00
|
|
|
}
|
2016-06-23 21:29:00 +02:00
|
|
|
// Get DirIV (stays nil if PlaintextNames is used)
|
2016-02-07 11:29:54 +01:00
|
|
|
var cachedIV []byte
|
2016-06-23 21:29:00 +02:00
|
|
|
if !fs.args.PlaintextNames {
|
2017-09-03 13:56:11 +02:00
|
|
|
cachedIV, _ = fs.nameTransform.DirIVCache.Lookup(dirName)
|
|
|
|
if cachedIV == nil {
|
|
|
|
// Read the DirIV from disk and store it in the cache
|
|
|
|
fs.dirIVLock.RLock()
|
|
|
|
cachedIV, err = nametransform.ReadDirIV(cDirAbsPath)
|
|
|
|
if err != nil {
|
|
|
|
fs.dirIVLock.RUnlock()
|
|
|
|
// This can happen during normal operation when the directory has
|
|
|
|
// been deleted concurrently. But it can also mean that the
|
|
|
|
// gocryptfs.diriv is missing due to an error, so log the event
|
|
|
|
// at "info" level.
|
|
|
|
tlog.Info.Printf("OpenDir: %v", err)
|
|
|
|
return nil, fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
fs.nameTransform.DirIVCache.Store(dirName, cachedIV, cDirName)
|
|
|
|
fs.dirIVLock.RUnlock()
|
2016-02-07 11:29:54 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-04 16:39:27 +02:00
|
|
|
// Decrypted directory entries
|
2016-02-07 11:29:54 +01:00
|
|
|
var plain []fuse.DirEntry
|
2016-06-04 16:39:27 +02:00
|
|
|
var errorCount int
|
|
|
|
// Filter and decrypt filenames
|
2016-02-07 11:29:54 +01:00
|
|
|
for i := range cipherEntries {
|
|
|
|
cName := cipherEntries[i].Name
|
|
|
|
if dirName == "" && cName == configfile.ConfDefaultName {
|
|
|
|
// silently ignore "gocryptfs.conf" in the top level dir
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if fs.args.PlaintextNames {
|
|
|
|
plain = append(plain, cipherEntries[i])
|
|
|
|
continue
|
|
|
|
}
|
2017-05-23 20:46:24 +02:00
|
|
|
if cName == nametransform.DirIVFilename {
|
|
|
|
// silently ignore "gocryptfs.diriv" everywhere if dirIV is enabled
|
|
|
|
continue
|
|
|
|
}
|
2016-06-04 16:39:27 +02:00
|
|
|
// Handle long file name
|
|
|
|
isLong := nametransform.LongNameNone
|
2016-02-07 11:29:54 +01:00
|
|
|
if fs.args.LongNames {
|
2016-06-04 16:39:27 +02:00
|
|
|
isLong = nametransform.NameType(cName)
|
|
|
|
}
|
|
|
|
if isLong == nametransform.LongNameContent {
|
|
|
|
cNameLong, err := nametransform.ReadLongName(filepath.Join(cDirAbsPath, cName))
|
|
|
|
if err != nil {
|
2017-05-07 20:58:27 +02:00
|
|
|
tlog.Warn.Printf("OpenDir %q: invalid entry %q: Could not read .name: %v",
|
|
|
|
cDirName, cName, err)
|
2016-06-04 16:39:27 +02:00
|
|
|
errorCount++
|
2016-02-07 11:29:54 +01:00
|
|
|
continue
|
|
|
|
}
|
2016-06-04 16:39:27 +02:00
|
|
|
cName = cNameLong
|
|
|
|
} else if isLong == nametransform.LongNameFilename {
|
|
|
|
// ignore "gocryptfs.longname.*.name"
|
|
|
|
continue
|
2016-02-07 11:29:54 +01:00
|
|
|
}
|
|
|
|
name, err := fs.nameTransform.DecryptName(cName, cachedIV)
|
|
|
|
if err != nil {
|
2017-05-07 20:58:27 +02:00
|
|
|
tlog.Warn.Printf("OpenDir %q: invalid entry %q: %v",
|
|
|
|
cDirName, cName, err)
|
2017-09-05 22:47:15 +02:00
|
|
|
if runtime.GOOS == "darwin" && cName == dsStoreName {
|
2017-09-05 21:47:05 +02:00
|
|
|
// MacOS creates lots of these files. Log the warning but don't
|
|
|
|
// increment errorCount - does not warrant returning EIO.
|
|
|
|
continue
|
|
|
|
}
|
2016-06-04 16:39:27 +02:00
|
|
|
errorCount++
|
2016-02-07 11:29:54 +01:00
|
|
|
continue
|
|
|
|
}
|
2017-05-07 20:58:27 +02:00
|
|
|
// Override the ciphertext name with the plaintext name but reuse the rest
|
|
|
|
// of the structure
|
2016-02-07 11:29:54 +01:00
|
|
|
cipherEntries[i].Name = name
|
|
|
|
plain = append(plain, cipherEntries[i])
|
|
|
|
}
|
2016-06-04 16:39:27 +02:00
|
|
|
|
|
|
|
if errorCount > 0 && len(plain) == 0 {
|
|
|
|
// Don't let the user stare on an empty directory. Report that things went
|
|
|
|
// wrong.
|
2017-05-07 20:58:27 +02:00
|
|
|
tlog.Warn.Printf("OpenDir %q: all %d entries were invalid, returning EIO",
|
|
|
|
cDirName, errorCount)
|
2016-06-04 16:39:27 +02:00
|
|
|
status = fuse.EIO
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:29:54 +01:00
|
|
|
return plain, status
|
|
|
|
}
|