2015-03-12 22:21:11 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2016-03-09 23:59:44 +00:00
|
|
|
"log"
|
2015-03-12 22:21:11 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-08-15 13:42:42 +00:00
|
|
|
"strconv"
|
2015-03-12 22:21:11 +00:00
|
|
|
"strings"
|
2015-07-30 17:21:41 +00:00
|
|
|
"time"
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
"github.com/hashicorp/go-multierror"
|
2015-03-12 22:21:11 +00:00
|
|
|
"github.com/hashicorp/hcl"
|
2016-03-09 23:59:44 +00:00
|
|
|
"github.com/hashicorp/hcl/hcl/ast"
|
2015-03-12 22:21:11 +00:00
|
|
|
)
|
|
|
|
|
2016-03-11 21:46:56 +00:00
|
|
|
// ReloadFunc are functions that are called when a reload is requested.
|
2016-03-11 22:28:03 +00:00
|
|
|
type ReloadFunc func(map[string]string) error
|
2016-03-11 21:46:56 +00:00
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
// Config is the configuration for the vault server.
|
|
|
|
type Config struct {
|
2015-04-17 18:25:20 +00:00
|
|
|
Listeners []*Listener `hcl:"-"`
|
|
|
|
Backend *Backend `hcl:"-"`
|
2015-12-11 20:58:10 +00:00
|
|
|
HABackend *Backend `hcl:"-"`
|
2015-04-17 18:25:20 +00:00
|
|
|
|
2015-10-12 16:55:02 +00:00
|
|
|
DisableCache bool `hcl:"disable_cache"`
|
2015-07-31 17:24:23 +00:00
|
|
|
DisableMlock bool `hcl:"disable_mlock"`
|
2015-07-14 22:27:18 +00:00
|
|
|
|
2015-07-31 17:24:23 +00:00
|
|
|
Telemetry *Telemetry `hcl:"telemetry"`
|
2015-07-30 13:42:49 +00:00
|
|
|
|
2015-08-27 14:50:16 +00:00
|
|
|
MaxLeaseTTL time.Duration `hcl:"-"`
|
|
|
|
MaxLeaseTTLRaw string `hcl:"max_lease_ttl"`
|
|
|
|
DefaultLeaseTTL time.Duration `hcl:"-"`
|
|
|
|
DefaultLeaseTTLRaw string `hcl:"default_lease_ttl"`
|
2016-07-26 06:25:33 +00:00
|
|
|
|
2016-07-26 14:01:35 +00:00
|
|
|
ClusterName string `hcl:"cluster_name"`
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-31 23:44:47 +00:00
|
|
|
// DevConfig is a Config that is used for dev mode of Vault.
|
2016-08-15 13:42:42 +00:00
|
|
|
func DevConfig(ha bool) *Config {
|
|
|
|
ret := &Config{
|
2015-10-12 16:55:02 +00:00
|
|
|
DisableCache: false,
|
2015-04-28 22:11:39 +00:00
|
|
|
DisableMlock: true,
|
|
|
|
|
2015-03-31 23:44:47 +00:00
|
|
|
Backend: &Backend{
|
|
|
|
Type: "inmem",
|
|
|
|
},
|
|
|
|
|
|
|
|
Listeners: []*Listener{
|
|
|
|
&Listener{
|
|
|
|
Type: "tcp",
|
|
|
|
Config: map[string]string{
|
2016-03-03 23:10:14 +00:00
|
|
|
"address": "127.0.0.1:8200",
|
2015-03-31 23:44:47 +00:00
|
|
|
"tls_disable": "1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-07-14 22:27:18 +00:00
|
|
|
|
|
|
|
Telemetry: &Telemetry{},
|
2015-07-30 13:42:49 +00:00
|
|
|
|
2015-08-27 14:50:16 +00:00
|
|
|
MaxLeaseTTL: 30 * 24 * time.Hour,
|
|
|
|
DefaultLeaseTTL: 30 * 24 * time.Hour,
|
2015-03-31 23:44:47 +00:00
|
|
|
}
|
2016-08-15 13:42:42 +00:00
|
|
|
|
|
|
|
if ha {
|
|
|
|
ret.Backend.Type = "inmem_ha"
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
2015-03-31 23:44:47 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
// Listener is the listener configuration for the server.
|
|
|
|
type Listener struct {
|
|
|
|
Type string
|
2015-03-13 17:09:38 +00:00
|
|
|
Config map[string]string
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Listener) GoString() string {
|
|
|
|
return fmt.Sprintf("*%#v", *l)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Backend is the backend configuration for the server.
|
|
|
|
type Backend struct {
|
2016-08-15 13:42:42 +00:00
|
|
|
Type string
|
|
|
|
RedirectAddr string
|
|
|
|
ClusterAddr string
|
|
|
|
DisableClustering bool
|
|
|
|
Config map[string]string
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Backend) GoString() string {
|
|
|
|
return fmt.Sprintf("*%#v", *b)
|
|
|
|
}
|
|
|
|
|
2015-07-14 22:27:18 +00:00
|
|
|
// Telemetry is the telemetry configuration for the server
|
|
|
|
type Telemetry struct {
|
|
|
|
StatsiteAddr string `hcl:"statsite_address"`
|
|
|
|
StatsdAddr string `hcl:"statsd_address"`
|
|
|
|
|
|
|
|
DisableHostname bool `hcl:"disable_hostname"`
|
2016-07-22 19:49:23 +00:00
|
|
|
|
|
|
|
// Circonus: see https://github.com/circonus-labs/circonus-gometrics
|
|
|
|
// for more details on the various configuration options.
|
|
|
|
// Valid configuration combinations:
|
|
|
|
// - CirconusAPIToken
|
|
|
|
// metric management enabled (search for existing check or create a new one)
|
|
|
|
// - CirconusSubmissionUrl
|
|
|
|
// metric management disabled (use check with specified submission_url,
|
|
|
|
// broker must be using a public SSL certificate)
|
|
|
|
// - CirconusAPIToken + CirconusCheckSubmissionURL
|
|
|
|
// metric management enabled (use check with specified submission_url)
|
|
|
|
// - CirconusAPIToken + CirconusCheckID
|
|
|
|
// metric management enabled (use check with specified id)
|
|
|
|
|
|
|
|
// CirconusAPIToken is a valid API Token used to create/manage check. If provided,
|
|
|
|
// metric management is enabled.
|
|
|
|
// Default: none
|
|
|
|
CirconusAPIToken string `hcl:"circonus_api_token"`
|
|
|
|
// CirconusAPIApp is an app name associated with API token.
|
|
|
|
// Default: "consul"
|
|
|
|
CirconusAPIApp string `hcl:"circonus_api_app"`
|
|
|
|
// CirconusAPIURL is the base URL to use for contacting the Circonus API.
|
|
|
|
// Default: "https://api.circonus.com/v2"
|
|
|
|
CirconusAPIURL string `hcl:"circonus_api_url"`
|
|
|
|
// CirconusSubmissionInterval is the interval at which metrics are submitted to Circonus.
|
|
|
|
// Default: 10s
|
|
|
|
CirconusSubmissionInterval string `hcl:"circonus_submission_interval"`
|
|
|
|
// CirconusCheckSubmissionURL is the check.config.submission_url field from a
|
|
|
|
// previously created HTTPTRAP check.
|
|
|
|
// Default: none
|
|
|
|
CirconusCheckSubmissionURL string `hcl:"circonus_submission_url"`
|
|
|
|
// CirconusCheckID is the check id (not check bundle id) from a previously created
|
|
|
|
// HTTPTRAP check. The numeric portion of the check._cid field.
|
|
|
|
// Default: none
|
|
|
|
CirconusCheckID string `hcl:"circonus_check_id"`
|
|
|
|
// CirconusCheckForceMetricActivation will force enabling metrics, as they are encountered,
|
|
|
|
// if the metric already exists and is NOT active. If check management is enabled, the default
|
|
|
|
// behavior is to add new metrics as they are encoutered. If the metric already exists in the
|
|
|
|
// check, it will *NOT* be activated. This setting overrides that behavior.
|
|
|
|
// Default: "false"
|
|
|
|
CirconusCheckForceMetricActivation string `hcl:"circonus_check_force_metric_activation"`
|
|
|
|
// CirconusCheckInstanceID serves to uniquely identify the metrics comming from this "instance".
|
|
|
|
// It can be used to maintain metric continuity with transient or ephemeral instances as
|
|
|
|
// they move around within an infrastructure.
|
|
|
|
// Default: hostname:app
|
|
|
|
CirconusCheckInstanceID string `hcl:"circonus_check_instance_id"`
|
|
|
|
// CirconusCheckSearchTag is a special tag which, when coupled with the instance id, helps to
|
|
|
|
// narrow down the search results when neither a Submission URL or Check ID is provided.
|
|
|
|
// Default: service:app (e.g. service:consul)
|
|
|
|
CirconusCheckSearchTag string `hcl:"circonus_check_search_tag"`
|
|
|
|
// CirconusBrokerID is an explicit broker to use when creating a new check. The numeric portion
|
|
|
|
// of broker._cid. If metric management is enabled and neither a Submission URL nor Check ID
|
|
|
|
// is provided, an attempt will be made to search for an existing check using Instance ID and
|
|
|
|
// Search Tag. If one is not found, a new HTTPTRAP check will be created.
|
|
|
|
// Default: use Select Tag if provided, otherwise, a random Enterprise Broker associated
|
|
|
|
// with the specified API token or the default Circonus Broker.
|
|
|
|
// Default: none
|
|
|
|
CirconusBrokerID string `hcl:"circonus_broker_id"`
|
|
|
|
// CirconusBrokerSelectTag is a special tag which will be used to select a broker when
|
|
|
|
// a Broker ID is not provided. The best use of this is to as a hint for which broker
|
|
|
|
// should be used based on *where* this particular instance is running.
|
|
|
|
// (e.g. a specific geo location or datacenter, dc:sfo)
|
|
|
|
// Default: none
|
|
|
|
CirconusBrokerSelectTag string `hcl:"circonus_broker_select_tag"`
|
2015-07-14 22:27:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Telemetry) GoString() string {
|
|
|
|
return fmt.Sprintf("*%#v", *s)
|
|
|
|
}
|
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
// Merge merges two configurations.
|
|
|
|
func (c *Config) Merge(c2 *Config) *Config {
|
2016-07-05 20:49:15 +00:00
|
|
|
if c2 == nil {
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
result := new(Config)
|
|
|
|
for _, l := range c.Listeners {
|
|
|
|
result.Listeners = append(result.Listeners, l)
|
|
|
|
}
|
|
|
|
for _, l := range c2.Listeners {
|
|
|
|
result.Listeners = append(result.Listeners, l)
|
|
|
|
}
|
|
|
|
|
|
|
|
result.Backend = c.Backend
|
|
|
|
if c2.Backend != nil {
|
|
|
|
result.Backend = c2.Backend
|
|
|
|
}
|
|
|
|
|
2016-03-21 20:56:13 +00:00
|
|
|
result.HABackend = c.HABackend
|
|
|
|
if c2.HABackend != nil {
|
|
|
|
result.HABackend = c2.HABackend
|
|
|
|
}
|
|
|
|
|
2015-07-14 22:27:18 +00:00
|
|
|
result.Telemetry = c.Telemetry
|
|
|
|
if c2.Telemetry != nil {
|
|
|
|
result.Telemetry = c2.Telemetry
|
2015-04-15 01:44:09 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 16:55:02 +00:00
|
|
|
// merging these booleans via an OR operation
|
|
|
|
result.DisableCache = c.DisableCache
|
|
|
|
if c2.DisableCache {
|
|
|
|
result.DisableCache = c2.DisableCache
|
|
|
|
}
|
|
|
|
|
2015-07-30 13:42:49 +00:00
|
|
|
result.DisableMlock = c.DisableMlock
|
|
|
|
if c2.DisableMlock {
|
|
|
|
result.DisableMlock = c2.DisableMlock
|
|
|
|
}
|
|
|
|
|
|
|
|
// merge these integers via a MAX operation
|
2015-08-27 14:50:16 +00:00
|
|
|
result.MaxLeaseTTL = c.MaxLeaseTTL
|
|
|
|
if c2.MaxLeaseTTL > result.MaxLeaseTTL {
|
|
|
|
result.MaxLeaseTTL = c2.MaxLeaseTTL
|
2015-07-30 13:42:49 +00:00
|
|
|
}
|
|
|
|
|
2015-08-27 14:50:16 +00:00
|
|
|
result.DefaultLeaseTTL = c.DefaultLeaseTTL
|
|
|
|
if c2.DefaultLeaseTTL > result.DefaultLeaseTTL {
|
|
|
|
result.DefaultLeaseTTL = c2.DefaultLeaseTTL
|
2015-07-30 13:42:49 +00:00
|
|
|
}
|
|
|
|
|
2016-07-26 15:11:12 +00:00
|
|
|
result.ClusterName = c.ClusterName
|
|
|
|
if c2.ClusterName != "" {
|
|
|
|
result.ClusterName = c2.ClusterName
|
|
|
|
}
|
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2015-03-12 22:30:07 +00:00
|
|
|
// LoadConfig loads the configuration at the given path, regardless if
|
|
|
|
// its a file or directory.
|
|
|
|
func LoadConfig(path string) (*Config, error) {
|
|
|
|
fi, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if fi.IsDir() {
|
|
|
|
return LoadConfigDir(path)
|
|
|
|
} else {
|
|
|
|
return LoadConfigFile(path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
// LoadConfigFile loads the configuration from the given file.
|
|
|
|
func LoadConfigFile(path string) (*Config, error) {
|
|
|
|
// Read the file
|
|
|
|
d, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-03-09 23:59:44 +00:00
|
|
|
return ParseConfig(string(d))
|
|
|
|
}
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
func ParseConfig(d string) (*Config, error) {
|
2015-03-12 22:21:11 +00:00
|
|
|
// Parse!
|
2016-03-09 23:59:44 +00:00
|
|
|
obj, err := hcl.Parse(d)
|
2015-03-12 22:21:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start building the result
|
|
|
|
var result Config
|
2015-04-17 18:21:40 +00:00
|
|
|
if err := hcl.DecodeObject(&result, obj); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-08-27 14:50:16 +00:00
|
|
|
if result.MaxLeaseTTLRaw != "" {
|
|
|
|
if result.MaxLeaseTTL, err = time.ParseDuration(result.MaxLeaseTTLRaw); err != nil {
|
2015-07-30 17:21:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2015-08-27 14:50:16 +00:00
|
|
|
if result.DefaultLeaseTTLRaw != "" {
|
|
|
|
if result.DefaultLeaseTTL, err = time.ParseDuration(result.DefaultLeaseTTLRaw); err != nil {
|
2015-07-30 17:21:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
list, ok := obj.Node.(*ast.ObjectList)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("error parsing: file doesn't contain a root object")
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
2016-03-09 23:59:44 +00:00
|
|
|
|
|
|
|
valid := []string{
|
2016-06-02 16:40:25 +00:00
|
|
|
"atlas",
|
2016-03-09 23:59:44 +00:00
|
|
|
"backend",
|
|
|
|
"ha_backend",
|
|
|
|
"listener",
|
|
|
|
"disable_cache",
|
|
|
|
"disable_mlock",
|
|
|
|
"telemetry",
|
|
|
|
"default_lease_ttl",
|
|
|
|
"max_lease_ttl",
|
2016-07-26 14:01:35 +00:00
|
|
|
"cluster_name",
|
2016-03-09 23:59:44 +00:00
|
|
|
|
|
|
|
// TODO: Remove in 0.6.0
|
|
|
|
// Deprecated keys
|
|
|
|
"statsd_addr",
|
|
|
|
"statsite_addr",
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
2016-03-09 23:59:44 +00:00
|
|
|
if err := checkHCLKeys(list, valid); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Remove in 0.6.0
|
|
|
|
// Preflight checks for deprecated keys
|
|
|
|
sda := list.Filter("statsd_addr")
|
|
|
|
ssa := list.Filter("statsite_addr")
|
|
|
|
if len(sda.Items) > 0 || len(ssa.Items) > 0 {
|
|
|
|
log.Println("[WARN] The top-level keys 'statsd_addr' and 'statsite_addr' " +
|
|
|
|
"have been moved into a 'telemetry' block instead. Please update your " +
|
|
|
|
"Vault configuration as this deprecation will be removed in the next " +
|
|
|
|
"major release. Values specified in a 'telemetry' block will take " +
|
|
|
|
"precendence.")
|
|
|
|
|
|
|
|
t := struct {
|
|
|
|
StatsdAddr string `hcl:"statsd_addr"`
|
|
|
|
StatsiteAddr string `hcl:"statsite_addr"`
|
|
|
|
}{}
|
|
|
|
if err := hcl.DecodeObject(&t, list); err != nil {
|
2015-12-11 20:58:10 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-03-09 23:59:44 +00:00
|
|
|
|
|
|
|
result.Telemetry = &Telemetry{
|
|
|
|
StatsdAddr: t.StatsdAddr,
|
|
|
|
StatsiteAddr: t.StatsiteAddr,
|
|
|
|
}
|
2015-12-11 20:58:10 +00:00
|
|
|
}
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
if o := list.Filter("backend"); len(o.Items) > 0 {
|
|
|
|
if err := parseBackends(&result, o); err != nil {
|
|
|
|
return nil, fmt.Errorf("error parsing 'backend': %s", err)
|
|
|
|
}
|
|
|
|
}
|
2015-07-14 22:27:18 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
if o := list.Filter("ha_backend"); len(o.Items) > 0 {
|
|
|
|
if err := parseHABackends(&result, o); err != nil {
|
|
|
|
return nil, fmt.Errorf("error parsing 'ha_backend': %s", err)
|
2015-07-14 22:27:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
if o := list.Filter("listener"); len(o.Items) > 0 {
|
|
|
|
if err := parseListeners(&result, o); err != nil {
|
|
|
|
return nil, fmt.Errorf("error parsing 'listener': %s", err)
|
|
|
|
}
|
|
|
|
}
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
if o := list.Filter("telemetry"); len(o.Items) > 0 {
|
|
|
|
if err := parseTelemetry(&result, o); err != nil {
|
|
|
|
return nil, fmt.Errorf("error parsing 'telemetry': %s", err)
|
|
|
|
}
|
2015-07-14 22:27:18 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
return &result, nil
|
2015-07-14 22:27:18 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 22:21:11 +00:00
|
|
|
// LoadConfigDir loads all the configurations in the given directory
|
|
|
|
// in alphabetical order.
|
|
|
|
func LoadConfigDir(dir string) (*Config, error) {
|
|
|
|
f, err := os.Open(dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
fi, err := f.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !fi.IsDir() {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"configuration path must be a directory: %s",
|
|
|
|
dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
var files []string
|
|
|
|
err = nil
|
|
|
|
for err != io.EOF {
|
|
|
|
var fis []os.FileInfo
|
|
|
|
fis, err = f.Readdir(128)
|
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, fi := range fis {
|
|
|
|
// Ignore directories
|
|
|
|
if fi.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only care about files that are valid to load.
|
|
|
|
name := fi.Name()
|
|
|
|
skip := true
|
|
|
|
if strings.HasSuffix(name, ".hcl") {
|
|
|
|
skip = false
|
|
|
|
} else if strings.HasSuffix(name, ".json") {
|
|
|
|
skip = false
|
|
|
|
}
|
|
|
|
if skip || isTemporaryFile(name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
path := filepath.Join(dir, name)
|
|
|
|
files = append(files, path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var result *Config
|
|
|
|
for _, f := range files {
|
|
|
|
config, err := LoadConfigFile(f)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error loading %s: %s", f, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if result == nil {
|
|
|
|
result = config
|
|
|
|
} else {
|
|
|
|
result = result.Merge(config)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// isTemporaryFile returns true or false depending on whether the
|
|
|
|
// provided file name is a temporary file for the following editors:
|
|
|
|
// emacs or vim.
|
|
|
|
func isTemporaryFile(name string) bool {
|
|
|
|
return strings.HasSuffix(name, "~") || // vim
|
|
|
|
strings.HasPrefix(name, ".#") || // emacs
|
|
|
|
(strings.HasPrefix(name, "#") && strings.HasSuffix(name, "#")) // emacs
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
func parseBackends(result *Config, list *ast.ObjectList) error {
|
|
|
|
if len(list.Items) > 1 {
|
|
|
|
return fmt.Errorf("only one 'backend' block is permitted")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get our item
|
|
|
|
item := list.Items[0]
|
|
|
|
|
|
|
|
key := "backend"
|
|
|
|
if len(item.Keys) > 0 {
|
|
|
|
key = item.Keys[0].Token.Value().(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
var m map[string]string
|
|
|
|
if err := hcl.DecodeObject(&m, item.Val); err != nil {
|
|
|
|
return multierror.Prefix(err, fmt.Sprintf("backend.%s:", key))
|
|
|
|
}
|
|
|
|
|
2016-08-15 13:42:42 +00:00
|
|
|
// Pull out the redirect address since it's common to all backends
|
|
|
|
var redirectAddr string
|
|
|
|
if v, ok := m["redirect_addr"]; ok {
|
|
|
|
redirectAddr = v
|
|
|
|
delete(m, "redirect_addr")
|
|
|
|
} else if v, ok := m["advertise_addr"]; ok {
|
|
|
|
redirectAddr = v
|
2016-03-09 23:59:44 +00:00
|
|
|
delete(m, "advertise_addr")
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-08-15 13:42:42 +00:00
|
|
|
// Pull out the cluster address since it's common to all backends
|
|
|
|
var clusterAddr string
|
|
|
|
if v, ok := m["cluster_addr"]; ok {
|
|
|
|
clusterAddr = v
|
|
|
|
delete(m, "cluster_addr")
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Change this in the future
|
|
|
|
disableClustering := true
|
|
|
|
var err error
|
|
|
|
if v, ok := m["disable_clustering"]; ok {
|
|
|
|
disableClustering, err = strconv.ParseBool(v)
|
|
|
|
if err != nil {
|
|
|
|
return multierror.Prefix(err, fmt.Sprintf("backend.%s:", key))
|
|
|
|
}
|
|
|
|
delete(m, "disable_clustering")
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
result.Backend = &Backend{
|
2016-08-15 13:42:42 +00:00
|
|
|
RedirectAddr: redirectAddr,
|
|
|
|
ClusterAddr: clusterAddr,
|
|
|
|
DisableClustering: disableClustering,
|
|
|
|
Type: strings.ToLower(key),
|
|
|
|
Config: m,
|
2016-03-09 23:59:44 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseHABackends(result *Config, list *ast.ObjectList) error {
|
|
|
|
if len(list.Items) > 1 {
|
|
|
|
return fmt.Errorf("only one 'ha_backend' block is permitted")
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
// Get our item
|
|
|
|
item := list.Items[0]
|
|
|
|
|
|
|
|
key := "backend"
|
|
|
|
if len(item.Keys) > 0 {
|
|
|
|
key = item.Keys[0].Token.Value().(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
var m map[string]string
|
|
|
|
if err := hcl.DecodeObject(&m, item.Val); err != nil {
|
|
|
|
return multierror.Prefix(err, fmt.Sprintf("ha_backend.%s:", key))
|
|
|
|
}
|
|
|
|
|
2016-08-15 13:42:42 +00:00
|
|
|
// Pull out the redirect address since it's common to all backends
|
|
|
|
var redirectAddr string
|
|
|
|
if v, ok := m["redirect_addr"]; ok {
|
|
|
|
redirectAddr = v
|
|
|
|
delete(m, "redirect_addr")
|
|
|
|
} else if v, ok := m["advertise_addr"]; ok {
|
|
|
|
redirectAddr = v
|
2016-03-09 23:59:44 +00:00
|
|
|
delete(m, "advertise_addr")
|
|
|
|
}
|
|
|
|
|
2016-08-15 13:42:42 +00:00
|
|
|
// Pull out the cluster address since it's common to all backends
|
|
|
|
var clusterAddr string
|
|
|
|
if v, ok := m["cluster_addr"]; ok {
|
|
|
|
clusterAddr = v
|
|
|
|
delete(m, "cluster_addr")
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Change this in the future
|
|
|
|
disableClustering := true
|
|
|
|
var err error
|
|
|
|
if v, ok := m["disable_clustering"]; ok {
|
|
|
|
disableClustering, err = strconv.ParseBool(v)
|
|
|
|
if err != nil {
|
|
|
|
return multierror.Prefix(err, fmt.Sprintf("backend.%s:", key))
|
|
|
|
}
|
|
|
|
delete(m, "disable_clustering")
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
result.HABackend = &Backend{
|
2016-08-15 13:42:42 +00:00
|
|
|
RedirectAddr: redirectAddr,
|
|
|
|
ClusterAddr: clusterAddr,
|
|
|
|
DisableClustering: disableClustering,
|
|
|
|
Type: strings.ToLower(key),
|
|
|
|
Config: m,
|
2016-03-09 23:59:44 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseListeners(result *Config, list *ast.ObjectList) error {
|
2016-06-02 16:40:25 +00:00
|
|
|
var foundAtlas bool
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
listeners := make([]*Listener, 0, len(list.Items))
|
|
|
|
for _, item := range list.Items {
|
|
|
|
key := "listener"
|
|
|
|
if len(item.Keys) > 0 {
|
|
|
|
key = item.Keys[0].Token.Value().(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
valid := []string{
|
|
|
|
"address",
|
2016-08-15 13:42:42 +00:00
|
|
|
"cluster_address",
|
2016-06-02 16:40:25 +00:00
|
|
|
"endpoint",
|
|
|
|
"infrastructure",
|
2016-06-02 22:19:51 +00:00
|
|
|
"node_id",
|
2016-03-09 23:59:44 +00:00
|
|
|
"tls_disable",
|
|
|
|
"tls_cert_file",
|
|
|
|
"tls_key_file",
|
|
|
|
"tls_min_version",
|
2016-06-02 16:40:25 +00:00
|
|
|
"token",
|
2016-03-09 23:59:44 +00:00
|
|
|
}
|
|
|
|
if err := checkHCLKeys(item.Val, valid); err != nil {
|
|
|
|
return multierror.Prefix(err, fmt.Sprintf("listeners.%s:", key))
|
|
|
|
}
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
var m map[string]string
|
|
|
|
if err := hcl.DecodeObject(&m, item.Val); err != nil {
|
|
|
|
return multierror.Prefix(err, fmt.Sprintf("listeners.%s:", key))
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-06-02 16:40:25 +00:00
|
|
|
lnType := strings.ToLower(key)
|
|
|
|
|
|
|
|
if lnType == "atlas" {
|
|
|
|
if foundAtlas {
|
|
|
|
return multierror.Prefix(fmt.Errorf("only one listener of type 'atlas' is permitted"), fmt.Sprintf("listeners.%s", key))
|
2016-06-08 17:55:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foundAtlas = true
|
|
|
|
if m["token"] == "" {
|
|
|
|
return multierror.Prefix(fmt.Errorf("'token' must be specified for an Atlas listener"), fmt.Sprintf("listeners.%s", key))
|
|
|
|
}
|
|
|
|
if m["infrastructure"] == "" {
|
|
|
|
return multierror.Prefix(fmt.Errorf("'infrastructure' must be specified for an Atlas listener"), fmt.Sprintf("listeners.%s", key))
|
|
|
|
}
|
|
|
|
if m["node_id"] == "" {
|
|
|
|
return multierror.Prefix(fmt.Errorf("'node_id' must be specified for an Atlas listener"), fmt.Sprintf("listeners.%s", key))
|
2016-06-02 16:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
listeners = append(listeners, &Listener{
|
2016-06-02 16:40:25 +00:00
|
|
|
Type: lnType,
|
2016-03-09 23:59:44 +00:00
|
|
|
Config: m,
|
2015-03-12 22:21:11 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
result.Listeners = listeners
|
|
|
|
return nil
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
func parseTelemetry(result *Config, list *ast.ObjectList) error {
|
|
|
|
if len(list.Items) > 1 {
|
|
|
|
return fmt.Errorf("only one 'telemetry' block is permitted")
|
|
|
|
}
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
// Get our one item
|
|
|
|
item := list.Items[0]
|
|
|
|
|
|
|
|
// Check for invalid keys
|
|
|
|
valid := []string{
|
|
|
|
"statsite_address",
|
|
|
|
"statsd_address",
|
|
|
|
"disable_hostname",
|
2016-07-22 19:49:23 +00:00
|
|
|
"circonus_api_token",
|
|
|
|
"circonus_api_app",
|
|
|
|
"circonus_api_url",
|
|
|
|
"circonus_submission_interval",
|
|
|
|
"circonus_submission_url",
|
|
|
|
"circonus_check_id",
|
|
|
|
"circonus_check_force_metric_activation",
|
|
|
|
"circonus_check_instance_id",
|
|
|
|
"circonus_check_search_tag",
|
|
|
|
"circonus_broker_id",
|
|
|
|
"circonus_broker_select_tag",
|
2016-03-09 23:59:44 +00:00
|
|
|
}
|
|
|
|
if err := checkHCLKeys(item.Val, valid); err != nil {
|
|
|
|
return multierror.Prefix(err, "telemetry:")
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
var t Telemetry
|
|
|
|
if err := hcl.DecodeObject(&t, item.Val); err != nil {
|
|
|
|
return multierror.Prefix(err, "telemetry:")
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
if result.Telemetry == nil {
|
|
|
|
result.Telemetry = &Telemetry{}
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
if err := hcl.DecodeObject(&result.Telemetry, item.Val); err != nil {
|
|
|
|
return multierror.Prefix(err, "telemetry:")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-03-12 22:21:11 +00:00
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
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)
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +00:00
|
|
|
validMap := make(map[string]struct{}, len(valid))
|
|
|
|
for _, v := range valid {
|
|
|
|
validMap[v] = struct{}{}
|
2015-04-17 18:25:20 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:59:44 +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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
2015-03-12 22:21:11 +00:00
|
|
|
}
|