2016-04-01 20:02:18 +00:00
|
|
|
package command
|
2015-03-30 16:21:59 +00:00
|
|
|
|
2015-03-30 17:25:24 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
|
2016-03-10 18:36:17 +00:00
|
|
|
"github.com/hashicorp/go-multierror"
|
2015-03-30 17:25:24 +00:00
|
|
|
"github.com/hashicorp/hcl"
|
2016-03-10 18:36:17 +00:00
|
|
|
"github.com/hashicorp/hcl/hcl/ast"
|
2015-03-30 17:25:24 +00:00
|
|
|
"github.com/mitchellh/go-homedir"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// DefaultConfigPath is the default path to the configuration file
|
|
|
|
DefaultConfigPath = "~/.vault"
|
|
|
|
|
|
|
|
// ConfigPathEnv is the environment variable that can be used to
|
|
|
|
// override where the Vault configuration is.
|
|
|
|
ConfigPathEnv = "VAULT_CONFIG_PATH"
|
|
|
|
)
|
|
|
|
|
2015-03-30 16:21:59 +00:00
|
|
|
// Config is the CLI configuration for Vault that can be specified via
|
|
|
|
// a `$HOME/.vault` file which is HCL-formatted (therefore HCL or JSON).
|
2016-04-01 20:02:18 +00:00
|
|
|
type DefaultConfig struct {
|
2015-03-30 16:21:59 +00:00
|
|
|
// TokenHelper is the executable/command that is executed for storing
|
|
|
|
// and retrieving the authentication token for the Vault CLI. If this
|
2015-12-14 21:23:04 +00:00
|
|
|
// is not specified, then vault's internal token store will be used, which
|
|
|
|
// stores the token on disk unencrypted.
|
2015-03-30 16:21:59 +00:00
|
|
|
TokenHelper string `hcl:"token_helper"`
|
|
|
|
}
|
2015-03-30 17:25:24 +00:00
|
|
|
|
2016-04-01 20:02:18 +00:00
|
|
|
// Config loads the configuration and returns it. If the configuration
|
|
|
|
// is already loaded, it is returned.
|
|
|
|
func Config() (*DefaultConfig, error) {
|
|
|
|
var err error
|
|
|
|
config, err := LoadConfig("")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
2015-03-30 17:25:24 +00:00
|
|
|
// LoadConfig reads the configuration from the given path. If path is
|
|
|
|
// empty, then the default path will be used, or the environment variable
|
|
|
|
// if set.
|
2016-04-01 20:02:18 +00:00
|
|
|
func LoadConfig(path string) (*DefaultConfig, error) {
|
2015-03-30 17:25:24 +00:00
|
|
|
if path == "" {
|
|
|
|
path = DefaultConfigPath
|
|
|
|
}
|
|
|
|
if v := os.Getenv(ConfigPathEnv); v != "" {
|
|
|
|
path = v
|
|
|
|
}
|
|
|
|
|
2016-04-24 00:18:18 +00:00
|
|
|
// NOTE: requires HOME env var to be set
|
2015-03-30 17:25:24 +00:00
|
|
|
path, err := homedir.Expand(path)
|
|
|
|
if err != nil {
|
2016-04-24 00:18:18 +00:00
|
|
|
return nil, fmt.Errorf("Error expanding config path %s: %s", path, err)
|
2015-03-30 17:25:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(path)
|
2016-03-10 18:36:17 +00:00
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-03-30 17:25:24 +00:00
|
|
|
|
2016-03-10 18:36:17 +00:00
|
|
|
return ParseConfig(string(contents))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseConfig parses the given configuration as a string.
|
2016-04-01 20:02:18 +00:00
|
|
|
func ParseConfig(contents string) (*DefaultConfig, error) {
|
2016-03-10 18:36:17 +00:00
|
|
|
root, err := hcl.Parse(contents)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Top-level item should be the object list
|
|
|
|
list, ok := root.Node.(*ast.ObjectList)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("Failed to parse config: does not contain a root object")
|
|
|
|
}
|
|
|
|
|
|
|
|
valid := []string{
|
|
|
|
"token_helper",
|
|
|
|
}
|
|
|
|
if err := checkHCLKeys(list, valid); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-04-01 20:02:18 +00:00
|
|
|
var c DefaultConfig
|
2016-03-10 18:36:17 +00:00
|
|
|
if err := hcl.DecodeObject(&c, list); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkHCLKeys(node ast.Node, valid []string) error {
|
|
|
|
var list *ast.ObjectList
|
|
|
|
switch n := node.(type) {
|
|
|
|
case *ast.ObjectList:
|
|
|
|
list = n
|
|
|
|
case *ast.ObjectType:
|
|
|
|
list = n.List
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("cannot check HCL keys of type %T", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
validMap := make(map[string]struct{}, len(valid))
|
|
|
|
for _, v := range valid {
|
|
|
|
validMap[v] = struct{}{}
|
|
|
|
}
|
2015-03-30 17:25:24 +00:00
|
|
|
|
2016-03-10 18:36:17 +00:00
|
|
|
var result error
|
|
|
|
for _, item := range list.Items {
|
|
|
|
key := item.Keys[0].Token.Value().(string)
|
|
|
|
if _, ok := validMap[key]; !ok {
|
|
|
|
result = multierror.Append(result, fmt.Errorf(
|
|
|
|
"invalid key '%s' on line %d", key, item.Assign.Line))
|
2015-03-30 17:55:41 +00:00
|
|
|
}
|
2015-03-30 17:25:24 +00:00
|
|
|
}
|
|
|
|
|
2016-03-10 18:36:17 +00:00
|
|
|
return result
|
2015-03-30 17:25:24 +00:00
|
|
|
}
|