2019-05-27 00:41:10 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2021-03-05 07:10:46 +00:00
|
|
|
"context"
|
2019-05-27 00:41:10 +00:00
|
|
|
"crypto/x509"
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
2021-06-03 20:02:13 +00:00
|
|
|
"net"
|
2019-05-27 00:41:10 +00:00
|
|
|
"net/http"
|
2021-03-05 07:10:46 +00:00
|
|
|
"strings"
|
2019-05-27 00:41:10 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
"github.com/smallstep/certificates/acme"
|
|
|
|
"github.com/smallstep/certificates/api"
|
2021-03-05 07:10:46 +00:00
|
|
|
"go.step.sm/crypto/randutil"
|
2019-05-27 00:41:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewOrderRequest represents the body for a NewOrder request.
|
|
|
|
type NewOrderRequest struct {
|
|
|
|
Identifiers []acme.Identifier `json:"identifiers"`
|
|
|
|
NotBefore time.Time `json:"notBefore,omitempty"`
|
|
|
|
NotAfter time.Time `json:"notAfter,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates a new-order request body.
|
|
|
|
func (n *NewOrderRequest) Validate() error {
|
|
|
|
if len(n.Identifiers) == 0 {
|
2021-03-05 07:10:46 +00:00
|
|
|
return acme.NewError(acme.ErrorMalformedType, "identifiers list cannot be empty")
|
2019-05-27 00:41:10 +00:00
|
|
|
}
|
|
|
|
for _, id := range n.Identifiers {
|
2021-06-18 10:39:36 +00:00
|
|
|
if !(id.Type == acme.DNS || id.Type == acme.IP) {
|
2021-03-05 07:10:46 +00:00
|
|
|
return acme.NewError(acme.ErrorMalformedType, "identifier type unsupported: %s", id.Type)
|
2019-05-27 00:41:10 +00:00
|
|
|
}
|
2021-06-18 10:39:36 +00:00
|
|
|
if id.Type == acme.IP && net.ParseIP(id.Value) == nil {
|
2021-06-03 20:45:24 +00:00
|
|
|
return acme.NewError(acme.ErrorMalformedType, "invalid IP address: %s", id.Value)
|
2021-06-03 20:02:13 +00:00
|
|
|
}
|
2022-01-03 11:25:24 +00:00
|
|
|
// TODO: add some validations for DNS domains?
|
|
|
|
// TODO: combine the errors from this with allow/deny policy, like example error in https://datatracker.ietf.org/doc/html/rfc8555#section-6.7.1
|
2019-05-27 00:41:10 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FinalizeRequest captures the body for a Finalize order request.
|
|
|
|
type FinalizeRequest struct {
|
|
|
|
CSR string `json:"csr"`
|
|
|
|
csr *x509.CertificateRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates a finalize request body.
|
|
|
|
func (f *FinalizeRequest) Validate() error {
|
|
|
|
var err error
|
|
|
|
csrBytes, err := base64.RawURLEncoding.DecodeString(f.CSR)
|
|
|
|
if err != nil {
|
2021-03-05 07:10:46 +00:00
|
|
|
return acme.WrapError(acme.ErrorMalformedType, err, "error base64url decoding csr")
|
2019-05-27 00:41:10 +00:00
|
|
|
}
|
|
|
|
f.csr, err = x509.ParseCertificateRequest(csrBytes)
|
|
|
|
if err != nil {
|
2021-03-05 07:10:46 +00:00
|
|
|
return acme.WrapError(acme.ErrorMalformedType, err, "unable to parse csr")
|
2019-05-27 00:41:10 +00:00
|
|
|
}
|
|
|
|
if err = f.csr.CheckSignature(); err != nil {
|
2021-03-05 07:10:46 +00:00
|
|
|
return acme.WrapError(acme.ErrorMalformedType, err, "csr failed signature check")
|
2019-05-27 00:41:10 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-05 07:10:46 +00:00
|
|
|
var defaultOrderExpiry = time.Hour * 24
|
2021-03-25 07:23:57 +00:00
|
|
|
var defaultOrderBackdate = time.Minute
|
2021-03-05 07:10:46 +00:00
|
|
|
|
2019-05-27 00:41:10 +00:00
|
|
|
// NewOrder ACME api for creating a new order.
|
|
|
|
func (h *Handler) NewOrder(w http.ResponseWriter, r *http.Request) {
|
2020-05-07 03:18:12 +00:00
|
|
|
ctx := r.Context()
|
2021-03-05 07:10:46 +00:00
|
|
|
acc, err := accountFromContext(ctx)
|
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
prov, err := provisionerFromContext(ctx)
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
2020-05-07 03:18:12 +00:00
|
|
|
payload, err := payloadFromContext(ctx)
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
2022-01-03 11:25:24 +00:00
|
|
|
|
2019-05-27 00:41:10 +00:00
|
|
|
var nor NewOrderRequest
|
|
|
|
if err := json.Unmarshal(payload.value, &nor); err != nil {
|
2021-03-05 07:10:46 +00:00
|
|
|
api.WriteError(w, acme.WrapError(acme.ErrorMalformedType, err,
|
|
|
|
"failed to unmarshal new-order request payload"))
|
2019-05-27 00:41:10 +00:00
|
|
|
return
|
|
|
|
}
|
2021-06-03 20:02:13 +00:00
|
|
|
|
2019-05-27 00:41:10 +00:00
|
|
|
if err := nor.Validate(); err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-03 11:25:24 +00:00
|
|
|
// TODO(hs): this should also verify rules set in the Account (i.e. allowed/denied
|
|
|
|
// DNS and IPs; it's probably good to connect those to the EAB credentials and management? Or
|
|
|
|
// should we do it fully properly and connect them to the Account directly? The latter would allow
|
|
|
|
// management of allowed/denied names based on just the name, without having bound to EAB. Still,
|
|
|
|
// EAB is not illogical, because that's the way Accounts are connected to an external system and
|
|
|
|
// thus make sense to also set the allowed/denied names based on that info.
|
|
|
|
|
|
|
|
for _, identifier := range nor.Identifiers {
|
|
|
|
// TODO: gather all errors, so that we can build subproblems; include the nor.Validate() error here too, like in example?
|
|
|
|
err = prov.AuthorizeOrderIdentifier(ctx, identifier.Value)
|
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, acme.WrapError(acme.ErrorRejectedIdentifierType, err, "not authorized"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-19 21:37:45 +00:00
|
|
|
now := clock.Now()
|
2021-03-05 07:10:46 +00:00
|
|
|
// New order.
|
2021-03-19 21:37:45 +00:00
|
|
|
o := &acme.Order{
|
2021-03-25 07:23:57 +00:00
|
|
|
AccountID: acc.ID,
|
|
|
|
ProvisionerID: prov.GetID(),
|
|
|
|
Status: acme.StatusPending,
|
|
|
|
Identifiers: nor.Identifiers,
|
|
|
|
ExpiresAt: now.Add(defaultOrderExpiry),
|
|
|
|
AuthorizationIDs: make([]string, len(nor.Identifiers)),
|
|
|
|
NotBefore: nor.NotBefore,
|
|
|
|
NotAfter: nor.NotAfter,
|
2021-03-19 21:37:45 +00:00
|
|
|
}
|
2021-03-05 07:10:46 +00:00
|
|
|
|
|
|
|
for i, identifier := range o.Identifiers {
|
|
|
|
az := &acme.Authorization{
|
|
|
|
AccountID: acc.ID,
|
|
|
|
Identifier: identifier,
|
2021-03-25 07:23:57 +00:00
|
|
|
ExpiresAt: o.ExpiresAt,
|
2021-03-19 21:37:45 +00:00
|
|
|
Status: acme.StatusPending,
|
2021-03-05 07:10:46 +00:00
|
|
|
}
|
|
|
|
if err := h.newAuthorization(ctx, az); err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
o.AuthorizationIDs[i] = az.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
if o.NotBefore.IsZero() {
|
|
|
|
o.NotBefore = now
|
|
|
|
}
|
|
|
|
if o.NotAfter.IsZero() {
|
|
|
|
o.NotAfter = o.NotBefore.Add(prov.DefaultTLSCertDuration())
|
|
|
|
}
|
2021-03-25 20:46:51 +00:00
|
|
|
// If request NotBefore was empty then backdate the order.NotBefore (now)
|
|
|
|
// to avoid timing issues.
|
2021-03-25 07:23:57 +00:00
|
|
|
if nor.NotBefore.IsZero() {
|
2021-03-25 20:46:51 +00:00
|
|
|
o.NotBefore = o.NotBefore.Add(-defaultOrderBackdate)
|
2021-03-25 07:23:57 +00:00
|
|
|
}
|
2021-03-05 07:10:46 +00:00
|
|
|
|
|
|
|
if err := h.db.CreateOrder(ctx, o); err != nil {
|
|
|
|
api.WriteError(w, acme.WrapErrorISE(err, "error creating order"))
|
2019-05-27 00:41:10 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-05 07:14:56 +00:00
|
|
|
h.linker.LinkOrder(ctx, o)
|
2021-03-05 07:10:46 +00:00
|
|
|
|
2021-04-14 22:11:15 +00:00
|
|
|
w.Header().Set("Location", h.linker.GetLink(ctx, OrderLinkType, o.ID))
|
2019-05-27 00:41:10 +00:00
|
|
|
api.JSONStatus(w, o, http.StatusCreated)
|
|
|
|
}
|
|
|
|
|
2021-03-05 07:10:46 +00:00
|
|
|
func (h *Handler) newAuthorization(ctx context.Context, az *acme.Authorization) error {
|
|
|
|
if strings.HasPrefix(az.Identifier.Value, "*.") {
|
|
|
|
az.Wildcard = true
|
|
|
|
az.Identifier = acme.Identifier{
|
|
|
|
Value: strings.TrimPrefix(az.Identifier.Value, "*."),
|
|
|
|
Type: az.Identifier.Type,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-28 14:40:46 +00:00
|
|
|
chTypes := challengeTypes(az)
|
2021-03-05 07:10:46 +00:00
|
|
|
|
2021-05-28 14:40:46 +00:00
|
|
|
var err error
|
2021-03-05 07:10:46 +00:00
|
|
|
az.Token, err = randutil.Alphanumeric(32)
|
|
|
|
if err != nil {
|
|
|
|
return acme.WrapErrorISE(err, "error generating random alphanumeric ID")
|
|
|
|
}
|
|
|
|
az.Challenges = make([]*acme.Challenge, len(chTypes))
|
|
|
|
for i, typ := range chTypes {
|
|
|
|
ch := &acme.Challenge{
|
|
|
|
AccountID: az.AccountID,
|
|
|
|
Value: az.Identifier.Value,
|
|
|
|
Type: typ,
|
|
|
|
Token: az.Token,
|
2021-03-19 21:37:45 +00:00
|
|
|
Status: acme.StatusPending,
|
2021-03-05 07:10:46 +00:00
|
|
|
}
|
|
|
|
if err := h.db.CreateChallenge(ctx, ch); err != nil {
|
2021-03-25 07:23:57 +00:00
|
|
|
return acme.WrapErrorISE(err, "error creating challenge")
|
2021-03-05 07:10:46 +00:00
|
|
|
}
|
|
|
|
az.Challenges[i] = ch
|
|
|
|
}
|
|
|
|
if err = h.db.CreateAuthorization(ctx, az); err != nil {
|
|
|
|
return acme.WrapErrorISE(err, "error creating authorization")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-27 00:41:10 +00:00
|
|
|
// GetOrder ACME api for retrieving an order.
|
|
|
|
func (h *Handler) GetOrder(w http.ResponseWriter, r *http.Request) {
|
2020-05-07 03:18:12 +00:00
|
|
|
ctx := r.Context()
|
2021-03-05 07:10:46 +00:00
|
|
|
acc, err := accountFromContext(ctx)
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
2021-03-05 07:10:46 +00:00
|
|
|
prov, err := provisionerFromContext(ctx)
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
2021-03-05 07:10:46 +00:00
|
|
|
o, err := h.db.GetOrder(ctx, chi.URLParam(r, "ordID"))
|
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, acme.WrapErrorISE(err, "error retrieving order"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if acc.ID != o.AccountID {
|
|
|
|
api.WriteError(w, acme.NewError(acme.ErrorUnauthorizedType,
|
|
|
|
"account '%s' does not own order '%s'", acc.ID, o.ID))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if prov.GetID() != o.ProvisionerID {
|
|
|
|
api.WriteError(w, acme.NewError(acme.ErrorUnauthorizedType,
|
|
|
|
"provisioner '%s' does not own order '%s'", prov.GetID(), o.ID))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err = o.UpdateStatus(ctx, h.db); err != nil {
|
|
|
|
api.WriteError(w, acme.WrapErrorISE(err, "error updating order status"))
|
|
|
|
return
|
|
|
|
}
|
2019-05-27 00:41:10 +00:00
|
|
|
|
2021-03-05 07:10:46 +00:00
|
|
|
h.linker.LinkOrder(ctx, o)
|
|
|
|
|
2021-04-14 22:11:15 +00:00
|
|
|
w.Header().Set("Location", h.linker.GetLink(ctx, OrderLinkType, o.ID))
|
2019-05-27 00:41:10 +00:00
|
|
|
api.JSON(w, o)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FinalizeOrder attemptst to finalize an order and create a certificate.
|
|
|
|
func (h *Handler) FinalizeOrder(w http.ResponseWriter, r *http.Request) {
|
2020-05-07 03:18:12 +00:00
|
|
|
ctx := r.Context()
|
2021-03-05 07:10:46 +00:00
|
|
|
acc, err := accountFromContext(ctx)
|
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
prov, err := provisionerFromContext(ctx)
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
2020-05-07 03:18:12 +00:00
|
|
|
payload, err := payloadFromContext(ctx)
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var fr FinalizeRequest
|
|
|
|
if err := json.Unmarshal(payload.value, &fr); err != nil {
|
2021-03-05 07:10:46 +00:00
|
|
|
api.WriteError(w, acme.WrapError(acme.ErrorMalformedType, err,
|
|
|
|
"failed to unmarshal finalize-order request payload"))
|
2019-05-27 00:41:10 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := fr.Validate(); err != nil {
|
|
|
|
api.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-05 07:10:46 +00:00
|
|
|
o, err := h.db.GetOrder(ctx, chi.URLParam(r, "ordID"))
|
2019-05-27 00:41:10 +00:00
|
|
|
if err != nil {
|
2021-03-05 07:10:46 +00:00
|
|
|
api.WriteError(w, acme.WrapErrorISE(err, "error retrieving order"))
|
2019-05-27 00:41:10 +00:00
|
|
|
return
|
|
|
|
}
|
2021-03-05 07:10:46 +00:00
|
|
|
if acc.ID != o.AccountID {
|
|
|
|
api.WriteError(w, acme.NewError(acme.ErrorUnauthorizedType,
|
|
|
|
"account '%s' does not own order '%s'", acc.ID, o.ID))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if prov.GetID() != o.ProvisionerID {
|
|
|
|
api.WriteError(w, acme.NewError(acme.ErrorUnauthorizedType,
|
|
|
|
"provisioner '%s' does not own order '%s'", prov.GetID(), o.ID))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err = o.Finalize(ctx, h.db, fr.csr, h.ca, prov); err != nil {
|
|
|
|
api.WriteError(w, acme.WrapErrorISE(err, "error finalizing order"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
h.linker.LinkOrder(ctx, o)
|
2019-05-27 00:41:10 +00:00
|
|
|
|
2021-04-14 22:11:15 +00:00
|
|
|
w.Header().Set("Location", h.linker.GetLink(ctx, OrderLinkType, o.ID))
|
2019-05-27 00:41:10 +00:00
|
|
|
api.JSON(w, o)
|
|
|
|
}
|
2021-05-28 14:40:46 +00:00
|
|
|
|
|
|
|
// challengeTypes determines the types of challenges that should be used
|
|
|
|
// for the ACME authorization request.
|
2021-06-18 10:39:36 +00:00
|
|
|
func challengeTypes(az *acme.Authorization) []acme.ChallengeType {
|
|
|
|
var chTypes []acme.ChallengeType
|
2021-05-28 14:40:46 +00:00
|
|
|
|
2021-05-28 22:37:22 +00:00
|
|
|
switch az.Identifier.Type {
|
2021-06-18 10:39:36 +00:00
|
|
|
case acme.IP:
|
|
|
|
chTypes = []acme.ChallengeType{acme.HTTP01, acme.TLSALPN01}
|
|
|
|
case acme.DNS:
|
|
|
|
chTypes = []acme.ChallengeType{acme.DNS01}
|
2021-05-28 22:37:22 +00:00
|
|
|
// HTTP and TLS challenges can only be used for identifiers without wildcards.
|
|
|
|
if !az.Wildcard {
|
2021-06-18 10:39:36 +00:00
|
|
|
chTypes = append(chTypes, []acme.ChallengeType{acme.HTTP01, acme.TLSALPN01}...)
|
2021-05-28 22:37:22 +00:00
|
|
|
}
|
|
|
|
default:
|
2021-06-18 10:39:36 +00:00
|
|
|
chTypes = []acme.ChallengeType{}
|
2021-05-28 14:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return chTypes
|
|
|
|
}
|