mirror of
https://github.com/int128/kubelogin.git
synced 2026-02-14 16:39:51 +00:00
67 lines
2.1 KiB
Go
67 lines
2.1 KiB
Go
package tls
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"encoding/base64"
|
|
"io/ioutil"
|
|
|
|
"github.com/int128/kubelogin/pkg/adaptors"
|
|
"golang.org/x/xerrors"
|
|
)
|
|
|
|
// NewConfig returns a tls.Config with the given certificates and options.
|
|
func NewConfig(config adaptors.OIDCClientConfig, logger adaptors.Logger) (*tls.Config, error) {
|
|
pool := x509.NewCertPool()
|
|
if config.Config.IDPCertificateAuthority != "" {
|
|
logger.V(1).Infof("Loading the certificate %s", config.Config.IDPCertificateAuthority)
|
|
err := appendCertificateFromFile(pool, config.Config.IDPCertificateAuthority)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("could not load the certificate of idp-certificate-authority: %w", err)
|
|
}
|
|
}
|
|
if config.Config.IDPCertificateAuthorityData != "" {
|
|
logger.V(1).Infof("Loading the certificate of idp-certificate-authority-data")
|
|
err := appendEncodedCertificate(pool, config.Config.IDPCertificateAuthorityData)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("could not load the certificate of idp-certificate-authority-data: %w", err)
|
|
}
|
|
}
|
|
if config.CACertFilename != "" {
|
|
logger.V(1).Infof("Loading the certificate %s", config.CACertFilename)
|
|
err := appendCertificateFromFile(pool, config.CACertFilename)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("could not load the certificate: %w", err)
|
|
}
|
|
}
|
|
c := &tls.Config{
|
|
InsecureSkipVerify: config.SkipTLSVerify,
|
|
}
|
|
if len(pool.Subjects()) > 0 {
|
|
c.RootCAs = pool
|
|
}
|
|
return c, nil
|
|
}
|
|
|
|
func appendCertificateFromFile(pool *x509.CertPool, filename string) error {
|
|
b, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
return xerrors.Errorf("could not read %s: %w", filename, err)
|
|
}
|
|
if !pool.AppendCertsFromPEM(b) {
|
|
return xerrors.Errorf("could not append certificate from %s", filename)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func appendEncodedCertificate(pool *x509.CertPool, base64String string) error {
|
|
b, err := base64.StdEncoding.DecodeString(base64String)
|
|
if err != nil {
|
|
return xerrors.Errorf("could not decode base64: %w", err)
|
|
}
|
|
if !pool.AppendCertsFromPEM(b) {
|
|
return xerrors.Errorf("could not append certificate")
|
|
}
|
|
return nil
|
|
}
|