ec74d1d2f4
We need
fd7328faf9
to fix a crash reported in https://github.com/rfjakob/gocryptfs/issues/430 :
2019/10/30 17:14:16 Unknown opcode 2016
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x508d38]
This patch is only in the v2.x.x branch. Upgrade to v2, as the
old API is also supported there.
Running
git grep hanwen/go-fuse | grep -v hanwen/go-fuse/v2
to check for forgotten references comes back clean.
43 lines
1.7 KiB
Go
43 lines
1.7 KiB
Go
package fusefrontend
|
|
|
|
import (
|
|
"github.com/hanwen/go-fuse/v2/fuse"
|
|
)
|
|
|
|
// Args is a container for arguments that are passed from main() to fusefrontend
|
|
type Args struct {
|
|
// Cipherdir is the backing storage directory (absolute path).
|
|
// For reverse mode, Cipherdir actually contains *plaintext* files.
|
|
Cipherdir string
|
|
PlaintextNames bool
|
|
LongNames bool
|
|
// Should we chown a file after it has been created?
|
|
// This only makes sense if (1) allow_other is set and (2) we run as root.
|
|
PreserveOwner bool
|
|
// Should we force ownership to be presented with a given user and group?
|
|
// This only makes sense if allow_other is set. In *most* cases, it also
|
|
// only makes sense with PreserveOwner set, but can also make sense without
|
|
// PreserveOwner if the underlying filesystem acting as backing store
|
|
// enforces ownership itself.
|
|
ForceOwner *fuse.Owner
|
|
// ConfigCustom is true when the user select a non-default config file
|
|
// location. If it is false, reverse mode maps ".gocryptfs.reverse.conf"
|
|
// to "gocryptfs.conf" in the plaintext dir.
|
|
ConfigCustom bool
|
|
// NoPrealloc disables automatic preallocation before writing
|
|
NoPrealloc bool
|
|
// Try to serialize read operations, "-serialize_reads"
|
|
SerializeReads bool
|
|
// Force decode even if integrity check fails (openSSL only)
|
|
ForceDecode bool
|
|
// Exclude is a list of paths to make inaccessible, starting match at
|
|
// the filesystem root
|
|
Exclude []string
|
|
// ExcludeWildcards is a list of paths to make inaccessible, matched
|
|
// anywhere, and supporting wildcards
|
|
ExcludeWildcard []string
|
|
// ExcludeFrom is a list of files from which to read exclusion patterns
|
|
// (with wildcard syntax)
|
|
ExcludeFrom []string
|
|
}
|