2016-01-09 02:21:02 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2016-08-15 20:01:15 +00:00
|
|
|
"encoding/base64"
|
2016-01-09 02:21:02 +00:00
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2018-10-10 15:54:12 +00:00
|
|
|
"io"
|
2016-01-09 02:21:02 +00:00
|
|
|
"net/http"
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
"github.com/hashicorp/vault/helper/base62"
|
2016-01-09 02:21:02 +00:00
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
)
|
|
|
|
|
2017-11-10 18:19:42 +00:00
|
|
|
func handleSysGenerateRootAttempt(core *vault.Core, generateStrategy vault.GenerateRootStrategy) http.Handler {
|
2016-01-09 02:21:02 +00:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
2018-09-18 03:03:00 +00:00
|
|
|
handleSysGenerateRootAttemptGet(core, w, r, "")
|
2016-01-09 02:21:02 +00:00
|
|
|
case "POST", "PUT":
|
2017-11-10 18:19:42 +00:00
|
|
|
handleSysGenerateRootAttemptPut(core, w, r, generateStrategy)
|
2016-01-09 02:21:02 +00:00
|
|
|
case "DELETE":
|
2016-01-15 15:55:35 +00:00
|
|
|
handleSysGenerateRootAttemptDelete(core, w, r)
|
2016-01-09 02:21:02 +00:00
|
|
|
default:
|
|
|
|
respondError(w, http.StatusMethodNotAllowed, nil)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
func handleSysGenerateRootAttemptGet(core *vault.Core, w http.ResponseWriter, r *http.Request, otp string) {
|
2018-01-19 06:44:44 +00:00
|
|
|
ctx, cancel := core.GetContext()
|
|
|
|
defer cancel()
|
|
|
|
|
2016-01-09 02:21:02 +00:00
|
|
|
// Get the current seal configuration
|
2018-01-19 06:44:44 +00:00
|
|
|
barrierConfig, err := core.SealAccess().BarrierConfig(ctx)
|
2016-01-09 02:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
2016-04-04 14:44:22 +00:00
|
|
|
if barrierConfig == nil {
|
2018-04-05 15:49:21 +00:00
|
|
|
respondError(w, http.StatusBadRequest, fmt.Errorf("server is not yet initialized"))
|
2016-01-09 02:21:02 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-04 14:44:22 +00:00
|
|
|
sealConfig := barrierConfig
|
2018-01-19 08:44:06 +00:00
|
|
|
if core.SealAccess().RecoveryKeySupported() {
|
2018-01-19 06:44:44 +00:00
|
|
|
sealConfig, err = core.SealAccess().RecoveryConfig(ctx)
|
2016-04-04 14:44:22 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-09 02:21:02 +00:00
|
|
|
// Get the generation configuration
|
2016-01-15 15:55:35 +00:00
|
|
|
generationConfig, err := core.GenerateRootConfiguration()
|
2016-01-09 02:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the progress
|
2016-01-15 15:55:35 +00:00
|
|
|
progress, err := core.GenerateRootProgress()
|
2016-01-09 02:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Format the status
|
2016-01-15 15:55:35 +00:00
|
|
|
status := &GenerateRootStatusResponse{
|
2018-09-18 03:03:00 +00:00
|
|
|
Started: false,
|
|
|
|
Progress: progress,
|
|
|
|
Required: sealConfig.SecretThreshold,
|
|
|
|
Complete: false,
|
2018-10-17 20:23:04 +00:00
|
|
|
OTPLength: vault.TokenLength + 2,
|
2018-09-18 03:03:00 +00:00
|
|
|
OTP: otp,
|
2016-01-09 02:21:02 +00:00
|
|
|
}
|
|
|
|
if generationConfig != nil {
|
|
|
|
status.Nonce = generationConfig.Nonce
|
|
|
|
status.Started = true
|
|
|
|
status.PGPFingerprint = generationConfig.PGPFingerprint
|
|
|
|
}
|
|
|
|
|
|
|
|
respondOk(w, status)
|
|
|
|
}
|
|
|
|
|
2017-11-10 18:19:42 +00:00
|
|
|
func handleSysGenerateRootAttemptPut(core *vault.Core, w http.ResponseWriter, r *http.Request, generateStrategy vault.GenerateRootStrategy) {
|
2016-01-09 02:21:02 +00:00
|
|
|
// Parse the request
|
2016-01-15 15:55:35 +00:00
|
|
|
var req GenerateRootInitRequest
|
2019-04-05 18:36:34 +00:00
|
|
|
if _, err := parseRequest(core, r, w, &req); err != nil && err != io.EOF {
|
2016-01-09 02:21:02 +00:00
|
|
|
respondError(w, http.StatusBadRequest, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
var err error
|
|
|
|
var genned bool
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case len(req.PGPKey) > 0, len(req.OTP) > 0:
|
|
|
|
default:
|
|
|
|
genned = true
|
2018-12-20 15:40:01 +00:00
|
|
|
req.OTP, err = base62.Random(vault.TokenLength + 2)
|
2018-09-18 03:03:00 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
2016-01-09 02:21:02 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 15:55:35 +00:00
|
|
|
// Attemptialize the generation
|
2018-09-18 03:03:00 +00:00
|
|
|
if err := core.GenerateRootInit(req.OTP, req.PGPKey, generateStrategy); err != nil {
|
2016-01-09 02:21:02 +00:00
|
|
|
respondError(w, http.StatusBadRequest, err)
|
|
|
|
return
|
|
|
|
}
|
2016-02-12 19:24:36 +00:00
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
if genned {
|
|
|
|
handleSysGenerateRootAttemptGet(core, w, r, req.OTP)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSysGenerateRootAttemptGet(core, w, r, "")
|
2016-01-09 02:21:02 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 15:55:35 +00:00
|
|
|
func handleSysGenerateRootAttemptDelete(core *vault.Core, w http.ResponseWriter, r *http.Request) {
|
|
|
|
err := core.GenerateRootCancel()
|
2016-01-09 02:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
respondOk(w, nil)
|
|
|
|
}
|
|
|
|
|
2017-11-10 18:19:42 +00:00
|
|
|
func handleSysGenerateRootUpdate(core *vault.Core, generateStrategy vault.GenerateRootStrategy) http.Handler {
|
2016-01-09 02:21:02 +00:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// Parse the request
|
2016-01-15 15:55:35 +00:00
|
|
|
var req GenerateRootUpdateRequest
|
2019-04-05 18:36:34 +00:00
|
|
|
if _, err := parseRequest(core, r, w, &req); err != nil {
|
2016-01-09 02:21:02 +00:00
|
|
|
respondError(w, http.StatusBadRequest, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if req.Key == "" {
|
|
|
|
respondError(
|
|
|
|
w, http.StatusBadRequest,
|
2017-03-14 21:10:43 +00:00
|
|
|
errors.New("'key' must be specified in request body as JSON"))
|
2016-01-09 02:21:02 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-15 20:01:15 +00:00
|
|
|
// Decode the key, which is base64 or hex encoded
|
|
|
|
min, max := core.BarrierKeyLength()
|
2016-01-09 02:21:02 +00:00
|
|
|
key, err := hex.DecodeString(req.Key)
|
2016-08-15 20:01:15 +00:00
|
|
|
// 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
|
|
|
|
}
|
2016-01-09 02:21:02 +00:00
|
|
|
}
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
ctx, cancel := core.GetContext()
|
|
|
|
defer cancel()
|
|
|
|
|
2016-01-09 02:21:02 +00:00
|
|
|
// Use the key to make progress on root generation
|
2018-01-19 06:44:44 +00:00
|
|
|
result, err := core.GenerateRootUpdate(ctx, key, req.Nonce, generateStrategy)
|
2016-01-09 02:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusBadRequest, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-01-15 15:55:35 +00:00
|
|
|
resp := &GenerateRootStatusResponse{
|
2017-11-13 20:44:26 +00:00
|
|
|
Complete: result.Progress == result.Required,
|
|
|
|
Nonce: req.Nonce,
|
|
|
|
Progress: result.Progress,
|
|
|
|
Required: result.Required,
|
|
|
|
Started: true,
|
|
|
|
EncodedToken: result.EncodedToken,
|
|
|
|
PGPFingerprint: result.PGPFingerprint,
|
|
|
|
}
|
|
|
|
|
|
|
|
if generateStrategy == vault.GenerateStandardRootTokenStrategy {
|
|
|
|
resp.EncodedRootToken = result.EncodedToken
|
2016-01-09 02:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
respondOk(w, resp)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-01-15 15:55:35 +00:00
|
|
|
type GenerateRootInitRequest struct {
|
2016-01-09 02:21:02 +00:00
|
|
|
OTP string `json:"otp"`
|
|
|
|
PGPKey string `json:"pgp_key"`
|
|
|
|
}
|
|
|
|
|
2016-01-15 15:55:35 +00:00
|
|
|
type GenerateRootStatusResponse struct {
|
2016-01-09 02:21:02 +00:00
|
|
|
Nonce string `json:"nonce"`
|
|
|
|
Started bool `json:"started"`
|
|
|
|
Progress int `json:"progress"`
|
|
|
|
Required int `json:"required"`
|
|
|
|
Complete bool `json:"complete"`
|
2017-11-13 20:44:26 +00:00
|
|
|
EncodedToken string `json:"encoded_token"`
|
2016-01-09 02:21:02 +00:00
|
|
|
EncodedRootToken string `json:"encoded_root_token"`
|
|
|
|
PGPFingerprint string `json:"pgp_fingerprint"`
|
2018-09-18 03:03:00 +00:00
|
|
|
OTP string `json:"otp"`
|
|
|
|
OTPLength int `json:"otp_length"`
|
2016-01-09 02:21:02 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 15:55:35 +00:00
|
|
|
type GenerateRootUpdateRequest struct {
|
2016-01-09 02:21:02 +00:00
|
|
|
Nonce string
|
|
|
|
Key string
|
|
|
|
}
|