2017-10-11 13:42:45 +00:00
|
|
|
package keyring
|
2014-09-06 18:12:45 +00:00
|
|
|
|
|
|
|
import (
|
2017-10-11 13:42:45 +00:00
|
|
|
"flag"
|
2014-09-06 18:12:45 +00:00
|
|
|
"fmt"
|
2014-09-09 01:09:51 +00:00
|
|
|
|
pkg refactor
command/agent/* -> agent/*
command/consul/* -> agent/consul/*
command/agent/command{,_test}.go -> command/agent{,_test}.go
command/base/command.go -> command/base.go
command/base/* -> command/*
commands.go -> command/commands.go
The script which did the refactor is:
(
cd $GOPATH/src/github.com/hashicorp/consul
git mv command/agent/command.go command/agent.go
git mv command/agent/command_test.go command/agent_test.go
git mv command/agent/flag_slice_value{,_test}.go command/
git mv command/agent .
git mv command/base/command.go command/base.go
git mv command/base/config_util{,_test}.go command/
git mv commands.go command/
git mv consul agent
rmdir command/base/
gsed -i -e 's|package agent|package command|' command/agent{,_test}.go
gsed -i -e 's|package agent|package command|' command/flag_slice_value{,_test}.go
gsed -i -e 's|package base|package command|' command/base.go command/config_util{,_test}.go
gsed -i -e 's|package main|package command|' command/commands.go
gsed -i -e 's|base.Command|BaseCommand|' command/commands.go
gsed -i -e 's|agent.Command|AgentCommand|' command/commands.go
gsed -i -e 's|\tCommand:|\tBaseCommand:|' command/commands.go
gsed -i -e 's|base\.||' command/commands.go
gsed -i -e 's|command\.||' command/commands.go
gsed -i -e 's|command|c|' main.go
gsed -i -e 's|range Commands|range command.Commands|' main.go
gsed -i -e 's|Commands: Commands|Commands: command.Commands|' main.go
gsed -i -e 's|base\.BoolValue|BoolValue|' command/operator_autopilot_set.go
gsed -i -e 's|base\.DurationValue|DurationValue|' command/operator_autopilot_set.go
gsed -i -e 's|base\.StringValue|StringValue|' command/operator_autopilot_set.go
gsed -i -e 's|base\.UintValue|UintValue|' command/operator_autopilot_set.go
gsed -i -e 's|\bCommand\b|BaseCommand|' command/base.go
gsed -i -e 's|BaseCommand Options|Command Options|' command/base.go
gsed -i -e 's|base.Command|BaseCommand|' command/*.go
gsed -i -e 's|c\.Command|c.BaseCommand|g' command/*.go
gsed -i -e 's|\tCommand:|\tBaseCommand:|' command/*_test.go
gsed -i -e 's|base\.||' command/*_test.go
gsed -i -e 's|\bCommand\b|AgentCommand|' command/agent{,_test}.go
gsed -i -e 's|cmd.AgentCommand|cmd.BaseCommand|' command/agent.go
gsed -i -e 's|cli.AgentCommand = new(Command)|cli.Command = new(AgentCommand)|' command/agent_test.go
gsed -i -e 's|exec.AgentCommand|exec.Command|' command/agent_test.go
gsed -i -e 's|exec.BaseCommand|exec.Command|' command/agent_test.go
gsed -i -e 's|NewTestAgent|agent.NewTestAgent|' command/agent_test.go
gsed -i -e 's|= TestConfig|= agent.TestConfig|' command/agent_test.go
gsed -i -e 's|: RetryJoin|: agent.RetryJoin|' command/agent_test.go
gsed -i -e 's|\.\./\.\./|../|' command/config_util_test.go
gsed -i -e 's|\bverifyUniqueListeners|VerifyUniqueListeners|' agent/config{,_test}.go command/agent.go
gsed -i -e 's|\bserfLANKeyring\b|SerfLANKeyring|g' agent/{agent,keyring,testagent}.go command/agent.go
gsed -i -e 's|\bserfWANKeyring\b|SerfWANKeyring|g' agent/{agent,keyring,testagent}.go command/agent.go
gsed -i -e 's|\bNewAgent\b|agent.New|g' command/agent{,_test}.go
gsed -i -e 's|\bNewAgent|New|' agent/{acl_test,agent,testagent}.go
gsed -i -e 's|\bAgent\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bBool\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bDefaultConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bDevConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bMergeConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bReadConfigPaths\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bParseMetaPair\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bSerfLANKeyring\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bSerfWANKeyring\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|circonus\.agent|circonus|g' command/agent{,_test}.go
gsed -i -e 's|logger\.agent|logger|g' command/agent{,_test}.go
gsed -i -e 's|metrics\.agent|metrics|g' command/agent{,_test}.go
gsed -i -e 's|// agent.Agent|// agent|' command/agent{,_test}.go
gsed -i -e 's|a\.agent\.Config|a.Config|' command/agent{,_test}.go
gsed -i -e 's|agent\.AppendSliceValue|AppendSliceValue|' command/{configtest,validate}.go
gsed -i -e 's|consul/consul|agent/consul|' GNUmakefile
gsed -i -e 's|\.\./test|../../test|' agent/consul/server_test.go
# fix imports
f=$(grep -rl 'github.com/hashicorp/consul/command/agent' * | grep '\.go')
gsed -i -e 's|github.com/hashicorp/consul/command/agent|github.com/hashicorp/consul/agent|' $f
goimports -w $f
f=$(grep -rl 'github.com/hashicorp/consul/consul' * | grep '\.go')
gsed -i -e 's|github.com/hashicorp/consul/consul|github.com/hashicorp/consul/agent/consul|' $f
goimports -w $f
goimports -w command/*.go main.go
)
2017-06-09 22:28:28 +00:00
|
|
|
"github.com/hashicorp/consul/agent"
|
2017-02-08 23:25:47 +00:00
|
|
|
consulapi "github.com/hashicorp/consul/api"
|
2017-10-11 13:42:45 +00:00
|
|
|
"github.com/hashicorp/consul/command/flags"
|
2014-09-09 01:09:51 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2014-09-06 18:12:45 +00:00
|
|
|
)
|
|
|
|
|
2017-10-11 13:42:45 +00:00
|
|
|
func New(ui cli.Ui) *cmd {
|
|
|
|
c := &cmd{UI: ui}
|
2017-10-11 22:02:31 +00:00
|
|
|
c.init()
|
2017-10-11 13:42:45 +00:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
type cmd struct {
|
|
|
|
UI cli.Ui
|
|
|
|
flags *flag.FlagSet
|
|
|
|
http *flags.HTTPFlags
|
2017-10-17 13:44:20 +00:00
|
|
|
help string
|
2014-09-06 18:12:45 +00:00
|
|
|
|
2017-10-11 12:51:18 +00:00
|
|
|
// flags
|
|
|
|
installKey string
|
|
|
|
useKey string
|
|
|
|
removeKey string
|
|
|
|
listKeys bool
|
|
|
|
relay int
|
2019-08-12 18:11:11 +00:00
|
|
|
local bool
|
2017-10-11 12:51:18 +00:00
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
|
2017-10-11 22:02:31 +00:00
|
|
|
func (c *cmd) init() {
|
2017-10-11 13:42:45 +00:00
|
|
|
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
c.flags.StringVar(&c.installKey, "install", "",
|
2017-02-08 23:25:47 +00:00
|
|
|
"Install a new encryption key. This will broadcast the new key to "+
|
|
|
|
"all members in the cluster.")
|
2017-10-11 13:42:45 +00:00
|
|
|
c.flags.StringVar(&c.useKey, "use", "",
|
2017-02-08 23:25:47 +00:00
|
|
|
"Change the primary encryption key, which is used to encrypt "+
|
|
|
|
"messages. The key must already be installed before this operation "+
|
|
|
|
"can succeed.")
|
2017-10-11 13:42:45 +00:00
|
|
|
c.flags.StringVar(&c.removeKey, "remove", "",
|
2017-02-08 23:25:47 +00:00
|
|
|
"Remove the given key from the cluster. This operation may only be "+
|
|
|
|
"performed on keys which are not currently the primary key.")
|
2017-10-11 13:42:45 +00:00
|
|
|
c.flags.BoolVar(&c.listKeys, "list", false,
|
2017-02-08 23:25:47 +00:00
|
|
|
"List all keys currently in use within the cluster.")
|
2017-10-11 13:42:45 +00:00
|
|
|
c.flags.IntVar(&c.relay, "relay-factor", 0,
|
2017-02-10 01:49:17 +00:00
|
|
|
"Setting this to a non-zero value will cause nodes to relay their response "+
|
|
|
|
"to the operation through this many randomly-chosen other nodes in the "+
|
|
|
|
"cluster. The maximum allowed value is 5.")
|
2019-08-12 18:11:11 +00:00
|
|
|
c.flags.BoolVar(&c.local, "local-only", false,
|
|
|
|
"Setting this to true will force the keyring query to only hit local servers "+
|
|
|
|
"(no WAN traffic). This flag can only be set for list queries.")
|
2017-10-11 13:42:45 +00:00
|
|
|
|
|
|
|
c.http = &flags.HTTPFlags{}
|
|
|
|
flags.Merge(c.flags, c.http.ClientFlags())
|
2017-10-17 22:00:01 +00:00
|
|
|
c.help = flags.Usage(help, c.flags)
|
2017-10-11 12:51:18 +00:00
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
|
2017-10-11 13:42:45 +00:00
|
|
|
func (c *cmd) Run(args []string) int {
|
|
|
|
if err := c.flags.Parse(args); err != nil {
|
2014-09-06 18:12:45 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI = &cli.PrefixedUi{
|
2014-09-09 05:27:17 +00:00
|
|
|
OutputPrefix: "",
|
|
|
|
InfoPrefix: "==> ",
|
|
|
|
ErrorPrefix: "",
|
2017-04-21 00:02:42 +00:00
|
|
|
Ui: c.UI,
|
2014-09-09 05:27:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-06 18:12:45 +00:00
|
|
|
// Only accept a single argument
|
2017-10-11 12:51:18 +00:00
|
|
|
found := c.listKeys
|
|
|
|
for _, arg := range []string{c.installKey, c.useKey, c.removeKey} {
|
2014-09-06 18:12:45 +00:00
|
|
|
if found && len(arg) > 0 {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error("Only a single action is allowed")
|
2014-09-06 18:12:45 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
found = found || len(arg) > 0
|
|
|
|
}
|
|
|
|
|
2014-09-09 04:45:15 +00:00
|
|
|
// Fail fast if no actionable args were passed
|
|
|
|
if !found {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(c.Help())
|
2014-09-09 04:45:15 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-02 02:42:41 +00:00
|
|
|
// Validate the relay factor
|
2017-10-11 12:51:18 +00:00
|
|
|
relayFactor, err := agent.ParseRelayFactor(c.relay)
|
2017-02-02 02:42:41 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error parsing relay factor: %s", err))
|
2017-02-02 02:42:41 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2019-08-12 18:11:11 +00:00
|
|
|
// Validate local-only
|
|
|
|
err = agent.ValidateLocalOnly(c.local, c.listKeys)
|
|
|
|
if err != nil {
|
|
|
|
c.UI.Error(fmt.Sprintf("Error validating local-only: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-09-13 00:18:10 +00:00
|
|
|
// All other operations will require a client connection
|
2017-10-11 13:42:45 +00:00
|
|
|
client, err := c.http.APIClient()
|
2014-09-09 04:45:15 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
|
2014-09-09 04:45:15 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.listKeys {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info("Gathering installed encryption keys...")
|
2019-08-12 18:11:11 +00:00
|
|
|
responses, err := client.Operator().KeyringList(&consulapi.QueryOptions{RelayFactor: relayFactor, LocalOnly: c.local})
|
2014-09-28 20:33:37 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("error: %s", err))
|
2014-09-28 20:33:37 +00:00
|
|
|
return 1
|
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
c.handleList(responses)
|
2014-09-28 20:33:37 +00:00
|
|
|
return 0
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 23:25:47 +00:00
|
|
|
opts := &consulapi.WriteOptions{RelayFactor: relayFactor}
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.installKey != "" {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info("Installing new gossip encryption key...")
|
2017-10-11 12:51:18 +00:00
|
|
|
err := client.Operator().KeyringInstall(c.installKey, opts)
|
2014-09-28 19:35:51 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("error: %s", err))
|
2014-09-28 19:35:51 +00:00
|
|
|
return 1
|
2014-09-09 06:25:38 +00:00
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
return 0
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.useKey != "" {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info("Changing primary gossip encryption key...")
|
2017-10-11 12:51:18 +00:00
|
|
|
err := client.Operator().KeyringUse(c.useKey, opts)
|
2014-09-28 19:35:51 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("error: %s", err))
|
2014-09-28 19:35:51 +00:00
|
|
|
return 1
|
2014-09-09 06:55:02 +00:00
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
return 0
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.removeKey != "" {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info("Removing gossip encryption key...")
|
2017-10-11 12:51:18 +00:00
|
|
|
err := client.Operator().KeyringRemove(c.removeKey, opts)
|
2014-09-28 19:35:51 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("error: %s", err))
|
2014-09-28 19:35:51 +00:00
|
|
|
return 1
|
2014-09-09 07:08:38 +00:00
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
return 0
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 04:45:15 +00:00
|
|
|
// Should never make it here
|
|
|
|
return 0
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 13:42:45 +00:00
|
|
|
func (c *cmd) handleList(responses []*consulapi.KeyringResponse) {
|
2017-02-08 23:25:47 +00:00
|
|
|
for _, response := range responses {
|
|
|
|
pool := response.Datacenter + " (LAN)"
|
2017-09-07 19:17:39 +00:00
|
|
|
if response.Segment != "" {
|
|
|
|
pool += fmt.Sprintf(" [%s]", response.Segment)
|
|
|
|
}
|
2017-02-08 23:25:47 +00:00
|
|
|
if response.WAN {
|
|
|
|
pool = "WAN"
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Output("")
|
|
|
|
c.UI.Output(pool + ":")
|
2019-01-22 20:08:50 +00:00
|
|
|
|
|
|
|
for from, msg := range response.Messages {
|
|
|
|
c.UI.Output(fmt.Sprintf(" ===> %s: %s", from, msg))
|
|
|
|
}
|
|
|
|
|
2017-02-08 23:25:47 +00:00
|
|
|
for key, num := range response.Keys {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Output(fmt.Sprintf(" %s [%d/%d]", key, num, response.NumNodes))
|
2014-09-28 19:35:51 +00:00
|
|
|
}
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 13:42:45 +00:00
|
|
|
func (c *cmd) Synopsis() string {
|
2017-10-17 13:44:20 +00:00
|
|
|
return synopsis
|
2017-10-11 13:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Help() string {
|
2017-10-17 13:44:20 +00:00
|
|
|
return c.help
|
2017-10-11 22:02:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
const synopsis = "Manages gossip layer encryption keys"
|
|
|
|
const help = `
|
|
|
|
Usage: consul keyring [options]
|
2014-09-06 18:12:45 +00:00
|
|
|
|
|
|
|
Manages encryption keys used for gossip messages. Gossip encryption is
|
|
|
|
optional. When enabled, this command may be used to examine active encryption
|
|
|
|
keys in the cluster, add new keys, and remove old ones. When combined, this
|
|
|
|
functionality provides the ability to perform key rotation cluster-wide,
|
|
|
|
without disrupting the cluster.
|
|
|
|
|
2014-10-05 20:43:56 +00:00
|
|
|
All operations performed by this command can only be run against server nodes,
|
|
|
|
and affect both the LAN and WAN keyrings in lock-step.
|
|
|
|
|
|
|
|
All variations of the keyring command return 0 if all nodes reply and there
|
|
|
|
are no errors. If any node fails to reply or reports failure, the exit code
|
2017-10-17 13:44:20 +00:00
|
|
|
will be 1.
|
|
|
|
`
|