/* * config.go - Actions for creating a new config file, which includes new * hashing costs and the config file's location. * * Copyright 2017 Google Inc. * Author: Joe Richey (joerichey@google.com) * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package actions import ( "bytes" "log" "os" "runtime" "time" "golang.org/x/sys/unix" "fscrypt/crypto" "fscrypt/metadata" "fscrypt/util" ) // LegacyConfig indicates that keys should be inserted into the keyring with the // legacy service prefixes. Needed for kernels before v4.8. const LegacyConfig = "legacy" // ConfigFileLocation is the location of fscrypt's global settings. This can be // overridden by the user of this package. var ConfigFileLocation = "/etc/fscrypt.conf" const ( // Permissions of the config file (global readable) configPermissions = 0644 // Config file should be created for writing and not already exist createFlags = os.O_CREATE | os.O_WRONLY | os.O_EXCL ) var ( timingPassphrase = []byte("I am a fake passphrase") timingSalt = bytes.Repeat([]byte{42}, metadata.SaltLen) ) // CreateConfigFile creates a new config file at the appropriate location with // the appropriate hashing costs and encryption parameters. This creation is // configurable in two ways. First, a time target must be specified. This target // will determine the hashing costs, by picking parameters that make the hashing // take as long as the specified target. Second, the config can include the // legacy option, which is needed for systems with kernels older than v4.8. func CreateConfigFile(target time.Duration, useLegacy bool) error { // Create the config file before computing the hashing costs, so we fail // immediately if the program has insufficient permissions. configFile, err := os.OpenFile(ConfigFileLocation, createFlags, configPermissions) switch { case os.IsExist(err): return ErrConfigFileExists case err != nil: return util.UnderlyingError(err) } defer configFile.Close() config := &metadata.Config{ Source: metadata.DefaultSource, Options: metadata.DefaultOptions, } if useLegacy { config.Compatibility = LegacyConfig log.Printf("Using %q compatibility option\n", LegacyConfig) } if config.HashCosts, err = getHashingCosts(target); err != nil { return err } log.Printf("Creating config at %q with %v\n", ConfigFileLocation, config) return metadata.WriteConfig(config, configFile) } // getConfig returns the current configuration struct. Any fields not specified // in the config file use the system defaults. An error is returned if the // config file hasn't been setup with CreateConfigFile yet or the config // contains invalid data. func getConfig() (*metadata.Config, error) { configFile, err := os.Open(ConfigFileLocation) switch { case os.IsNotExist(err): return nil, ErrNoConfigFile case err != nil: return nil, util.UnderlyingError(err) } defer configFile.Close() log.Printf("Reading config from %q\n", ConfigFileLocation) config, err := metadata.ReadConfig(configFile) if err != nil { log.Printf("ReadConfig() = %v", err) return nil, ErrBadConfigFile } // Use system defaults if not specified if config.Source == metadata.SourceType_default { config.Source = metadata.DefaultSource log.Printf("Falling back to source of %q", config.Source.String()) } if config.Options.Padding == 0 { config.Options.Padding = metadata.DefaultOptions.Padding log.Printf("Falling back to padding of %d", config.Options.Padding) } if config.Options.Contents == metadata.EncryptionOptions_default { config.Options.Contents = metadata.DefaultOptions.Contents log.Printf("Falling back to contents mode of %q", config.Options.Contents) } if config.Options.Filenames == metadata.EncryptionOptions_default { config.Options.Filenames = metadata.DefaultOptions.Filenames log.Printf("Falling back to filenames mode of %q", config.Options.Filenames) } if !config.IsValid() { return nil, ErrBadConfigFile } return config, nil } // getHashingCosts returns hashing costs so that hashing a password will take // approximately the target time. This is done using the total amount of RAM, // the number of CPUs present, and by running the passphrase hash many times. func getHashingCosts(target time.Duration) (*metadata.HashingCosts, error) { log.Printf("Finding hashing costs that take %v\n", target) // Start out with the minimal possible costs that use all the CPUs. nCPUs := int64(runtime.NumCPU()) costs := &metadata.HashingCosts{ Time: 1, Memory: 8 * nCPUs, Parallelism: nCPUs, } // If even the minimal costs are not fast enough, just return the // minimal costs and log a warning. t, err := timeHashingCosts(costs) if err != nil { return nil, err } log.Printf("Min Costs={%v}\t-> %v\n", costs, t) if t > target { log.Printf("time exceeded the target of %v.\n", target) return costs, nil } // Now we start doubling the costs until we reach the target. maxMemory := ramLimit() for { // Store a copy of the previous costs costsPrev := *costs tPrev := t // Double the memory up to the max, then the double the time. if costs.Memory < maxMemory { costs.Memory = util.MinInt64(2*costs.Memory, maxMemory) } else { costs.Time *= 2 } // If our hashing failed, return the last good set of costs. if t, err = timeHashingCosts(costs); err != nil { log.Printf("Hashing with costs={%v} failed: %v\n", costs, err) return &costsPrev, nil } log.Printf("Costs={%v}\t-> %v\n", costs, t) // If we have reached the target time, we return a set of costs // based on the linear interpolation between the last two times. if t >= target { f := float64(target-tPrev) / float64(t-tPrev) return &metadata.HashingCosts{ Time: betweenCosts(costsPrev.Time, costs.Time, f), Memory: betweenCosts(costsPrev.Memory, costs.Memory, f), Parallelism: costs.Parallelism, }, nil } } } // ramLimit returns the maximum amount of RAM (in kB) we will use for passphrase // hashing. Right now it is simply half of the total RAM on the system. func ramLimit() int64 { var info unix.Sysinfo_t err := unix.Sysinfo(&info) // The sysinfo syscall only fails if given a bad address util.NeverError(err) // Use half the RAM and convert to kB. return int64(info.Totalram / 1000 / 2) } // betweenCosts returns a cost between a and b. Specifically, it returns the // floor of a + f*(b-a). This way, f=0 returns a and f=1 returns b. func betweenCosts(a, b int64, f float64) int64 { return a + int64(f*float64(b-a)) } // timeHashingCosts runs the passphrase hash with the specified costs and // returns the time it takes to hash the passphrase. func timeHashingCosts(costs *metadata.HashingCosts) (time.Duration, error) { passphrase, err := crypto.NewKeyFromReader(bytes.NewReader(timingPassphrase)) if err != nil { return 0, err } defer passphrase.Wipe() start := time.Now() hash, err := crypto.PassphraseHash(passphrase, timingSalt, costs) if err == nil { hash.Wipe() } return time.Since(start), err }