2014-09-06 18:12:45 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2014-09-13 00:18:10 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
2014-09-06 18:12:45 +00:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
2014-09-13 00:18:10 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2014-09-06 18:12:45 +00:00
|
|
|
"strings"
|
2014-09-09 01:09:51 +00:00
|
|
|
|
2014-09-13 00:18:10 +00:00
|
|
|
"github.com/hashicorp/consul/command/agent"
|
2014-09-09 01:09:51 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2014-09-09 03:09:35 +00:00
|
|
|
"github.com/ryanuber/columnize"
|
2014-09-06 18:12:45 +00:00
|
|
|
)
|
|
|
|
|
2014-09-28 19:35:51 +00:00
|
|
|
const (
|
|
|
|
installKeyCommand = "install"
|
|
|
|
useKeyCommand = "use"
|
|
|
|
removeKeyCommand = "remove"
|
|
|
|
)
|
|
|
|
|
2014-09-13 03:08:54 +00:00
|
|
|
// KeyringCommand is a Command implementation that handles querying, installing,
|
2014-09-06 18:12:45 +00:00
|
|
|
// and removing gossip encryption keys from a keyring.
|
2014-09-13 03:08:54 +00:00
|
|
|
type KeyringCommand struct {
|
2014-09-06 18:12:45 +00:00
|
|
|
Ui cli.Ui
|
|
|
|
}
|
|
|
|
|
2014-09-13 03:08:54 +00:00
|
|
|
func (c *KeyringCommand) Run(args []string) int {
|
2014-09-13 00:18:10 +00:00
|
|
|
var installKey, useKey, removeKey, init, dataDir string
|
2014-09-21 18:52:28 +00:00
|
|
|
var listKeys, wan bool
|
2014-09-06 18:12:45 +00:00
|
|
|
|
|
|
|
cmdFlags := flag.NewFlagSet("keys", flag.ContinueOnError)
|
|
|
|
cmdFlags.Usage = func() { c.Ui.Output(c.Help()) }
|
|
|
|
|
|
|
|
cmdFlags.StringVar(&installKey, "install", "", "install key")
|
|
|
|
cmdFlags.StringVar(&useKey, "use", "", "use key")
|
|
|
|
cmdFlags.StringVar(&removeKey, "remove", "", "remove key")
|
|
|
|
cmdFlags.BoolVar(&listKeys, "list", false, "list keys")
|
2014-09-13 00:18:10 +00:00
|
|
|
cmdFlags.StringVar(&init, "init", "", "initialize keyring")
|
|
|
|
cmdFlags.StringVar(&dataDir, "data-dir", "", "data directory")
|
2014-09-21 18:52:28 +00:00
|
|
|
cmdFlags.BoolVar(&wan, "wan", false, "operate on wan keyring")
|
2014-09-06 18:12:45 +00:00
|
|
|
|
|
|
|
rpcAddr := RPCAddrFlag(cmdFlags)
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-09-09 05:27:17 +00:00
|
|
|
c.Ui = &cli.PrefixedUi{
|
|
|
|
OutputPrefix: "",
|
|
|
|
InfoPrefix: "==> ",
|
|
|
|
ErrorPrefix: "",
|
|
|
|
Ui: c.Ui,
|
|
|
|
}
|
|
|
|
|
2014-09-06 18:12:45 +00:00
|
|
|
// Only accept a single argument
|
|
|
|
found := listKeys
|
2014-09-13 00:18:10 +00:00
|
|
|
for _, arg := range []string{installKey, useKey, removeKey, init} {
|
2014-09-06 18:12:45 +00:00
|
|
|
if found && len(arg) > 0 {
|
2014-09-13 00:18:10 +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 {
|
|
|
|
c.Ui.Error(c.Help())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-09-13 00:18:10 +00:00
|
|
|
if init != "" {
|
|
|
|
if dataDir == "" {
|
|
|
|
c.Ui.Error("Must provide -data-dir")
|
|
|
|
return 1
|
|
|
|
}
|
2014-09-13 18:24:17 +00:00
|
|
|
|
|
|
|
fileLAN := filepath.Join(dataDir, agent.SerfLANKeyring)
|
2014-09-18 06:28:39 +00:00
|
|
|
if err := initKeyring(fileLAN, init); err != nil {
|
2014-09-13 18:24:17 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
fileWAN := filepath.Join(dataDir, agent.SerfWANKeyring)
|
2014-09-18 06:28:39 +00:00
|
|
|
if err := initKeyring(fileWAN, init); err != nil {
|
2014-09-13 00:18:10 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// All other operations will require a client connection
|
2014-09-09 04:45:15 +00:00
|
|
|
client, err := RPCClient(*rpcAddr)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
defer client.Close()
|
|
|
|
|
2014-09-13 18:24:17 +00:00
|
|
|
// For all key-related operations, we must be querying a server node. It is
|
|
|
|
// probably better to enforce this even for LAN pool changes, because other-
|
|
|
|
// wise, the same exact command syntax will have different results depending
|
|
|
|
// on where it was run.
|
2014-09-13 01:13:49 +00:00
|
|
|
s, err := client.Stats()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if s["consul"]["server"] != "true" {
|
|
|
|
c.Ui.Error("Error: Key modification can only be handled by a server")
|
|
|
|
return 1
|
|
|
|
}
|
2014-09-09 02:38:30 +00:00
|
|
|
|
2014-09-13 01:13:49 +00:00
|
|
|
if listKeys {
|
2014-09-24 23:39:14 +00:00
|
|
|
c.Ui.Info("Asking all members for installed keys...")
|
2014-09-28 20:33:37 +00:00
|
|
|
r, err := client.ListKeys()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("error: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if rval := c.handleResponse(r.Info, r.Messages, r.Keys); rval != 0 {
|
|
|
|
return rval
|
|
|
|
}
|
|
|
|
c.handleList(r.Info, r.Messages, r.Keys)
|
|
|
|
return 0
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if installKey != "" {
|
2014-09-24 23:39:14 +00:00
|
|
|
c.Ui.Info("Installing new gossip encryption key...")
|
2014-09-28 19:35:51 +00:00
|
|
|
r, err := client.InstallKey(installKey)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("error: %s", err))
|
|
|
|
return 1
|
2014-09-09 06:25:38 +00:00
|
|
|
}
|
2014-09-28 20:33:37 +00:00
|
|
|
return c.handleResponse(r.Info, r.Messages, r.Keys)
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if useKey != "" {
|
2014-09-24 23:39:14 +00:00
|
|
|
c.Ui.Info("Changing primary gossip encryption key...")
|
2014-09-28 19:35:51 +00:00
|
|
|
r, err := client.UseKey(useKey)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("error: %s", err))
|
|
|
|
return 1
|
2014-09-09 06:55:02 +00:00
|
|
|
}
|
2014-09-28 20:33:37 +00:00
|
|
|
return c.handleResponse(r.Info, r.Messages, r.Keys)
|
2014-09-06 18:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if removeKey != "" {
|
2014-09-24 23:39:14 +00:00
|
|
|
c.Ui.Info("Removing gossip encryption key...")
|
2014-09-28 19:35:51 +00:00
|
|
|
r, err := client.RemoveKey(removeKey)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("error: %s", err))
|
|
|
|
return 1
|
2014-09-09 07:08:38 +00:00
|
|
|
}
|
2014-09-28 20:33:37 +00:00
|
|
|
return c.handleResponse(r.Info, r.Messages, r.Keys)
|
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
|
|
|
}
|
|
|
|
|
2014-09-28 19:35:51 +00:00
|
|
|
func (c *KeyringCommand) handleResponse(
|
|
|
|
info []agent.KeyringInfo,
|
|
|
|
messages []agent.KeyringMessage,
|
2014-09-28 20:33:37 +00:00
|
|
|
keys []agent.KeyringEntry) int {
|
2014-09-13 01:13:49 +00:00
|
|
|
|
2014-09-28 19:35:51 +00:00
|
|
|
var rval int
|
2014-09-13 01:13:49 +00:00
|
|
|
|
2014-09-28 19:35:51 +00:00
|
|
|
for _, i := range info {
|
|
|
|
if i.Error != "" {
|
|
|
|
pool := i.Pool
|
|
|
|
if pool != "WAN" {
|
|
|
|
pool = i.Datacenter + " (LAN)"
|
|
|
|
}
|
2014-09-13 01:13:49 +00:00
|
|
|
|
2014-09-28 19:35:51 +00:00
|
|
|
c.Ui.Error("")
|
|
|
|
c.Ui.Error(fmt.Sprintf("%s error: %s", pool, i.Error))
|
|
|
|
|
|
|
|
var errors []string
|
|
|
|
for _, msg := range messages {
|
|
|
|
if msg.Datacenter != i.Datacenter || msg.Pool != i.Pool {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
errors = append(errors, fmt.Sprintf(
|
|
|
|
"failed: %s | %s",
|
|
|
|
msg.Node,
|
|
|
|
msg.Message))
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
2014-09-28 19:35:51 +00:00
|
|
|
c.Ui.Error(columnize.SimpleFormat(errors))
|
|
|
|
rval = 1
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-28 20:33:37 +00:00
|
|
|
if rval == 0 {
|
|
|
|
c.Ui.Info("Done!")
|
|
|
|
}
|
|
|
|
|
2014-09-28 19:35:51 +00:00
|
|
|
return rval
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 20:33:37 +00:00
|
|
|
func (c *KeyringCommand) handleList(
|
|
|
|
info []agent.KeyringInfo,
|
|
|
|
messages []agent.KeyringMessage,
|
|
|
|
keys []agent.KeyringEntry) {
|
|
|
|
|
|
|
|
installed := make(map[string]map[string][]int)
|
|
|
|
for _, key := range keys {
|
|
|
|
var nodes int
|
|
|
|
for _, i := range info {
|
|
|
|
if i.Datacenter == key.Datacenter && i.Pool == key.Pool {
|
|
|
|
nodes = i.NumNodes
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-28 19:35:51 +00:00
|
|
|
|
2014-09-28 20:33:37 +00:00
|
|
|
pool := key.Pool
|
|
|
|
if pool != "WAN" {
|
|
|
|
pool = key.Datacenter + " (LAN)"
|
2014-09-28 19:35:51 +00:00
|
|
|
}
|
2014-09-28 20:33:37 +00:00
|
|
|
|
|
|
|
if _, ok := installed[pool]; !ok {
|
|
|
|
installed[pool] = map[string][]int{key.Key: []int{key.Count, nodes}}
|
|
|
|
} else {
|
|
|
|
installed[pool][key.Key] = []int{key.Count, nodes}
|
2014-09-28 19:35:51 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-28 20:33:37 +00:00
|
|
|
for pool, keys := range installed {
|
|
|
|
c.Ui.Output("")
|
|
|
|
c.Ui.Output(pool + ":")
|
|
|
|
var out []string
|
|
|
|
for key, num := range keys {
|
|
|
|
out = append(out, fmt.Sprintf(
|
|
|
|
"%s | [%d/%d]",
|
|
|
|
key, num[0], num[1]))
|
2014-09-28 19:35:51 +00:00
|
|
|
}
|
2014-09-28 20:33:37 +00:00
|
|
|
c.Ui.Output(columnize.SimpleFormat(out))
|
2014-09-13 01:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-18 06:28:39 +00:00
|
|
|
// initKeyring will create a keyring file at a given path.
|
|
|
|
func initKeyring(path, key string) error {
|
2014-09-13 01:13:49 +00:00
|
|
|
if _, err := base64.StdEncoding.DecodeString(key); err != nil {
|
|
|
|
return fmt.Errorf("Invalid key: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keys := []string{key}
|
2014-09-18 06:28:39 +00:00
|
|
|
keyringBytes, err := json.Marshal(keys)
|
2014-09-13 01:13:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-09-13 00:18:10 +00:00
|
|
|
if err := os.MkdirAll(filepath.Dir(path), 0700); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := os.Stat(path); err == nil {
|
|
|
|
return fmt.Errorf("File already exists: %s", path)
|
|
|
|
}
|
|
|
|
|
|
|
|
fh, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0600)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer fh.Close()
|
|
|
|
|
|
|
|
if _, err := fh.Write(keyringBytes); err != nil {
|
|
|
|
os.Remove(path)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-09-13 03:08:54 +00:00
|
|
|
func (c *KeyringCommand) Help() string {
|
2014-09-06 18:12:45 +00:00
|
|
|
helpText := `
|
2014-09-13 03:08:54 +00:00
|
|
|
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-09-21 18:52:28 +00:00
|
|
|
With the exception of the -init argument, all operations performed by this
|
|
|
|
command can only be run against server nodes. All operations default to the
|
|
|
|
LAN gossip pool.
|
2014-09-13 03:08:54 +00:00
|
|
|
|
2014-09-06 18:12:45 +00:00
|
|
|
Options:
|
|
|
|
|
|
|
|
-install=<key> Install a new encryption key. This will broadcast
|
|
|
|
the new key to all members in the cluster.
|
|
|
|
-use=<key> Change the primary encryption key, which is used to
|
|
|
|
encrypt messages. The key must already be installed
|
|
|
|
before this operation can succeed.
|
|
|
|
-remove=<key> Remove the given key from the cluster. This
|
|
|
|
operation may only be performed on keys which are
|
|
|
|
not currently the primary key.
|
|
|
|
-list List all keys currently in use within the cluster.
|
2014-09-13 18:24:17 +00:00
|
|
|
-init=<key> Create the initial keyring files for Consul to use
|
2014-09-13 03:08:54 +00:00
|
|
|
containing the provided key. The -data-dir argument
|
|
|
|
is required with this option.
|
2014-09-21 18:52:28 +00:00
|
|
|
-wan Operate on the WAN keyring instead of the LAN
|
|
|
|
keyring (default).
|
2014-09-06 18:12:45 +00:00
|
|
|
-rpc-addr=127.0.0.1:8400 RPC address of the Consul agent.
|
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
2014-09-13 03:08:54 +00:00
|
|
|
func (c *KeyringCommand) Synopsis() string {
|
2014-09-06 18:12:45 +00:00
|
|
|
return "Manages gossip layer encryption keys"
|
|
|
|
}
|