cert-manager/pkg/controller/certificaterequests/acme/acme.go
Tim Ramlot 950948e465
start using the new 'slices' library and deprecate old util functions
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
2024-01-04 09:32:17 +01:00

305 lines
11 KiB
Go

/*
Copyright 2020 The cert-manager Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package acme
import (
"context"
"crypto/x509"
"fmt"
"slices"
k8sErrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/record"
"k8s.io/client-go/util/workqueue"
"github.com/cert-manager/cert-manager/pkg/acme"
apiutil "github.com/cert-manager/cert-manager/pkg/api/util"
cmacme "github.com/cert-manager/cert-manager/pkg/apis/acme/v1"
cmapi "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
cmacmeclientset "github.com/cert-manager/cert-manager/pkg/client/clientset/versioned/typed/acme/v1"
cmacmelisters "github.com/cert-manager/cert-manager/pkg/client/listers/acme/v1"
controllerpkg "github.com/cert-manager/cert-manager/pkg/controller"
"github.com/cert-manager/cert-manager/pkg/controller/certificaterequests"
crutil "github.com/cert-manager/cert-manager/pkg/controller/certificaterequests/util"
issuerpkg "github.com/cert-manager/cert-manager/pkg/issuer"
logf "github.com/cert-manager/cert-manager/pkg/logs"
"github.com/cert-manager/cert-manager/pkg/util/pki"
"github.com/go-logr/logr"
)
const (
// CRControllerName is the string used to refer to
// this controller when enabling or disabling it from
// command line flags.
CRControllerName = "certificaterequests-issuer-acme"
)
// ACME is a controller that implements `certificaterequests.Issuer`.
type ACME struct {
// used to record Events about resources to the API
recorder record.EventRecorder
issuerOptions controllerpkg.IssuerOptions
orderLister cmacmelisters.OrderLister
acmeClientV cmacmeclientset.AcmeV1Interface
reporter *crutil.Reporter
// fieldManager is the manager name used for Create and Apply operations.
fieldManager string
}
func init() {
// create certificate request controller for acme issuer
controllerpkg.Register(CRControllerName, func(ctx *controllerpkg.ContextFactory) (controllerpkg.Interface, error) {
// watch owned Order resources and trigger resyncs of CertificateRequests
// that own Orders automatically.
return controllerpkg.NewBuilder(ctx, CRControllerName).
For(certificaterequests.New(
apiutil.IssuerACME,
NewACME,
func(ctx *controllerpkg.Context, log logr.Logger, queue workqueue.RateLimitingInterface) ([]cache.InformerSynced, error) {
orderInformer := ctx.SharedInformerFactory.Acme().V1().Orders().Informer()
certificateRequestLister := ctx.SharedInformerFactory.Certmanager().V1().CertificateRequests().Lister()
orderInformer.AddEventHandler(&controllerpkg.BlockingEventHandler{
WorkFunc: controllerpkg.HandleOwnedResourceNamespacedFunc(
log, queue,
cmapi.SchemeGroupVersion.WithKind(cmapi.CertificateRequestKind),
func(namespace, name string) (interface{}, error) {
return certificateRequestLister.CertificateRequests(namespace).Get(name)
},
),
})
return []cache.InformerSynced{orderInformer.HasSynced}, nil
},
)).
Complete()
})
}
// NewACME returns a configured controller.
func NewACME(ctx *controllerpkg.Context) certificaterequests.Issuer {
return &ACME{
recorder: ctx.Recorder,
issuerOptions: ctx.IssuerOptions,
orderLister: ctx.SharedInformerFactory.Acme().V1().Orders().Lister(),
acmeClientV: ctx.CMClient.AcmeV1(),
reporter: crutil.NewReporter(ctx.Clock, ctx.Recorder),
fieldManager: ctx.FieldManager,
}
}
// Sign returns a CA, certificate and Key from an ACME CA.
//
// If no order exists for a CertificateRequest, an order is constructed
// and sent back to the Kubernetes API server for processing.
// The order controller then processes the order. The CertificateRequest
// is then updated with the result.
func (a *ACME) Sign(ctx context.Context, cr *cmapi.CertificateRequest, issuer cmapi.GenericIssuer) (*issuerpkg.IssueResponse, error) {
log := logf.FromContext(ctx, "sign")
// If we can't decode the CSR PEM we have to hard fail
csr, err := pki.DecodeX509CertificateRequestBytes(cr.Spec.Request)
if err != nil {
message := "Failed to decode CSR in spec.request"
a.reporter.Failed(cr, err, "RequestParsingError", message)
log.Error(err, message)
return nil, nil
}
// If the CommonName is also not present in the DNS names or IP Addresses of the Request then hard fail.
if len(csr.Subject.CommonName) > 0 && !slices.Contains(csr.DNSNames, csr.Subject.CommonName) && !slices.Contains(pki.IPAddressesToString(csr.IPAddresses), csr.Subject.CommonName) {
err = fmt.Errorf("%q does not exist in %s or %s", csr.Subject.CommonName, csr.DNSNames, pki.IPAddressesToString(csr.IPAddresses))
message := "The CSR PEM requests a commonName that is not present in the list of dnsNames or ipAddresses. If a commonName is set, ACME requires that the value is also present in the list of dnsNames or ipAddresses"
a.reporter.Failed(cr, err, "InvalidOrder", message)
log.V(logf.DebugLevel).Info(fmt.Sprintf("%s: %s", message, err))
return nil, nil
}
// If we fail to build the order we have to hard fail.
expectedOrder, err := buildOrder(cr, csr, issuer.GetSpec().ACME.EnableDurationFeature)
if err != nil {
message := "Failed to build order"
a.reporter.Failed(cr, err, "OrderBuildingError", message)
log.Error(err, message)
return nil, nil
}
order, err := a.orderLister.Orders(expectedOrder.Namespace).Get(expectedOrder.Name)
if k8sErrors.IsNotFound(err) {
// Failing to create the order here is most likely network related.
// We should backoff and keep trying.
_, err = a.acmeClientV.Orders(expectedOrder.Namespace).Create(ctx, expectedOrder, metav1.CreateOptions{FieldManager: a.fieldManager})
if err != nil {
message := fmt.Sprintf("Failed create new order resource %s/%s", expectedOrder.Namespace, expectedOrder.Name)
a.reporter.Pending(cr, err, "OrderCreatingError", message)
log.Error(err, message)
return nil, err
}
message := fmt.Sprintf("Created Order resource %s/%s",
expectedOrder.Namespace, expectedOrder.Name)
a.reporter.Pending(cr, nil, "OrderCreated", message)
log.V(logf.DebugLevel).Info(message)
return nil, nil
}
if err != nil {
// We are probably in a network error here so we should backoff and retry
message := fmt.Sprintf("Failed to get order resource %s/%s", expectedOrder.Namespace, expectedOrder.Name)
a.reporter.Pending(cr, err, "OrderGetError", message)
log.Error(err, message)
return nil, err
}
if !metav1.IsControlledBy(order, cr) {
// TODO: improve this behaviour - this issue occurs because someone
// else may create a CertificateRequest with a name that is equal to
// the name of the request we are creating, due to our hash function
// not account for parameters stored on the Request (i.e. the public key).
// We should improve the way we hash input data or somehow avoid
// relying on deterministic names for Order resources.
return nil, fmt.Errorf("found Order resource not owned by this CertificateRequest, retrying")
}
log = logf.WithRelatedResource(log, order)
// If the acme order has failed then so too does the CertificateRequest meet the same fate.
if acme.IsFailureState(order.Status.State) {
message := fmt.Sprintf("Failed to wait for order resource %q to become ready", expectedOrder.Name)
err := fmt.Errorf("order is in %q state: %s", order.Status.State, order.Status.Reason)
a.reporter.Failed(cr, err, "OrderFailed", message)
return nil, nil
}
if order.Status.State != cmacme.Valid {
// We update here to just pending while we wait for the order to be resolved.
a.reporter.Pending(cr, nil, "OrderPending",
fmt.Sprintf("Waiting on certificate issuance from order %s/%s: %q",
expectedOrder.Namespace, order.Name, order.Status.State))
log.V(logf.DebugLevel).Info("acme Order resource is not in a ready state, waiting...")
return nil, nil
}
if len(order.Status.Certificate) == 0 {
a.reporter.Pending(cr, nil, "OrderPending",
fmt.Sprintf("Waiting for order-controller to add certificate data to Order %s/%s",
expectedOrder.Namespace, order.Name))
log.V(logf.DebugLevel).Info("Order controller has not added certificate data to the Order, waiting...")
return nil, nil
}
x509Cert, err := pki.DecodeX509CertificateBytes(order.Status.Certificate)
if err != nil {
log.Error(err, "failed to decode x509 certificate data on Order resource.")
return nil, a.acmeClientV.Orders(order.Namespace).Delete(ctx, order.Name, metav1.DeleteOptions{})
}
if ok, err := pki.PublicKeyMatchesCertificate(csr.PublicKey, x509Cert); err != nil || !ok {
log.Error(err, "The public key in Order.Status.Certificate does not match the public key in CertificateRequest.Spec.Request. Deleting the order.")
return nil, a.acmeClientV.Orders(order.Namespace).Delete(ctx, order.Name, metav1.DeleteOptions{})
}
log.V(logf.InfoLevel).Info("certificate issued")
// Order valid, return cert. The calling controller will update with ready if its happy with the cert.
return &issuerpkg.IssueResponse{
Certificate: order.Status.Certificate,
}, nil
}
// Build order. If we error here it is a terminating failure.
func buildOrder(cr *cmapi.CertificateRequest, csr *x509.CertificateRequest, enableDurationFeature bool) (*cmacme.Order, error) {
var ipAddresses []string
for _, ip := range csr.IPAddresses {
ipAddresses = append(ipAddresses, ip.String())
}
var dnsNames []string
if csr.DNSNames != nil {
dnsNames = csr.DNSNames
}
spec := cmacme.OrderSpec{
Request: cr.Spec.Request,
IssuerRef: cr.Spec.IssuerRef,
CommonName: csr.Subject.CommonName,
DNSNames: dnsNames,
IPAddresses: ipAddresses,
}
if enableDurationFeature {
spec.Duration = cr.Spec.Duration
}
computeNameSpec := spec.DeepCopy()
// create a deep copy of the OrderSpec so we can overwrite the Request and NotAfter field
computeNameSpec.Request = nil
var hashObj interface{}
hashObj = computeNameSpec
if len(cr.Name) >= 52 {
// Pass a unique struct for hashing so that names at or longer than 52 characters
// receive a unique hash. Otherwise, orders will have truncated names with colliding
// hashes, possibly leading to non-renewal.
hashObj = struct {
CRName string `json:"certificateRequestName"`
Spec *cmacme.OrderSpec `json:"spec"`
}{
CRName: cr.Name,
Spec: computeNameSpec,
}
}
name, err := apiutil.ComputeName(cr.Name, hashObj)
if err != nil {
return nil, err
}
// truncate certificate name so final name will be <= 63 characters.
// hash (uint32) will be at most 10 digits long, and we account for
// the hyphen.
return &cmacme.Order{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: cr.Namespace,
Labels: cr.Labels,
// Annotations include the filtered annotations copied from the Certificate.
Annotations: cr.Annotations,
OwnerReferences: []metav1.OwnerReference{
*metav1.NewControllerRef(cr, cmapi.SchemeGroupVersion.WithKind(cmapi.CertificateRequestKind)),
},
},
Spec: spec,
}, nil
}