/* Copyright 2019 The Kubernetes 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 renewal import ( "crypto" "crypto/x509" "path/filepath" "github.com/pkg/errors" "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" certutil "k8s.io/client-go/util/cert" "k8s.io/client-go/util/keyutil" pkiutil "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil" ) // certificateReadWriter defines the behavior of a component that // read or write a certificate stored/embedded in a file type certificateReadWriter interface { // Read a certificate stored/embedded in a file Read() (*x509.Certificate, error) // Write (update) a certificate stored/embedded in a file Write(*x509.Certificate, crypto.Signer) error } // pkiCertificateReadWriter defines a certificateReadWriter for certificate files // in the K8s pki managed by kubeadm type pkiCertificateReadWriter struct { baseName string certificateDir string } // newPKICertificateReadWriter return a new pkiCertificateReadWriter func newPKICertificateReadWriter(certificateDir string, baseName string) *pkiCertificateReadWriter { return &pkiCertificateReadWriter{ baseName: baseName, certificateDir: certificateDir, } } // Read a certificate from a file the K8s pki managed by kubeadm func (rw *pkiCertificateReadWriter) Read() (*x509.Certificate, error) { certificatePath, _ := pkiutil.PathsForCertAndKey(rw.certificateDir, rw.baseName) certs, err := certutil.CertsFromFile(certificatePath) if err != nil { return nil, errors.Wrapf(err, "failed to load existing certificate %s", rw.baseName) } if len(certs) != 1 { return nil, errors.Errorf("wanted exactly one certificate, got %d", len(certs)) } return certs[0], nil } // Write a certificate to files in the K8s pki managed by kubeadm func (rw *pkiCertificateReadWriter) Write(newCert *x509.Certificate, newKey crypto.Signer) error { if err := pkiutil.WriteCertAndKey(rw.certificateDir, rw.baseName, newCert, newKey); err != nil { return errors.Wrapf(err, "failed to write new certificate %s", rw.baseName) } return nil } // kubeConfigReadWriter defines a certificateReadWriter for certificate files // embedded in the kubeConfig files managed by kubeadm, and more specifically // for the client certificate of the AuthInfo type kubeConfigReadWriter struct { kubernetesDir string kubeConfigFileName string kubeConfigFilePath string kubeConfig *clientcmdapi.Config } // newKubeconfigReadWriter return a new kubeConfigReadWriter func newKubeconfigReadWriter(kubernetesDir string, kubeConfigFileName string) *kubeConfigReadWriter { return &kubeConfigReadWriter{ kubernetesDir: kubernetesDir, kubeConfigFileName: kubeConfigFileName, kubeConfigFilePath: filepath.Join(kubernetesDir, kubeConfigFileName), } } // Read a certificate embedded in kubeConfig file managed by kubeadm. // Please note that the kubeConfig file itself is kept in the ReadWriter state thus allowing // to preserve the attributes (Context, Servers, AuthInfo etc.) func (rw *kubeConfigReadWriter) Read() (*x509.Certificate, error) { // try to load the kubeConfig file kubeConfig, err := clientcmd.LoadFromFile(rw.kubeConfigFilePath) if err != nil { return nil, errors.Wrapf(err, "failed to load kubeConfig file %s", rw.kubeConfigFilePath) } // get current context if _, ok := kubeConfig.Contexts[kubeConfig.CurrentContext]; !ok { return nil, errors.Errorf("invalid kubeConfig file %s: missing context %s", rw.kubeConfigFilePath, kubeConfig.CurrentContext) } // get cluster info for current context and ensure a server certificate is embedded in it clusterName := kubeConfig.Contexts[kubeConfig.CurrentContext].Cluster if _, ok := kubeConfig.Clusters[clusterName]; !ok { return nil, errors.Errorf("invalid kubeConfig file %s: missing cluster %s", rw.kubeConfigFilePath, clusterName) } cluster := kubeConfig.Clusters[clusterName] if len(cluster.CertificateAuthorityData) == 0 { return nil, errors.Errorf("kubeConfig file %s does not have and embedded server certificate", rw.kubeConfigFilePath) } // get auth info for current context and ensure a client certificate is embedded in it authInfoName := kubeConfig.Contexts[kubeConfig.CurrentContext].AuthInfo if _, ok := kubeConfig.AuthInfos[authInfoName]; !ok { return nil, errors.Errorf("invalid kubeConfig file %s: missing authInfo %s", rw.kubeConfigFilePath, authInfoName) } authInfo := kubeConfig.AuthInfos[authInfoName] if len(authInfo.ClientCertificateData) == 0 { return nil, errors.Errorf("kubeConfig file %s does not have and embedded client certificate", rw.kubeConfigFilePath) } // parse the client certificate, retrive the cert config and then renew it certs, err := certutil.ParseCertsPEM(authInfo.ClientCertificateData) if err != nil { return nil, errors.Wrapf(err, "kubeConfig file %s does not contain a valid client certificate", rw.kubeConfigFilePath) } rw.kubeConfig = kubeConfig return certs[0], nil } // Write a certificate embedded in kubeConfig file managed by kubeadm // Please note that all the other attribute of the kubeConfig file are preserved, but this // requires to call Read before Write func (rw *kubeConfigReadWriter) Write(newCert *x509.Certificate, newKey crypto.Signer) error { // check if Read was called before Write if rw.kubeConfig == nil { return errors.Errorf("failed to Write kubeConfig file with renewd certs. It is necessary to call Read before Write") } // encodes the new key encodedClientKey, err := keyutil.MarshalPrivateKeyToPEM(newKey) if err != nil { return errors.Wrapf(err, "failed to marshal private key to PEM") } // get auth info for current context and ensure a client certificate is embedded in it authInfoName := rw.kubeConfig.Contexts[rw.kubeConfig.CurrentContext].AuthInfo // create a kubeConfig copy with the new client certs newConfig := rw.kubeConfig.DeepCopy() newConfig.AuthInfos[authInfoName].ClientKeyData = encodedClientKey newConfig.AuthInfos[authInfoName].ClientCertificateData = pkiutil.EncodeCertPEM(newCert) // writes the kubeConfig to disk return clientcmd.WriteToFile(*newConfig, rw.kubeConfigFilePath) }