-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load certificate when they are updated when internal-encryption is en…
…abled (#13854) * Load certificate when they are updated Currently we need to restart activator when certificates are updated. This patch fixes it by: * Using `GetCertificate` for server certs. * Using `VerifyPeerCertificate` for custom CA verification. * Caching the cert for peformance. Fix #13694 * Merge if statement * Use TLSConfig for cache * Use LegacyFakeDnsName * Clean up * Fix CI * Drop delete and lock * Get secret beforehand * certificates to certificate * Fill in certificate before reconciler loop * Rename function
- Loading branch information
Showing
6 changed files
with
573 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
Copyright 2023 The Knative 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 certificate | ||
|
||
import ( | ||
"context" | ||
"crypto/tls" | ||
"crypto/x509" | ||
"encoding/pem" | ||
"sync" | ||
|
||
"go.uber.org/zap" | ||
corev1 "k8s.io/api/core/v1" | ||
v1 "k8s.io/client-go/informers/core/v1" | ||
"k8s.io/client-go/tools/cache" | ||
|
||
"knative.dev/control-protocol/pkg/certificates" | ||
netcfg "knative.dev/networking/pkg/config" | ||
"knative.dev/pkg/controller" | ||
secretinformer "knative.dev/pkg/injection/clients/namespacedkube/informers/core/v1/secret" | ||
"knative.dev/pkg/logging" | ||
"knative.dev/pkg/system" | ||
) | ||
|
||
// CertCache caches certificates and CA pool. | ||
type CertCache struct { | ||
secretInformer v1.SecretInformer | ||
logger *zap.SugaredLogger | ||
|
||
certificate *tls.Certificate | ||
TLSConf tls.Config | ||
|
||
certificatesMux sync.RWMutex | ||
} | ||
|
||
// NewCertCache starts secretInformer. | ||
func NewCertCache(ctx context.Context) *CertCache { | ||
secretInformer := secretinformer.Get(ctx) | ||
|
||
cr := &CertCache{ | ||
secretInformer: secretInformer, | ||
logger: logging.FromContext(ctx), | ||
} | ||
|
||
secret, err := cr.secretInformer.Lister().Secrets(system.Namespace()).Get(netcfg.ServingInternalCertName) | ||
if err != nil { | ||
cr.logger.Warnw("failed to get secret", zap.Error(err)) | ||
return nil | ||
} | ||
|
||
cr.updateCache(secret) | ||
|
||
secretInformer.Informer().AddEventHandler(cache.FilteringResourceEventHandler{ | ||
FilterFunc: controller.FilterWithNameAndNamespace(system.Namespace(), netcfg.ServingInternalCertName), | ||
Handler: cache.ResourceEventHandlerFuncs{ | ||
UpdateFunc: cr.handleCertificateUpdate, | ||
AddFunc: cr.handleCertificateAdd, | ||
}, | ||
}) | ||
|
||
return cr | ||
} | ||
|
||
func (cr *CertCache) handleCertificateAdd(added interface{}) { | ||
if secret, ok := added.(*corev1.Secret); ok { | ||
cr.updateCache(secret) | ||
} | ||
} | ||
|
||
func (cr *CertCache) updateCache(secret *corev1.Secret) { | ||
cr.certificatesMux.Lock() | ||
defer cr.certificatesMux.Unlock() | ||
|
||
cert, err := tls.X509KeyPair(secret.Data[certificates.CertName], secret.Data[certificates.PrivateKeyName]) | ||
if err != nil { | ||
cr.logger.Warnw("failed to parse secret", zap.Error(err)) | ||
return | ||
} | ||
cr.certificate = &cert | ||
|
||
pool := x509.NewCertPool() | ||
block, _ := pem.Decode(secret.Data[certificates.CaCertName]) | ||
ca, err := x509.ParseCertificate(block.Bytes) | ||
if err != nil { | ||
cr.logger.Warnw("failed to parse CA", zap.Error(err)) | ||
return | ||
} | ||
pool.AddCert(ca) | ||
|
||
cr.TLSConf.RootCAs = pool | ||
cr.TLSConf.ServerName = certificates.LegacyFakeDnsName | ||
cr.TLSConf.MinVersion = tls.VersionTLS12 | ||
} | ||
|
||
func (cr *CertCache) handleCertificateUpdate(_, new interface{}) { | ||
cr.handleCertificateAdd(new) | ||
} | ||
|
||
// GetCertificate returns the cached certificates. | ||
func (cr *CertCache) GetCertificate(_ *tls.ClientHelloInfo) (*tls.Certificate, error) { | ||
return cr.certificate, nil | ||
} |
Oops, something went wrong.