open-vault/command/rekey.go

333 lines
9.9 KiB
Go
Raw Normal View History

2015-05-28 22:08:09 +00:00
package command
import (
"fmt"
"os"
"strings"
2015-12-16 21:56:15 +00:00
"github.com/fatih/structs"
2015-05-28 22:08:09 +00:00
"github.com/hashicorp/vault/api"
"github.com/hashicorp/vault/helper/password"
"github.com/hashicorp/vault/helper/pgpkeys"
2015-05-28 22:08:09 +00:00
)
// RekeyCommand is a Command that rekeys the vault.
type RekeyCommand struct {
Meta
// Key can be used to pre-seed the key. If it is set, it will not
// be asked with the `password` helper.
Key string
2015-12-16 21:56:15 +00:00
// The nonce for the rekey request to send along
Nonce string
2015-05-28 22:08:09 +00:00
}
func (c *RekeyCommand) Run(args []string) int {
2015-12-16 21:56:15 +00:00
var init, cancel, status, delete, retrieve, backup bool
2015-05-28 22:08:09 +00:00
var shares, threshold int
2015-12-16 21:56:15 +00:00
var nonce string
var pgpKeys pgpkeys.PubKeyFilesFlag
2015-05-28 22:08:09 +00:00
flags := c.Meta.FlagSet("rekey", FlagSetDefault)
flags.BoolVar(&init, "init", false, "")
flags.BoolVar(&cancel, "cancel", false, "")
flags.BoolVar(&status, "status", false, "")
2015-12-16 21:56:15 +00:00
flags.BoolVar(&delete, "delete", false, "")
flags.BoolVar(&retrieve, "retrieve", false, "")
flags.BoolVar(&backup, "backup", false, "")
2015-08-25 22:33:58 +00:00
flags.IntVar(&shares, "key-shares", 5, "")
2015-05-28 22:08:09 +00:00
flags.IntVar(&threshold, "key-threshold", 3, "")
2015-12-16 21:56:15 +00:00
flags.StringVar(&nonce, "nonce", "", "")
flags.Var(&pgpKeys, "pgp-keys", "")
2015-05-28 22:08:09 +00:00
flags.Usage = func() { c.Ui.Error(c.Help()) }
if err := flags.Parse(args); err != nil {
return 1
}
2015-12-16 21:56:15 +00:00
if nonce != "" {
c.Nonce = nonce
}
2015-05-28 22:08:09 +00:00
client, err := c.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error initializing client: %s", err))
return 2
}
// Check if we are running doing any restricted variants
2015-12-16 21:56:15 +00:00
switch {
case init:
return c.initRekey(client, shares, threshold, pgpKeys, backup)
case cancel:
2015-05-28 22:08:09 +00:00
return c.cancelRekey(client)
2015-12-16 21:56:15 +00:00
case status:
2015-05-28 22:08:09 +00:00
return c.rekeyStatus(client)
2015-12-16 21:56:15 +00:00
case retrieve:
return c.rekeyRetrieveStored(client)
case delete:
return c.rekeyDeleteStored(client)
2015-05-28 22:08:09 +00:00
}
// Check if the rekey is started
rekeyStatus, err := client.Sys().RekeyStatus()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error reading rekey status: %s", err))
return 1
}
// Start the rekey process if not started
if !rekeyStatus.Started {
err := client.Sys().RekeyInit(&api.RekeyInitRequest{
SecretShares: shares,
SecretThreshold: threshold,
2015-08-25 22:33:58 +00:00
PGPKeys: pgpKeys,
2015-05-28 22:08:09 +00:00
})
if err != nil {
c.Ui.Error(fmt.Sprintf("Error initializing rekey: %s", err))
return 1
}
2015-12-16 21:56:15 +00:00
rekeyStatus, err = client.Sys().RekeyStatus()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error reading rekey status: %s", err))
return 1
}
c.Nonce = rekeyStatus.Nonce
2015-05-28 22:08:09 +00:00
}
2015-12-16 21:56:15 +00:00
shares = rekeyStatus.N
threshold = rekeyStatus.T
serverNonce := rekeyStatus.Nonce
2015-05-28 22:08:09 +00:00
// Get the unseal key
args = flags.Args()
2015-12-16 21:56:15 +00:00
key := c.Key
2015-05-28 22:08:09 +00:00
if len(args) > 0 {
2015-12-16 21:56:15 +00:00
key = args[0]
2015-05-28 22:08:09 +00:00
}
2015-12-16 21:56:15 +00:00
if key == "" {
c.Nonce = serverNonce
fmt.Printf("Rekey operation nonce: %s\n", serverNonce)
2015-05-28 22:08:09 +00:00
fmt.Printf("Key (will be hidden): ")
2015-12-16 21:56:15 +00:00
key, err = password.Read(os.Stdin)
2015-05-28 22:08:09 +00:00
fmt.Printf("\n")
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error attempting to ask for password. The raw error message\n"+
"is shown below, but the most common reason for this error is\n"+
"that you attempted to pipe a value into unseal or you're\n"+
"executing `vault rekey` from outside of a terminal.\n\n"+
"You should use `vault rekey` from a terminal for maximum\n"+
"security. If this isn't an option, the unseal key can be passed\n"+
"in using the first parameter.\n\n"+
"Raw error: %s", err))
return 1
}
}
// Provide the key, this may potentially complete the update
2015-12-16 21:56:15 +00:00
result, err := client.Sys().RekeyUpdate(strings.TrimSpace(key), c.Nonce)
2015-05-28 22:08:09 +00:00
if err != nil {
c.Ui.Error(fmt.Sprintf("Error attempting rekey update: %s", err))
return 1
}
// If we are not complete, then dump the status
if !result.Complete {
return c.rekeyStatus(client)
}
// Provide the keys
for i, key := range result.Keys {
2015-12-16 21:56:15 +00:00
if len(result.PGPFingerprints) > 0 {
c.Ui.Output(fmt.Sprintf("Key %d fingerprint: %s; value: %s", i+1, result.PGPFingerprints[i], key))
} else {
c.Ui.Output(fmt.Sprintf("Key %d: %s", i+1, key))
}
}
c.Ui.Output(fmt.Sprintf("\nOperation nonce: %s", result.Nonce))
if len(result.PGPFingerprints) > 0 && result.Backup {
c.Ui.Output(fmt.Sprintf(
"\n" +
2016-01-08 19:09:40 +00:00
"The encrypted unseal keys have been backed up to \"core/unseal-keys-backup\"\n" +
"in your physical backend. It is your responsibility to remove these if and\n" +
"when desired.",
2015-12-16 21:56:15 +00:00
))
2015-05-28 22:08:09 +00:00
}
c.Ui.Output(fmt.Sprintf(
"\n"+
"Vault rekeyed with %d keys and a key threshold of %d. Please\n"+
"securely distribute the above keys. When the Vault is re-sealed,\n"+
"restarted, or stopped, you must provide at least %d of these keys\n"+
"to unseal it again.\n\n"+
"Vault does not store the master key. Without at least %d keys,\n"+
"your Vault will remain permanently sealed.",
2015-05-28 22:08:09 +00:00
shares,
threshold,
threshold,
threshold,
2015-05-28 22:08:09 +00:00
))
2015-05-28 22:08:09 +00:00
return 0
}
// initRekey is used to start the rekey process
2015-12-16 21:56:15 +00:00
func (c *RekeyCommand) initRekey(client *api.Client,
shares, threshold int,
pgpKeys pgpkeys.PubKeyFilesFlag,
backup bool) int {
2015-05-28 22:08:09 +00:00
// Start the rekey
err := client.Sys().RekeyInit(&api.RekeyInitRequest{
SecretShares: shares,
SecretThreshold: threshold,
2015-08-25 22:33:58 +00:00
PGPKeys: pgpKeys,
2015-12-16 21:56:15 +00:00
Backup: backup,
2015-05-28 22:08:09 +00:00
})
if err != nil {
c.Ui.Error(fmt.Sprintf("Error initializing rekey: %s", err))
return 1
}
// Provide the current status
return c.rekeyStatus(client)
}
// cancelRekey is used to abort the rekey process
func (c *RekeyCommand) cancelRekey(client *api.Client) int {
err := client.Sys().RekeyCancel()
if err != nil {
c.Ui.Error(fmt.Sprintf("Failed to cancel rekey: %s", err))
return 1
}
c.Ui.Output("Rekey canceled.")
return 0
}
// rekeyStatus is used just to fetch and dump the status
2015-05-28 22:08:09 +00:00
func (c *RekeyCommand) rekeyStatus(client *api.Client) int {
// Check the status
status, err := client.Sys().RekeyStatus()
if err != nil {
c.Ui.Error(fmt.Sprintf("Error reading rekey status: %s", err))
return 1
}
// Dump the status
2015-12-16 21:56:15 +00:00
statString := fmt.Sprintf(
"Nonce: %s\n"+
"Started: %v\n"+
2015-05-28 22:08:09 +00:00
"Key Shares: %d\n"+
"Key Threshold: %d\n"+
"Rekey Progress: %d\n"+
"Required Keys: %d",
2015-12-16 21:56:15 +00:00
status.Nonce,
2015-05-28 22:08:09 +00:00
status.Started,
status.N,
status.T,
status.Progress,
status.Required,
2015-12-16 21:56:15 +00:00
)
if len(status.PGPFingerprints) != 0 {
2016-01-08 19:09:40 +00:00
statString = fmt.Sprintf("\n%s\nPGP Key Fingerprints: %s", statString, status.PGPFingerprints)
statString = fmt.Sprintf("\n%s\nBackup Storage: %t", statString, status.Backup)
2015-12-16 21:56:15 +00:00
}
c.Ui.Output(statString)
return 0
}
func (c *RekeyCommand) rekeyRetrieveStored(client *api.Client) int {
2016-01-08 19:09:40 +00:00
storedKeys, err := client.Sys().RekeyRetrieveBackup()
2015-12-16 21:56:15 +00:00
if err != nil {
c.Ui.Error(fmt.Sprintf("Error retrieving stored keys: %s", err))
return 1
}
secret := &api.Secret{
Data: structs.New(storedKeys).Map(),
}
return OutputSecret(c.Ui, "table", secret)
}
func (c *RekeyCommand) rekeyDeleteStored(client *api.Client) int {
2016-01-08 19:09:40 +00:00
err := client.Sys().RekeyDeleteBackup()
2015-12-16 21:56:15 +00:00
if err != nil {
c.Ui.Error(fmt.Sprintf("Failed to delete stored keys: %s", err))
return 1
}
c.Ui.Output("Stored keys deleted.")
2015-05-28 22:08:09 +00:00
return 0
}
func (c *RekeyCommand) Synopsis() string {
return "Rekeys Vault to generate new unseal keys"
}
func (c *RekeyCommand) Help() string {
helpText := `
Usage: vault rekey [options] [key]
2015-05-28 22:22:42 +00:00
Rekey is used to change the unseal keys. This can be done to generate
a new set of unseal keys or to change the number of shares and the
required threshold.
2015-05-28 22:08:09 +00:00
2015-05-28 22:22:42 +00:00
Rekey can only be done when the Vault is already unsealed. The operation
is done online, but requires that a threshold of the current unseal
keys be provided.
2015-05-28 22:08:09 +00:00
General Options:
` + generalOptionsUsage() + `
2015-05-28 22:08:09 +00:00
2015-12-16 21:56:15 +00:00
Rekey Options:
2015-05-28 22:08:09 +00:00
2015-05-28 22:22:42 +00:00
-init Initialize the rekey operation by setting the desired
number of shares and the key threshold. This can only be
done if no rekey is already initiated.
-cancel Reset the rekey process by throwing away
2015-05-28 22:22:42 +00:00
prior keys and the rekey configuration.
-status Prints the status of the current rekey operation.
This can be used to see the status without attempting
to provide an unseal key.
2015-12-16 21:56:15 +00:00
-retrieve Retrieve backed-up keys. Only available if the PGP keys
were provided and the backup has not been deleted.
-delete Delete any backed-up keys.
2015-05-28 22:22:42 +00:00
-key-shares=5 The number of key shares to split the master key
into.
2015-05-28 22:08:09 +00:00
2015-05-28 22:22:42 +00:00
-key-threshold=3 The number of key shares required to reconstruct
the master key.
2015-12-16 21:56:15 +00:00
-nonce=abcd The nonce provided at rekey initialization time. This
same nonce value must be provided with each unseal
key. If the unseal key is not being passed in via the
the command line the nonce parameter is not required,
and will instead be displayed with the key prompt.
-pgp-keys If provided, must be a comma-separated list of
files on disk containing binary- or base64-format
public PGP keys, or Keybase usernames specified as
"keybase:<username>". The number of given entries
must match 'key-shares'. The output unseal keys will
encrypted and hex-encoded, in order, with the given
public keys. If you want to use them with the 'vault
unseal' command, you will need to hex decode and
decrypt; this will be the plaintext unseal key.
2015-12-16 21:56:15 +00:00
-backup=false If true, and if the key shares are PGP-encrypted, a
plaintext backup of the PGP-encrypted keys will be
stored at "core/unseal-keys-backup" in your physical
storage. You can retrieve or delete them via the
'sys/rekey/backup' endpoint.
2015-05-28 22:08:09 +00:00
`
return strings.TrimSpace(helpText)
}