2021-02-12 16:02:39 +00:00
|
|
|
package api
|
2021-02-12 11:03:08 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/x509"
|
|
|
|
"encoding/base64"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
2021-03-05 11:40:42 +00:00
|
|
|
"net/url"
|
2021-02-12 11:03:08 +00:00
|
|
|
"strings"
|
|
|
|
|
2021-03-05 11:40:42 +00:00
|
|
|
"github.com/go-chi/chi"
|
2021-02-12 11:03:08 +00:00
|
|
|
"github.com/smallstep/certificates/api"
|
|
|
|
"github.com/smallstep/certificates/authority/provisioner"
|
2021-02-12 16:02:39 +00:00
|
|
|
"github.com/smallstep/certificates/scep"
|
2021-03-06 22:24:49 +00:00
|
|
|
"go.mozilla.org/pkcs7"
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-03-21 15:42:41 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
2021-03-26 21:04:18 +00:00
|
|
|
microscep "github.com/micromdm/scep/v2/scep"
|
2021-02-12 11:03:08 +00:00
|
|
|
)
|
|
|
|
|
2021-02-12 16:02:39 +00:00
|
|
|
const (
|
|
|
|
opnGetCACert = "GetCACert"
|
|
|
|
opnGetCACaps = "GetCACaps"
|
|
|
|
opnPKIOperation = "PKIOperation"
|
2021-02-25 23:32:21 +00:00
|
|
|
|
|
|
|
// TODO: add other (more optional) operations and handling
|
2021-02-12 16:02:39 +00:00
|
|
|
)
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
const maxPayloadSize = 2 << 20
|
|
|
|
|
|
|
|
type nextHTTP = func(http.ResponseWriter, *http.Request)
|
|
|
|
|
|
|
|
const (
|
2021-03-10 20:13:05 +00:00
|
|
|
certChainHeader = "application/x-x509-ca-ra-cert"
|
|
|
|
leafHeader = "application/x-x509-ca-cert"
|
|
|
|
pkiOperationHeader = "application/x-pki-message"
|
2021-02-26 23:34:50 +00:00
|
|
|
)
|
|
|
|
|
2021-02-12 16:02:39 +00:00
|
|
|
// SCEPRequest is a SCEP server request.
|
|
|
|
type SCEPRequest struct {
|
|
|
|
Operation string
|
|
|
|
Message []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// SCEPResponse is a SCEP server response.
|
|
|
|
type SCEPResponse struct {
|
2021-02-26 23:34:50 +00:00
|
|
|
Operation string
|
|
|
|
CACertNum int
|
|
|
|
Data []byte
|
|
|
|
Certificate *x509.Certificate
|
2021-05-06 22:23:09 +00:00
|
|
|
Error error
|
2021-02-12 16:02:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handler is the SCEP request handler.
|
2021-02-12 11:03:08 +00:00
|
|
|
type Handler struct {
|
2021-02-12 16:02:39 +00:00
|
|
|
Auth scep.Interface
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 16:02:39 +00:00
|
|
|
// New returns a new SCEP API router.
|
|
|
|
func New(scepAuth scep.Interface) api.RouterHandler {
|
2021-02-12 11:03:08 +00:00
|
|
|
return &Handler{scepAuth}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Route traffic and implement the Router interface.
|
|
|
|
func (h *Handler) Route(r api.Router) {
|
2021-03-05 11:40:42 +00:00
|
|
|
getLink := h.Auth.GetLinkExplicit
|
2022-03-07 12:16:53 +00:00
|
|
|
r.MethodFunc(http.MethodGet, getLink("{provisionerName}/{customPath}*", false, nil), h.lookupProvisioner(h.Get))
|
2022-01-21 15:07:31 +00:00
|
|
|
r.MethodFunc(http.MethodGet, getLink("{provisionerName}", false, nil), h.lookupProvisioner(h.Get))
|
2022-03-07 12:16:53 +00:00
|
|
|
r.MethodFunc(http.MethodPost, getLink("{provisionerName}/{customPath}*", false, nil), h.lookupProvisioner(h.Post))
|
2022-01-21 15:07:31 +00:00
|
|
|
r.MethodFunc(http.MethodPost, getLink("{provisionerName}", false, nil), h.lookupProvisioner(h.Post))
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
// Get handles all SCEP GET requests
|
2021-02-12 11:03:08 +00:00
|
|
|
func (h *Handler) Get(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
request, err := decodeSCEPRequest(r)
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
writeError(w, errors.Wrap(err, "invalid scep get request"))
|
2021-02-26 23:34:50 +00:00
|
|
|
return
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
ctx := r.Context()
|
|
|
|
var response SCEPResponse
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
switch request.Operation {
|
2021-02-12 11:03:08 +00:00
|
|
|
case opnGetCACert:
|
2021-02-26 23:34:50 +00:00
|
|
|
response, err = h.GetCACert(ctx)
|
2021-02-12 11:03:08 +00:00
|
|
|
case opnGetCACaps:
|
2021-02-26 23:34:50 +00:00
|
|
|
response, err = h.GetCACaps(ctx)
|
2021-02-12 11:03:08 +00:00
|
|
|
case opnPKIOperation:
|
2021-03-06 21:35:41 +00:00
|
|
|
// TODO: implement the GET for PKI operation? Default CACAPS doesn't specify this is in use, though
|
2021-02-12 11:03:08 +00:00
|
|
|
default:
|
2021-03-21 15:42:41 +00:00
|
|
|
err = errors.Errorf("unknown operation: %s", request.Operation)
|
2021-02-26 23:34:50 +00:00
|
|
|
}
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
writeError(w, errors.Wrap(err, "scep get request failed"))
|
2021-02-26 23:34:50 +00:00
|
|
|
return
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
2021-02-26 23:34:50 +00:00
|
|
|
|
|
|
|
writeSCEPResponse(w, response)
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
// Post handles all SCEP POST requests
|
2021-02-12 11:03:08 +00:00
|
|
|
func (h *Handler) Post(w http.ResponseWriter, r *http.Request) {
|
2021-02-25 23:32:21 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
request, err := decodeSCEPRequest(r)
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
writeError(w, errors.Wrap(err, "invalid scep post request"))
|
2021-02-26 23:34:50 +00:00
|
|
|
return
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
ctx := r.Context()
|
|
|
|
var response SCEPResponse
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
switch request.Operation {
|
2021-02-12 11:03:08 +00:00
|
|
|
case opnPKIOperation:
|
2021-02-26 23:34:50 +00:00
|
|
|
response, err = h.PKIOperation(ctx, request)
|
2021-02-12 11:03:08 +00:00
|
|
|
default:
|
2021-03-21 15:42:41 +00:00
|
|
|
err = errors.Errorf("unknown operation: %s", request.Operation)
|
2021-02-26 23:34:50 +00:00
|
|
|
}
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
writeError(w, errors.Wrap(err, "scep post request failed"))
|
2021-02-26 23:34:50 +00:00
|
|
|
return
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
writeSCEPResponse(w, response)
|
|
|
|
}
|
2021-02-12 11:03:08 +00:00
|
|
|
|
|
|
|
func decodeSCEPRequest(r *http.Request) (SCEPRequest, error) {
|
|
|
|
|
|
|
|
defer r.Body.Close()
|
|
|
|
|
|
|
|
method := r.Method
|
|
|
|
query := r.URL.Query()
|
|
|
|
|
|
|
|
var operation string
|
|
|
|
if _, ok := query["operation"]; ok {
|
|
|
|
operation = query.Get("operation")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch method {
|
|
|
|
case http.MethodGet:
|
|
|
|
switch operation {
|
|
|
|
case opnGetCACert, opnGetCACaps:
|
|
|
|
return SCEPRequest{
|
|
|
|
Operation: operation,
|
|
|
|
Message: []byte{},
|
|
|
|
}, nil
|
|
|
|
case opnPKIOperation:
|
|
|
|
var message string
|
|
|
|
if _, ok := query["message"]; ok {
|
|
|
|
message = query.Get("message")
|
|
|
|
}
|
2021-03-06 21:35:41 +00:00
|
|
|
// TODO: verify this; it seems like it should be StdEncoding instead of URLEncoding
|
2021-02-12 11:03:08 +00:00
|
|
|
decodedMessage, err := base64.URLEncoding.DecodeString(message)
|
|
|
|
if err != nil {
|
|
|
|
return SCEPRequest{}, err
|
|
|
|
}
|
|
|
|
return SCEPRequest{
|
|
|
|
Operation: operation,
|
|
|
|
Message: decodedMessage,
|
|
|
|
}, nil
|
|
|
|
default:
|
2021-03-21 15:42:41 +00:00
|
|
|
return SCEPRequest{}, errors.Errorf("unsupported operation: %s", operation)
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
case http.MethodPost:
|
2021-11-12 23:46:34 +00:00
|
|
|
body, err := io.ReadAll(io.LimitReader(r.Body, maxPayloadSize))
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return SCEPRequest{}, err
|
|
|
|
}
|
|
|
|
return SCEPRequest{
|
|
|
|
Operation: operation,
|
|
|
|
Message: body,
|
|
|
|
}, nil
|
|
|
|
default:
|
2021-03-21 15:42:41 +00:00
|
|
|
return SCEPRequest{}, errors.Errorf("unsupported method: %s", method)
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// lookupProvisioner loads the provisioner associated with the request.
|
|
|
|
// Responds 404 if the provisioner does not exist.
|
|
|
|
func (h *Handler) lookupProvisioner(next nextHTTP) nextHTTP {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
2022-01-21 15:07:31 +00:00
|
|
|
name := chi.URLParam(r, "provisionerName")
|
|
|
|
provisionerName, err := url.PathUnescape(name)
|
2021-03-05 11:40:42 +00:00
|
|
|
if err != nil {
|
2022-01-21 15:07:31 +00:00
|
|
|
api.WriteError(w, errors.Errorf("error url unescaping provisioner name '%s'", name))
|
2021-03-05 11:40:42 +00:00
|
|
|
return
|
|
|
|
}
|
2021-02-19 10:01:19 +00:00
|
|
|
|
2022-03-07 12:16:53 +00:00
|
|
|
customPathParam := chi.URLParam(r, "customPath")
|
|
|
|
customPath, err := url.PathUnescape(customPathParam)
|
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-21 15:07:31 +00:00
|
|
|
p, err := h.Auth.LoadProvisionerByName(provisionerName)
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
api.WriteError(w, err)
|
2021-02-12 11:03:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-08 18:59:57 +00:00
|
|
|
prov, ok := p.(*provisioner.SCEP)
|
2021-02-12 11:03:08 +00:00
|
|
|
if !ok {
|
2021-05-06 22:23:09 +00:00
|
|
|
api.WriteError(w, errors.New("provisioner must be of type SCEP"))
|
2021-02-12 11:03:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-07 12:16:53 +00:00
|
|
|
configuredCustomPath := strings.Trim(prov.CustomPath, "/")
|
|
|
|
if customPath != configuredCustomPath {
|
|
|
|
api.WriteError(w, errors.Errorf("custom path requested '%s' is not the expected path '%s'", customPath, configuredCustomPath))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-12 16:02:39 +00:00
|
|
|
ctx := r.Context()
|
2021-10-08 18:59:57 +00:00
|
|
|
ctx = context.WithValue(ctx, scep.ProvisionerContextKey, scep.Provisioner(prov))
|
2021-02-12 11:03:08 +00:00
|
|
|
next(w, r.WithContext(ctx))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
// GetCACert returns the CA certificates in a SCEP response
|
|
|
|
func (h *Handler) GetCACert(ctx context.Context) (SCEPResponse, error) {
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2022-01-14 09:48:23 +00:00
|
|
|
certs, err := h.Auth.GetCACertificates(ctx)
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
2021-02-26 23:34:50 +00:00
|
|
|
return SCEPResponse{}, err
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(certs) == 0 {
|
2021-02-26 23:34:50 +00:00
|
|
|
return SCEPResponse{}, errors.New("missing CA cert")
|
|
|
|
}
|
|
|
|
|
2021-03-06 23:30:37 +00:00
|
|
|
response := SCEPResponse{
|
|
|
|
Operation: opnGetCACert,
|
|
|
|
CACertNum: len(certs),
|
|
|
|
}
|
2021-02-26 23:34:50 +00:00
|
|
|
|
|
|
|
if len(certs) == 1 {
|
|
|
|
response.Data = certs[0].Raw
|
2021-02-12 11:03:08 +00:00
|
|
|
} else {
|
2021-03-21 15:42:41 +00:00
|
|
|
// create degenerate pkcs7 certificate structure, according to
|
|
|
|
// https://tools.ietf.org/html/rfc8894#section-4.2.1.2, because
|
|
|
|
// not signed or encrypted data has to be returned.
|
2021-02-12 11:03:08 +00:00
|
|
|
data, err := microscep.DegenerateCertificates(certs)
|
2021-02-26 23:34:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return SCEPResponse{}, err
|
|
|
|
}
|
|
|
|
response.Data = data
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
return response, nil
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
// GetCACaps returns the CA capabilities in a SCEP response
|
|
|
|
func (h *Handler) GetCACaps(ctx context.Context) (SCEPResponse, error) {
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-03-06 23:50:00 +00:00
|
|
|
caps := h.Auth.GetCACaps(ctx)
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-03-06 23:50:00 +00:00
|
|
|
response := SCEPResponse{
|
|
|
|
Operation: opnGetCACaps,
|
|
|
|
Data: formatCapabilities(caps),
|
|
|
|
}
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
return response, nil
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
// PKIOperation performs PKI operations and returns a SCEP response
|
|
|
|
func (h *Handler) PKIOperation(ctx context.Context, request SCEPRequest) (SCEPResponse, error) {
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-03-06 22:24:49 +00:00
|
|
|
// parse the message using microscep implementation
|
2021-02-26 23:34:50 +00:00
|
|
|
microMsg, err := microscep.ParsePKIMessage(request.Message)
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
2021-03-10 20:13:05 +00:00
|
|
|
// return the error, because we can't use the msg for creating a CertRep
|
2021-02-26 23:34:50 +00:00
|
|
|
return SCEPResponse{}, err
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 20:13:05 +00:00
|
|
|
// this is essentially doing the same as microscep.ParsePKIMessage, but
|
|
|
|
// gives us access to the p7 itself in scep.PKIMessage. Essentially a small
|
|
|
|
// wrapper for the microscep implementation.
|
2021-03-06 22:24:49 +00:00
|
|
|
p7, err := pkcs7.Parse(microMsg.Raw)
|
|
|
|
if err != nil {
|
|
|
|
return SCEPResponse{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy over properties to our internal PKIMessage
|
2021-02-26 17:07:50 +00:00
|
|
|
msg := &scep.PKIMessage{
|
|
|
|
TransactionID: microMsg.TransactionID,
|
|
|
|
MessageType: microMsg.MessageType,
|
|
|
|
SenderNonce: microMsg.SenderNonce,
|
|
|
|
Raw: microMsg.Raw,
|
2021-03-06 22:24:49 +00:00
|
|
|
P7: p7,
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 17:07:50 +00:00
|
|
|
if err := h.Auth.DecryptPKIEnvelope(ctx, msg); err != nil {
|
2021-02-26 23:34:50 +00:00
|
|
|
return SCEPResponse{}, err
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 20:13:05 +00:00
|
|
|
// NOTE: at this point we have sufficient information for returning nicely signed CertReps
|
|
|
|
csr := msg.CSRReqMessage.CSR
|
|
|
|
|
2022-01-14 09:48:23 +00:00
|
|
|
// NOTE: we're blocking the RenewalReq if the challenge does not match, because otherwise we don't have any authentication.
|
|
|
|
// The macOS SCEP client performs renewals using PKCSreq. The CertNanny SCEP client will use PKCSreq with challenge too, it seems,
|
|
|
|
// even if using the renewal flow as described in the README.md. MicroMDM SCEP client also only does PKCSreq by default, unless
|
|
|
|
// a certificate exists; then it will use RenewalReq. Adding the challenge check here may be a small breaking change for clients.
|
|
|
|
// We'll have to see how it works out.
|
|
|
|
if msg.MessageType == microscep.PKCSReq || msg.MessageType == microscep.RenewalReq {
|
2021-03-06 23:30:37 +00:00
|
|
|
challengeMatches, err := h.Auth.MatchChallengePassword(ctx, msg.CSRReqMessage.ChallengePassword)
|
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
return h.createFailureResponse(ctx, csr, msg, microscep.BadRequest, errors.New("error when checking password"))
|
2021-03-06 23:30:37 +00:00
|
|
|
}
|
|
|
|
if !challengeMatches {
|
2021-03-10 20:13:05 +00:00
|
|
|
// TODO: can this be returned safely to the client? In the end, if the password was correct, that gains a bit of info too.
|
2021-05-06 22:23:09 +00:00
|
|
|
return h.createFailureResponse(ctx, csr, msg, microscep.BadRequest, errors.New("wrong password provided"))
|
2021-03-06 23:30:37 +00:00
|
|
|
}
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 09:48:23 +00:00
|
|
|
// TODO: authorize renewal: we can authorize renewals with the challenge password (if reusable secrets are used).
|
|
|
|
// Renewals OPTIONALLY include the challenge if the existing cert is used as authentication, but client SHOULD omit the challenge.
|
|
|
|
// This means that for renewal requests we should check the certificate provided to be signed before by the CA. We could
|
|
|
|
// enforce use of the challenge if we want too. That way we could be more flexible in terms of authentication scheme (i.e. reusing
|
|
|
|
// tokens from other provisioners, calling a webhook, storing multiple secrets, allowing them to be multi-use, etc).
|
|
|
|
// Authentication by the (self-signed) certificate with an optional challenge is required; supporting renewals incl. verification
|
|
|
|
// of the client cert is not.
|
2021-03-10 21:20:02 +00:00
|
|
|
|
2021-02-26 17:07:50 +00:00
|
|
|
certRep, err := h.Auth.SignCSR(ctx, csr, msg)
|
2021-02-12 11:03:08 +00:00
|
|
|
if err != nil {
|
2021-05-06 22:23:09 +00:00
|
|
|
return h.createFailureResponse(ctx, csr, msg, microscep.BadRequest, errors.Wrap(err, "error when signing new certificate"))
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
2021-03-06 23:30:37 +00:00
|
|
|
response := SCEPResponse{
|
|
|
|
Operation: opnPKIOperation,
|
|
|
|
Data: certRep.Raw,
|
|
|
|
Certificate: certRep.Certificate,
|
|
|
|
}
|
2021-02-12 16:02:39 +00:00
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
return response, nil
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func formatCapabilities(caps []string) []byte {
|
2021-02-19 11:06:24 +00:00
|
|
|
return []byte(strings.Join(caps, "\r\n"))
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// writeSCEPResponse writes a SCEP response back to the SCEP client.
|
2021-02-26 23:34:50 +00:00
|
|
|
func writeSCEPResponse(w http.ResponseWriter, response SCEPResponse) {
|
2021-03-10 20:13:05 +00:00
|
|
|
|
2021-05-06 22:23:09 +00:00
|
|
|
if response.Error != nil {
|
|
|
|
api.LogError(w, response.Error)
|
|
|
|
}
|
|
|
|
|
2021-03-10 20:13:05 +00:00
|
|
|
if response.Certificate != nil {
|
|
|
|
api.LogCertificate(w, response.Certificate)
|
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
w.Header().Set("Content-Type", contentHeader(response))
|
|
|
|
_, err := w.Write(response.Data)
|
|
|
|
if err != nil {
|
2021-03-21 15:42:41 +00:00
|
|
|
writeError(w, errors.Wrap(err, "error when writing scep response")) // This could end up as an error again
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
func writeError(w http.ResponseWriter, err error) {
|
|
|
|
scepError := &scep.Error{
|
2021-03-05 11:40:42 +00:00
|
|
|
Message: err.Error(),
|
|
|
|
Status: http.StatusInternalServerError, // TODO: make this a param?
|
2021-02-12 11:03:08 +00:00
|
|
|
}
|
2021-02-26 23:34:50 +00:00
|
|
|
api.WriteError(w, scepError)
|
|
|
|
}
|
2021-02-12 11:03:08 +00:00
|
|
|
|
2021-05-06 22:23:09 +00:00
|
|
|
func (h *Handler) createFailureResponse(ctx context.Context, csr *x509.CertificateRequest, msg *scep.PKIMessage, info microscep.FailInfo, failError error) (SCEPResponse, error) {
|
|
|
|
certRepMsg, err := h.Auth.CreateFailureResponse(ctx, csr, msg, scep.FailInfoName(info), failError.Error())
|
2021-03-10 20:13:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return SCEPResponse{}, err
|
|
|
|
}
|
|
|
|
return SCEPResponse{
|
|
|
|
Operation: opnPKIOperation,
|
|
|
|
Data: certRepMsg.Raw,
|
2021-05-06 22:23:09 +00:00
|
|
|
Error: failError,
|
2021-03-10 20:13:05 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-02-26 23:34:50 +00:00
|
|
|
func contentHeader(r SCEPResponse) string {
|
|
|
|
switch r.Operation {
|
2021-02-12 11:03:08 +00:00
|
|
|
case opnGetCACert:
|
2021-02-26 23:34:50 +00:00
|
|
|
if r.CACertNum > 1 {
|
2021-02-12 11:03:08 +00:00
|
|
|
return certChainHeader
|
|
|
|
}
|
|
|
|
return leafHeader
|
|
|
|
case opnPKIOperation:
|
2021-03-10 20:13:05 +00:00
|
|
|
return pkiOperationHeader
|
2021-02-12 11:03:08 +00:00
|
|
|
default:
|
|
|
|
return "text/plain"
|
|
|
|
}
|
|
|
|
}
|