open-vault/http/sys_rekey.go

244 lines
6.7 KiB
Go
Raw Normal View History

2015-05-28 21:28:50 +00:00
package http
import (
"encoding/base64"
2015-05-28 21:28:50 +00:00
"encoding/hex"
"errors"
"fmt"
"net/http"
2015-12-16 21:56:15 +00:00
"github.com/hashicorp/vault/helper/pgpkeys"
2015-05-28 21:28:50 +00:00
"github.com/hashicorp/vault/vault"
)
2016-04-04 14:44:22 +00:00
func handleSysRekeyInit(core *vault.Core, recovery bool) http.Handler {
2015-05-28 21:28:50 +00:00
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
standby, _ := core.Standby()
if standby {
respondStandby(core, w, r.URL)
return
}
2016-04-04 14:44:22 +00:00
switch {
case recovery && !core.SealAccess().RecoveryKeySupported():
respondError(w, http.StatusBadRequest, fmt.Errorf("recovery rekeying not supported"))
case r.Method == "GET":
handleSysRekeyInitGet(core, recovery, w, r)
case r.Method == "POST" || r.Method == "PUT":
handleSysRekeyInitPut(core, recovery, w, r)
case r.Method == "DELETE":
handleSysRekeyInitDelete(core, recovery, w, r)
2015-05-28 21:28:50 +00:00
default:
respondError(w, http.StatusMethodNotAllowed, nil)
}
})
}
2016-04-04 14:44:22 +00:00
func handleSysRekeyInitGet(core *vault.Core, recovery bool, w http.ResponseWriter, r *http.Request) {
barrierConfig, err := core.SealAccess().BarrierConfig()
2015-05-28 21:28:50 +00:00
if err != nil {
respondError(w, http.StatusInternalServerError, err)
return
}
2016-04-04 14:44:22 +00:00
if barrierConfig == nil {
2015-05-28 21:28:50 +00:00
respondError(w, http.StatusBadRequest, fmt.Errorf(
"server is not yet initialized"))
return
}
// Get the rekey configuration
2016-04-04 14:44:22 +00:00
rekeyConf, err := core.RekeyConfig(recovery)
2015-05-28 21:28:50 +00:00
if err != nil {
respondError(w, http.StatusInternalServerError, err)
return
}
// Get the progress
2016-04-04 14:44:22 +00:00
progress, err := core.RekeyProgress(recovery)
2015-05-28 21:28:50 +00:00
if err != nil {
respondError(w, http.StatusInternalServerError, err)
return
}
2016-04-04 14:44:22 +00:00
sealThreshold, err := core.RekeyThreshold(recovery)
if err != nil {
respondError(w, http.StatusInternalServerError, err)
return
2016-04-04 14:44:22 +00:00
}
2015-05-28 21:28:50 +00:00
// Format the status
status := &RekeyStatusResponse{
Started: false,
T: 0,
N: 0,
Progress: progress,
2016-04-04 14:44:22 +00:00
Required: sealThreshold,
2015-05-28 21:28:50 +00:00
}
if rekeyConf != nil {
2015-12-16 21:56:15 +00:00
status.Nonce = rekeyConf.Nonce
2015-05-28 21:28:50 +00:00
status.Started = true
status.T = rekeyConf.SecretThreshold
status.N = rekeyConf.SecretShares
2015-12-16 21:56:15 +00:00
if rekeyConf.PGPKeys != nil && len(rekeyConf.PGPKeys) != 0 {
pgpFingerprints, err := pgpkeys.GetFingerprints(rekeyConf.PGPKeys, nil)
if err != nil {
respondError(w, http.StatusInternalServerError, err)
return
2015-12-16 21:56:15 +00:00
}
status.PGPFingerprints = pgpFingerprints
status.Backup = rekeyConf.Backup
}
2015-05-28 21:28:50 +00:00
}
respondOk(w, status)
}
2016-04-04 14:44:22 +00:00
func handleSysRekeyInitPut(core *vault.Core, recovery bool, w http.ResponseWriter, r *http.Request) {
2015-05-28 21:28:50 +00:00
// Parse the request
var req RekeyRequest
if err := parseRequest(r, w, &req); err != nil {
2015-05-28 21:28:50 +00:00
respondError(w, http.StatusBadRequest, err)
return
}
2015-12-16 21:56:15 +00:00
if req.Backup && len(req.PGPKeys) == 0 {
respondError(w, http.StatusBadRequest, fmt.Errorf("cannot request a backup of the new keys without providing PGP keys for encryption"))
return
}
// Right now we don't support this, but the rest of the code is ready for
// when we do, hence the check below for this to be false if
// StoredShares is greater than zero
if core.SealAccess().StoredKeysSupported() {
respondError(w, http.StatusBadRequest, fmt.Errorf("rekeying of barrier not supported when stored key support is available"))
return
2015-12-16 21:56:15 +00:00
}
2017-01-12 05:05:41 +00:00
if len(req.PGPKeys) > 0 && len(req.PGPKeys) != req.SecretShares-req.StoredShares {
respondError(w, http.StatusBadRequest, fmt.Errorf("incorrect number of PGP keys for rekey"))
return
}
2015-05-28 21:28:50 +00:00
// Initialize the rekey
err := core.RekeyInit(&vault.SealConfig{
SecretShares: req.SecretShares,
SecretThreshold: req.SecretThreshold,
2016-04-04 14:44:22 +00:00
StoredShares: req.StoredShares,
2015-08-25 22:33:58 +00:00
PGPKeys: req.PGPKeys,
2015-12-16 21:56:15 +00:00
Backup: req.Backup,
2016-04-04 14:44:22 +00:00
}, recovery)
2015-05-28 21:28:50 +00:00
if err != nil {
respondError(w, http.StatusBadRequest, err)
return
}
2016-04-04 14:44:22 +00:00
handleSysRekeyInitGet(core, recovery, w, r)
2015-05-28 21:28:50 +00:00
}
2016-04-04 14:44:22 +00:00
func handleSysRekeyInitDelete(core *vault.Core, recovery bool, w http.ResponseWriter, r *http.Request) {
err := core.RekeyCancel(recovery)
2015-05-28 21:28:50 +00:00
if err != nil {
respondError(w, http.StatusInternalServerError, err)
return
}
respondOk(w, nil)
}
2016-04-04 14:44:22 +00:00
func handleSysRekeyUpdate(core *vault.Core, recovery bool) http.Handler {
2015-05-28 21:28:50 +00:00
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
standby, _ := core.Standby()
if standby {
respondStandby(core, w, r.URL)
return
}
2015-05-28 21:28:50 +00:00
// Parse the request
var req RekeyUpdateRequest
if err := parseRequest(r, w, &req); err != nil {
2015-05-28 21:28:50 +00:00
respondError(w, http.StatusBadRequest, err)
return
}
if req.Key == "" {
respondError(
w, http.StatusBadRequest,
errors.New("'key' must specified in request body as JSON"))
return
}
// Decode the key, which is base64 or hex encoded
min, max := core.BarrierKeyLength()
2015-05-28 21:28:50 +00:00
key, err := hex.DecodeString(req.Key)
// We check min and max here to ensure that a string that is base64
// encoded but also valid hex will not be valid and we instead base64
// decode it
if err != nil || len(key) < min || len(key) > max {
key, err = base64.StdEncoding.DecodeString(req.Key)
if err != nil {
respondError(
w, http.StatusBadRequest,
errors.New("'key' must be a valid hex or base64 string"))
return
}
2015-05-28 21:28:50 +00:00
}
// Use the key to make progress on rekey
2016-04-04 14:44:22 +00:00
result, err := core.RekeyUpdate(key, req.Nonce, recovery)
2015-05-28 21:28:50 +00:00
if err != nil {
respondError(w, http.StatusBadRequest, err)
return
}
// Format the response
resp := &RekeyUpdateResponse{}
if result != nil {
resp.Complete = true
2015-12-16 21:56:15 +00:00
resp.Nonce = req.Nonce
resp.Backup = result.Backup
resp.PGPFingerprints = result.PGPFingerprints
2015-05-28 21:28:50 +00:00
// Encode the keys
keys := make([]string, 0, len(result.SecretShares))
keysB64 := make([]string, 0, len(result.SecretShares))
2015-05-28 21:28:50 +00:00
for _, k := range result.SecretShares {
keys = append(keys, hex.EncodeToString(k))
keysB64 = append(keysB64, base64.StdEncoding.EncodeToString(k))
2015-05-28 21:28:50 +00:00
}
resp.Keys = keys
resp.KeysB64 = keysB64
2015-05-28 21:28:50 +00:00
}
respondOk(w, resp)
})
}
type RekeyRequest struct {
SecretShares int `json:"secret_shares"`
SecretThreshold int `json:"secret_threshold"`
2016-04-04 14:44:22 +00:00
StoredShares int `json:"stored_shares"`
2015-08-25 22:33:58 +00:00
PGPKeys []string `json:"pgp_keys"`
2015-12-16 21:56:15 +00:00
Backup bool `json:"backup"`
2015-05-28 21:28:50 +00:00
}
type RekeyStatusResponse struct {
2015-12-16 21:56:15 +00:00
Nonce string `json:"nonce"`
Started bool `json:"started"`
T int `json:"t"`
N int `json:"n"`
Progress int `json:"progress"`
Required int `json:"required"`
PGPFingerprints []string `json:"pgp_fingerprints"`
Backup bool `json:"backup"`
2015-05-28 21:28:50 +00:00
}
type RekeyUpdateRequest struct {
2015-12-16 21:56:15 +00:00
Nonce string
Key string
2015-05-28 21:28:50 +00:00
}
type RekeyUpdateResponse struct {
2015-12-16 21:56:15 +00:00
Nonce string `json:"nonce"`
Complete bool `json:"complete"`
Keys []string `json:"keys"`
KeysB64 []string `json:"keys_base64"`
2015-12-16 21:56:15 +00:00
PGPFingerprints []string `json:"pgp_fingerprints"`
Backup bool `json:"backup"`
2015-05-28 21:28:50 +00:00
}