change GenerateCertificateRevocationList to return DER, store DER in db instead of PEM, nicer PEM encoding of CRL, add Mock stubs

pull/731/head
Raal Goff 3 years ago
parent e8fdb703c9
commit 7d024cc4cb

@ -50,7 +50,7 @@ type Authority interface {
GetRoots() ([]*x509.Certificate, error) GetRoots() ([]*x509.Certificate, error)
GetFederation() ([]*x509.Certificate, error) GetFederation() ([]*x509.Certificate, error)
Version() authority.Version Version() authority.Version
GenerateCertificateRevocationList(force bool) (string, error) GenerateCertificateRevocationList(force bool) ([]byte, error)
} }
// TimeDuration is an alias of provisioner.TimeDuration // TimeDuration is an alias of provisioner.TimeDuration

@ -1,16 +1,24 @@
package api package api
import "net/http" import (
"encoding/pem"
"net/http"
)
// CRL is an HTTP handler that returns the current CRL // CRL is an HTTP handler that returns the current CRL in PEM format
func (h *caHandler) CRL(w http.ResponseWriter, r *http.Request) { func (h *caHandler) CRL(w http.ResponseWriter, r *http.Request) {
crl, err := h.Authority.GenerateCertificateRevocationList(false) crlBytes, err := h.Authority.GenerateCertificateRevocationList(false)
if err != nil { if err != nil {
w.WriteHeader(500) w.WriteHeader(500)
return return
} }
pemBytes := pem.EncodeToMemory(&pem.Block{
Type: "X509 CRL",
Bytes: crlBytes,
})
w.WriteHeader(200) w.WriteHeader(200)
_, err = w.Write([]byte(crl)) _, err = w.Write(pemBytes)
} }

@ -514,24 +514,24 @@ func (a *Authority) revokeSSH(crt *ssh.Certificate, rci *db.RevokedCertificateIn
// a new CRL on demand if it has expired (or a CRL does not already exist). // a new CRL on demand if it has expired (or a CRL does not already exist).
// //
// force set to true will force regeneration of the CRL regardless of whether it has actually expired // force set to true will force regeneration of the CRL regardless of whether it has actually expired
func (a *Authority) GenerateCertificateRevocationList(force bool) (string, error) { func (a *Authority) GenerateCertificateRevocationList(force bool) ([]byte, error) {
// check for an existing CRL in the database, and return that if its valid // check for an existing CRL in the database, and return that if its valid
crlInfo, err := a.db.GetCRL() crlInfo, err := a.db.GetCRL()
if err != nil { if err != nil {
return "", err return nil, err
} }
if !force && crlInfo != nil && crlInfo.ExpiresAt.After(time.Now().UTC()) { if !force && crlInfo != nil && crlInfo.ExpiresAt.After(time.Now().UTC()) {
return crlInfo.PEM, nil return crlInfo.DER, nil
} }
// some CAS may not implement the CRLGenerator interface, so check before we proceed // some CAS may not implement the CRLGenerator interface, so check before we proceed
caCRLGenerator, ok := a.x509CAService.(casapi.CertificateAuthorityCRLGenerator) caCRLGenerator, ok := a.x509CAService.(casapi.CertificateAuthorityCRLGenerator)
if !ok { if !ok {
return "", errors.Errorf("CRL Generator not implemented") return nil, errors.Errorf("CRL Generator not implemented")
} }
revokedList, err := a.db.GetRevokedCertificates() revokedList, err := a.db.GetRevokedCertificates()
@ -574,28 +574,24 @@ func (a *Authority) GenerateCertificateRevocationList(force bool) (string, error
certificateRevocationList, err := caCRLGenerator.CreateCertificateRevocationList(&revocationList) certificateRevocationList, err := caCRLGenerator.CreateCertificateRevocationList(&revocationList)
if err != nil { if err != nil {
return "", err return nil, err
} }
// Quick and dirty PEM encoding
// TODO: clean this up
pemCRL := fmt.Sprintf("-----BEGIN X509 CRL-----\n%s\n-----END X509 CRL-----\n", base64.StdEncoding.EncodeToString(certificateRevocationList))
// Create a new db.CertificateRevocationListInfo, which stores the new Number we just generated, the // Create a new db.CertificateRevocationListInfo, which stores the new Number we just generated, the
// expiry time, and the byte-encoded CRL - then store it in the DB // expiry time, and the byte-encoded CRL - then store it in the DB
newCRLInfo := db.CertificateRevocationListInfo{ newCRLInfo := db.CertificateRevocationListInfo{
Number: n, Number: n,
ExpiresAt: revocationList.NextUpdate, ExpiresAt: revocationList.NextUpdate,
PEM: pemCRL, DER: certificateRevocationList,
} }
err = a.db.StoreCRL(&newCRLInfo) err = a.db.StoreCRL(&newCRLInfo)
if err != nil { if err != nil {
return "", err return nil, err
} }
// Finally, return our CRL PEM // Finally, return our CRL PEM
return pemCRL, nil return certificateRevocationList, nil
} }
// GetTLSCertificate creates a new leaf certificate to be used by the CA HTTPS server. // GetTLSCertificate creates a new leaf certificate to be used by the CA HTTPS server.

@ -114,12 +114,12 @@ type RevokedCertificateInfo struct {
ACME bool ACME bool
} }
// CertificateRevocationListInfo contains a CRL in PEM and associated metadata to allow a decision on whether // CertificateRevocationListInfo contains a CRL in DER format and associated
// to regenerate the CRL or not easier // metadata to allow a decision on whether to regenerate the CRL or not easier
type CertificateRevocationListInfo struct { type CertificateRevocationListInfo struct {
Number int64 Number int64
ExpiresAt time.Time ExpiresAt time.Time
PEM string DER []byte
} }
// IsRevoked returns whether or not a certificate with the given identifier // IsRevoked returns whether or not a certificate with the given identifier
@ -379,6 +379,18 @@ type MockAuthDB struct {
MShutdown func() error MShutdown func() error
} }
func (m *MockAuthDB) GetRevokedCertificates() (*[]RevokedCertificateInfo, error) {
panic("implement me")
}
func (m *MockAuthDB) GetCRL() (*CertificateRevocationListInfo, error) {
panic("implement me")
}
func (m *MockAuthDB) StoreCRL(info *CertificateRevocationListInfo) error {
panic("implement me")
}
// IsRevoked mock. // IsRevoked mock.
func (m *MockAuthDB) IsRevoked(sn string) (bool, error) { func (m *MockAuthDB) IsRevoked(sn string) (bool, error) {
if m.MIsRevoked != nil { if m.MIsRevoked != nil {

Loading…
Cancel
Save