2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2015-03-12 19:37:41 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2018-01-19 06:44:44 +00:00
|
|
|
"context"
|
2016-08-15 20:01:15 +00:00
|
|
|
"encoding/base64"
|
2015-03-12 19:37:41 +00:00
|
|
|
"encoding/hex"
|
2022-07-25 19:45:04 +00:00
|
|
|
"fmt"
|
2015-03-12 19:37:41 +00:00
|
|
|
"net/http"
|
2022-07-25 19:45:04 +00:00
|
|
|
"strings"
|
2015-03-12 19:37:41 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
)
|
|
|
|
|
|
|
|
func handleSysInit(core *vault.Core) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
|
|
|
handleSysInitGet(core, w, r)
|
2016-02-23 01:22:31 +00:00
|
|
|
case "PUT", "POST":
|
2015-03-12 19:37:41 +00:00
|
|
|
handleSysInitPut(core, w, r)
|
|
|
|
default:
|
|
|
|
respondError(w, http.StatusMethodNotAllowed, nil)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSysInitGet(core *vault.Core, w http.ResponseWriter, r *http.Request) {
|
2018-01-19 06:44:44 +00:00
|
|
|
init, err := core.Initialized(context.Background())
|
2015-03-12 19:37:41 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
respondOk(w, &InitStatusResponse{
|
|
|
|
Initialized: init,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSysInitPut(core *vault.Core, w http.ResponseWriter, r *http.Request) {
|
2018-01-19 06:44:44 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2015-03-12 19:37:41 +00:00
|
|
|
// Parse the request
|
|
|
|
var req InitRequest
|
2020-02-12 22:20:22 +00:00
|
|
|
if _, err := parseJSONRequest(core.PerfStandby(), r, w, &req); err != nil {
|
2015-03-12 19:37:41 +00:00
|
|
|
respondError(w, http.StatusBadRequest, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:45:04 +00:00
|
|
|
// Validate init request parameters
|
|
|
|
if err := validateInitParameters(core, req); err != nil {
|
|
|
|
respondError(w, http.StatusBadRequest, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-12 19:37:41 +00:00
|
|
|
// Initialize
|
2016-04-04 14:44:22 +00:00
|
|
|
barrierConfig := &vault.SealConfig{
|
2015-03-12 19:37:41 +00:00
|
|
|
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,
|
2016-04-04 14:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
recoveryConfig := &vault.SealConfig{
|
2023-02-01 19:34:53 +00:00
|
|
|
SecretShares: req.RecoveryShares,
|
|
|
|
SecretThreshold: req.RecoveryThreshold,
|
|
|
|
PGPKeys: req.RecoveryPGPKeys,
|
2016-04-04 14:44:22 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 22:42:24 +00:00
|
|
|
initParams := &vault.InitParams{
|
|
|
|
BarrierConfig: barrierConfig,
|
|
|
|
RecoveryConfig: recoveryConfig,
|
|
|
|
RootTokenPGPKey: req.RootTokenPGPKey,
|
|
|
|
}
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
result, initErr := core.Initialize(ctx, initParams)
|
2016-04-04 14:44:22 +00:00
|
|
|
if initErr != nil {
|
2019-01-23 21:34:34 +00:00
|
|
|
if vault.IsFatalError(initErr) {
|
2016-04-04 14:44:22 +00:00
|
|
|
respondError(w, http.StatusBadRequest, initErr)
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
// Add a warnings field? The error will be logged in the vault log
|
|
|
|
// already.
|
|
|
|
}
|
2015-03-12 19:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Encode the keys
|
|
|
|
keys := make([]string, 0, len(result.SecretShares))
|
2016-08-15 20:01:15 +00:00
|
|
|
keysB64 := make([]string, 0, len(result.SecretShares))
|
2015-03-12 19:37:41 +00:00
|
|
|
for _, k := range result.SecretShares {
|
|
|
|
keys = append(keys, hex.EncodeToString(k))
|
2016-08-15 20:01:15 +00:00
|
|
|
keysB64 = append(keysB64, base64.StdEncoding.EncodeToString(k))
|
2015-03-12 19:37:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 14:44:22 +00:00
|
|
|
resp := &InitResponse{
|
2015-03-29 23:22:09 +00:00
|
|
|
Keys: keys,
|
2016-08-15 20:01:15 +00:00
|
|
|
KeysB64: keysB64,
|
2015-03-29 23:22:09 +00:00
|
|
|
RootToken: result.RootToken,
|
2016-04-04 14:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(result.RecoveryShares) > 0 {
|
|
|
|
resp.RecoveryKeys = make([]string, 0, len(result.RecoveryShares))
|
2016-08-15 20:01:15 +00:00
|
|
|
resp.RecoveryKeysB64 = make([]string, 0, len(result.RecoveryShares))
|
2016-04-04 14:44:22 +00:00
|
|
|
for _, k := range result.RecoveryShares {
|
|
|
|
resp.RecoveryKeys = append(resp.RecoveryKeys, hex.EncodeToString(k))
|
2016-08-15 20:01:15 +00:00
|
|
|
resp.RecoveryKeysB64 = append(resp.RecoveryKeysB64, base64.StdEncoding.EncodeToString(k))
|
2016-04-04 14:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 21:34:34 +00:00
|
|
|
if err := core.UnsealWithStoredKeys(ctx); err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
2016-04-14 01:12:58 +00:00
|
|
|
|
2016-04-04 14:44:22 +00:00
|
|
|
respondOk(w, resp)
|
2015-03-12 19:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type InitRequest struct {
|
2023-02-01 19:34:53 +00:00
|
|
|
SecretShares int `json:"secret_shares"`
|
|
|
|
SecretThreshold int `json:"secret_threshold"`
|
|
|
|
StoredShares int `json:"stored_shares"`
|
|
|
|
PGPKeys []string `json:"pgp_keys"`
|
|
|
|
RecoveryShares int `json:"recovery_shares"`
|
|
|
|
RecoveryThreshold int `json:"recovery_threshold"`
|
|
|
|
RecoveryPGPKeys []string `json:"recovery_pgp_keys"`
|
|
|
|
RootTokenPGPKey string `json:"root_token_pgp_key"`
|
2015-03-12 19:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type InitResponse struct {
|
2016-08-15 20:01:15 +00:00
|
|
|
Keys []string `json:"keys"`
|
|
|
|
KeysB64 []string `json:"keys_base64"`
|
|
|
|
RecoveryKeys []string `json:"recovery_keys,omitempty"`
|
|
|
|
RecoveryKeysB64 []string `json:"recovery_keys_base64,omitempty"`
|
|
|
|
RootToken string `json:"root_token"`
|
2015-03-12 19:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type InitStatusResponse struct {
|
|
|
|
Initialized bool `json:"initialized"`
|
|
|
|
}
|
2022-07-25 19:45:04 +00:00
|
|
|
|
|
|
|
// Validates if the right parameters are used based on AutoUnseal
|
|
|
|
func validateInitParameters(core *vault.Core, req InitRequest) error {
|
|
|
|
recoveryFlags := make([]string, 0)
|
|
|
|
barrierFlags := make([]string, 0)
|
|
|
|
|
|
|
|
if req.SecretShares != 0 {
|
|
|
|
barrierFlags = append(barrierFlags, "secret_shares")
|
|
|
|
}
|
|
|
|
if req.SecretThreshold != 0 {
|
|
|
|
barrierFlags = append(barrierFlags, "secret_threshold")
|
|
|
|
}
|
|
|
|
if len(req.PGPKeys) != 0 {
|
|
|
|
barrierFlags = append(barrierFlags, "pgp_keys")
|
|
|
|
}
|
|
|
|
if req.RecoveryShares != 0 {
|
|
|
|
recoveryFlags = append(recoveryFlags, "recovery_shares")
|
|
|
|
}
|
|
|
|
if req.RecoveryThreshold != 0 {
|
|
|
|
recoveryFlags = append(recoveryFlags, "recovery_threshold")
|
|
|
|
}
|
|
|
|
if len(req.RecoveryPGPKeys) != 0 {
|
|
|
|
recoveryFlags = append(recoveryFlags, "recovery_pgp_keys")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch core.SealAccess().RecoveryKeySupported() {
|
|
|
|
case true:
|
|
|
|
if len(barrierFlags) > 0 {
|
|
|
|
return fmt.Errorf("parameters %s not applicable to seal type %s", strings.Join(barrierFlags, ","), core.SealAccess().BarrierType())
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if len(recoveryFlags) > 0 {
|
|
|
|
return fmt.Errorf("parameters %s not applicable to seal type %s", strings.Join(recoveryFlags, ","), core.SealAccess().BarrierType())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|