2015-03-12 06:05:16 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2015-03-12 18:12:44 +00:00
|
|
|
"encoding/hex"
|
2015-03-12 06:05:16 +00:00
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
)
|
|
|
|
|
|
|
|
func handleSysSeal(core *vault.Core) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != "PUT" {
|
|
|
|
respondError(w, http.StatusMethodNotAllowed, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := core.Seal(); err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
respondOk(w, nil)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSysUnseal(core *vault.Core) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != "PUT" {
|
|
|
|
respondError(w, http.StatusMethodNotAllowed, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the request
|
|
|
|
var req UnsealRequest
|
2015-03-12 18:12:44 +00:00
|
|
|
if err := parseRequest(r, &req); err != nil {
|
2015-03-12 06:05:16 +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
|
|
|
|
}
|
|
|
|
|
2015-03-12 18:12:44 +00:00
|
|
|
// Decode the key, which is hex encoded
|
|
|
|
key, err := hex.DecodeString(req.Key)
|
|
|
|
if err != nil {
|
|
|
|
respondError(
|
|
|
|
w, http.StatusBadRequest,
|
|
|
|
errors.New("'key' must be a valid hex-string"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:05:16 +00:00
|
|
|
// Attempt the unseal
|
2015-03-12 18:12:44 +00:00
|
|
|
if _, err := core.Unseal(key); err != nil {
|
2015-03-12 06:05:16 +00:00
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the seal status
|
|
|
|
handleSysSealStatusRaw(core, w, r)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSysSealStatus(core *vault.Core) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != "GET" {
|
|
|
|
respondError(w, http.StatusMethodNotAllowed, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSysSealStatusRaw(core, w, r)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSysSealStatusRaw(core *vault.Core, w http.ResponseWriter, r *http.Request) {
|
|
|
|
sealed, err := core.Sealed()
|
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sealConfig, err := core.SealConfig()
|
|
|
|
if err != nil {
|
|
|
|
respondError(w, http.StatusInternalServerError, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
respondOk(w, &SealStatusResponse{
|
|
|
|
Sealed: sealed,
|
|
|
|
T: sealConfig.SecretThreshold,
|
|
|
|
N: sealConfig.SecretShares,
|
|
|
|
Progress: core.SecretProgress(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type SealStatusResponse struct {
|
|
|
|
Sealed bool `json:"sealed"`
|
|
|
|
T int `json:"t"`
|
|
|
|
N int `json:"n"`
|
|
|
|
Progress int `json:"progress"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type UnsealRequest struct {
|
|
|
|
Key string
|
|
|
|
}
|