2016-06-05 12:53:10 +02:00
|
|
|
package configfile
|
|
|
|
|
|
|
|
type flagIota int
|
|
|
|
|
|
|
|
const (
|
2016-10-02 06:14:18 +02:00
|
|
|
// FlagPlaintextNames indicates that filenames are unencrypted.
|
2016-06-05 12:53:10 +02:00
|
|
|
FlagPlaintextNames flagIota = iota
|
2016-10-02 06:14:18 +02:00
|
|
|
// FlagDirIV indicates that a per-directory IV file is used.
|
2016-06-05 12:53:10 +02:00
|
|
|
FlagDirIV
|
2016-10-02 06:14:18 +02:00
|
|
|
// FlagEMENames indicates EME (ECB-Mix-ECB) filename encryption.
|
|
|
|
// This flag is mandatory since gocryptfs v1.0.
|
2016-06-05 12:53:10 +02:00
|
|
|
FlagEMENames
|
2016-10-02 06:14:18 +02:00
|
|
|
// FlagGCMIV128 indicates 128-bit GCM IVs.
|
|
|
|
// This flag is mandatory since gocryptfs v1.0.
|
2016-06-05 12:53:10 +02:00
|
|
|
FlagGCMIV128
|
2016-10-02 06:14:18 +02:00
|
|
|
// FlagLongNames allows file names longer than 176 bytes.
|
2016-06-05 12:53:10 +02:00
|
|
|
FlagLongNames
|
2016-10-02 06:14:18 +02:00
|
|
|
// FlagAESSIV selects an AES-SIV based crypto backend.
|
2016-09-26 23:25:13 +02:00
|
|
|
FlagAESSIV
|
2016-11-01 18:43:22 +01:00
|
|
|
// FlagRaw64 enables raw (unpadded) base64 encoding for file names
|
|
|
|
FlagRaw64
|
2017-02-26 21:25:58 +01:00
|
|
|
// FlagHKDF enables HKDF-derived keys for use with GCM, EME and SIV
|
|
|
|
// instead of directly using the master key (GCM and EME) or the SHA-512
|
|
|
|
// hashed master key (SIV).
|
|
|
|
// Note that this flag does not change the password hashing algorithm
|
|
|
|
// which always is scrypt.
|
|
|
|
FlagHKDF
|
2016-06-05 12:53:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// knownFlags stores the known feature flags and their string representation
|
2016-10-02 06:14:18 +02:00
|
|
|
var knownFlags = map[flagIota]string{
|
2016-06-05 12:53:10 +02:00
|
|
|
FlagPlaintextNames: "PlaintextNames",
|
|
|
|
FlagDirIV: "DirIV",
|
|
|
|
FlagEMENames: "EMENames",
|
|
|
|
FlagGCMIV128: "GCMIV128",
|
|
|
|
FlagLongNames: "LongNames",
|
2016-09-26 23:25:13 +02:00
|
|
|
FlagAESSIV: "AESSIV",
|
2016-11-01 18:43:22 +01:00
|
|
|
FlagRaw64: "Raw64",
|
2017-03-05 21:59:55 +01:00
|
|
|
FlagHKDF: "HKDF",
|
2016-06-05 12:53:10 +02:00
|
|
|
}
|
|
|
|
|
2016-06-06 23:13:10 +02:00
|
|
|
// Filesystems that do not have these feature flags set are deprecated.
|
2016-10-02 06:14:18 +02:00
|
|
|
var requiredFlagsNormal = []flagIota{
|
2016-06-06 23:13:10 +02:00
|
|
|
FlagDirIV,
|
|
|
|
FlagEMENames,
|
|
|
|
FlagGCMIV128,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filesystems without filename encryption obviously don't have or need the
|
2016-09-20 21:58:04 +02:00
|
|
|
// filename related feature flags.
|
2016-10-02 06:14:18 +02:00
|
|
|
var requiredFlagsPlaintextNames = []flagIota{
|
2016-06-06 23:13:10 +02:00
|
|
|
FlagGCMIV128,
|
|
|
|
}
|
|
|
|
|
2016-10-02 06:14:18 +02:00
|
|
|
// isFeatureFlagKnown verifies that we understand a feature flag.
|
2016-06-05 12:53:10 +02:00
|
|
|
func (cf *ConfFile) isFeatureFlagKnown(flag string) bool {
|
|
|
|
for _, knownFlag := range knownFlags {
|
|
|
|
if knownFlag == flag {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-10-02 06:14:18 +02:00
|
|
|
// IsFeatureFlagSet returns true if the feature flag "flagWant" is enabled.
|
2016-06-05 12:53:10 +02:00
|
|
|
func (cf *ConfFile) IsFeatureFlagSet(flagWant flagIota) bool {
|
|
|
|
flagString := knownFlags[flagWant]
|
|
|
|
for _, flag := range cf.FeatureFlags {
|
|
|
|
if flag == flagString {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|