2018-12-19 14:29:25 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 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 transport
|
|
|
|
|
|
|
|
import (
|
2022-11-01 09:43:55 +00:00
|
|
|
"context"
|
2018-12-19 14:29:25 +00:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
2020-01-14 10:38:55 +00:00
|
|
|
"strings"
|
2018-12-19 14:29:25 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
utilnet "k8s.io/apimachinery/pkg/util/net"
|
2020-04-14 07:04:33 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
2018-12-19 14:29:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TlsTransportCache caches TLS http.RoundTrippers different configurations. The
|
|
|
|
// same RoundTripper will be returned for configs with identical TLS options If
|
|
|
|
// the config has no custom TLS options, http.DefaultTransport is returned.
|
|
|
|
type tlsTransportCache struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
transports map[tlsCacheKey]*http.Transport
|
|
|
|
}
|
|
|
|
|
2022-08-24 02:24:25 +00:00
|
|
|
// DialerStopCh is stop channel that is passed down to dynamic cert dialer.
|
|
|
|
// It's exposed as variable for testing purposes to avoid testing for goroutine
|
|
|
|
// leakages.
|
|
|
|
var DialerStopCh = wait.NeverStop
|
|
|
|
|
2018-12-19 14:29:25 +00:00
|
|
|
const idleConnsPerHost = 25
|
|
|
|
|
|
|
|
var tlsCache = &tlsTransportCache{transports: make(map[tlsCacheKey]*http.Transport)}
|
|
|
|
|
|
|
|
type tlsCacheKey struct {
|
2020-01-14 10:38:55 +00:00
|
|
|
insecure bool
|
|
|
|
caData string
|
|
|
|
certData string
|
2020-12-17 12:28:29 +00:00
|
|
|
keyData string `datapolicy:"security-key"`
|
2020-04-14 07:04:33 +00:00
|
|
|
certFile string
|
|
|
|
keyFile string
|
2020-01-14 10:38:55 +00:00
|
|
|
serverName string
|
|
|
|
nextProtos string
|
|
|
|
disableCompression bool
|
2022-11-01 09:43:55 +00:00
|
|
|
// these functions are wrapped to allow them to be used as map keys
|
|
|
|
getCert *GetCertHolder
|
|
|
|
dial *DialHolder
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t tlsCacheKey) String() string {
|
|
|
|
keyText := "<none>"
|
|
|
|
if len(t.keyData) > 0 {
|
|
|
|
keyText = "<redacted>"
|
|
|
|
}
|
2022-11-01 09:43:55 +00:00
|
|
|
return fmt.Sprintf("insecure:%v, caData:%#v, certData:%#v, keyData:%s, serverName:%s, disableCompression:%t, getCert:%p, dial:%p",
|
|
|
|
t.insecure, t.caData, t.certData, keyText, t.serverName, t.disableCompression, t.getCert, t.dial)
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *tlsTransportCache) get(config *Config) (http.RoundTripper, error) {
|
2020-12-17 12:28:29 +00:00
|
|
|
key, canCache, err := tlsConfigKey(config)
|
2018-12-19 14:29:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-17 12:28:29 +00:00
|
|
|
if canCache {
|
|
|
|
// Ensure we only create a single transport for the given TLS options
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
2018-12-19 14:29:25 +00:00
|
|
|
|
2020-12-17 12:28:29 +00:00
|
|
|
// See if we already have a custom transport for this config
|
|
|
|
if t, ok := c.transports[key]; ok {
|
|
|
|
return t, nil
|
|
|
|
}
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the TLS options for this client config
|
|
|
|
tlsConfig, err := TLSConfigFor(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// The options didn't require a custom TLS config
|
2023-02-01 17:06:36 +00:00
|
|
|
if tlsConfig == nil && config.DialHolder == nil && config.Proxy == nil {
|
2018-12-19 14:29:25 +00:00
|
|
|
return http.DefaultTransport, nil
|
|
|
|
}
|
|
|
|
|
2022-11-01 09:43:55 +00:00
|
|
|
var dial func(ctx context.Context, network, address string) (net.Conn, error)
|
2023-02-01 17:06:36 +00:00
|
|
|
if config.DialHolder != nil {
|
|
|
|
dial = config.DialHolder.Dial
|
2022-11-01 09:43:55 +00:00
|
|
|
} else {
|
2018-12-19 14:29:25 +00:00
|
|
|
dial = (&net.Dialer{
|
|
|
|
Timeout: 30 * time.Second,
|
|
|
|
KeepAlive: 30 * time.Second,
|
2019-01-15 16:20:41 +00:00
|
|
|
}).DialContext
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|
2020-04-14 07:04:33 +00:00
|
|
|
|
|
|
|
// If we use are reloading files, we need to handle certificate rotation properly
|
|
|
|
// TODO(jackkleeman): We can also add rotation here when config.HasCertCallback() is true
|
|
|
|
if config.TLS.ReloadTLSFiles {
|
|
|
|
dynamicCertDialer := certRotatingDialer(tlsConfig.GetClientCertificate, dial)
|
|
|
|
tlsConfig.GetClientCertificate = dynamicCertDialer.GetClientCertificate
|
|
|
|
dial = dynamicCertDialer.connDialer.DialContext
|
2022-08-24 02:24:25 +00:00
|
|
|
go dynamicCertDialer.Run(DialerStopCh)
|
2020-04-14 07:04:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-17 12:28:29 +00:00
|
|
|
proxy := http.ProxyFromEnvironment
|
|
|
|
if config.Proxy != nil {
|
|
|
|
proxy = config.Proxy
|
|
|
|
}
|
|
|
|
|
|
|
|
transport := utilnet.SetTransportDefaults(&http.Transport{
|
|
|
|
Proxy: proxy,
|
2018-12-19 14:29:25 +00:00
|
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
|
|
TLSClientConfig: tlsConfig,
|
|
|
|
MaxIdleConnsPerHost: idleConnsPerHost,
|
2019-01-15 16:20:41 +00:00
|
|
|
DialContext: dial,
|
2020-01-14 10:38:55 +00:00
|
|
|
DisableCompression: config.DisableCompression,
|
2018-12-19 14:29:25 +00:00
|
|
|
})
|
2020-12-17 12:28:29 +00:00
|
|
|
|
|
|
|
if canCache {
|
|
|
|
// Cache a single transport for these options
|
|
|
|
c.transports[key] = transport
|
|
|
|
}
|
|
|
|
|
|
|
|
return transport, nil
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// tlsConfigKey returns a unique key for tls.Config objects returned from TLSConfigFor
|
2020-12-17 12:28:29 +00:00
|
|
|
func tlsConfigKey(c *Config) (tlsCacheKey, bool, error) {
|
2018-12-19 14:29:25 +00:00
|
|
|
// Make sure ca/key/cert content is loaded
|
|
|
|
if err := loadTLSFiles(c); err != nil {
|
2020-12-17 12:28:29 +00:00
|
|
|
return tlsCacheKey{}, false, err
|
|
|
|
}
|
|
|
|
|
2022-11-01 09:43:55 +00:00
|
|
|
if c.Proxy != nil {
|
2020-12-17 12:28:29 +00:00
|
|
|
// cannot determine equality for functions
|
|
|
|
return tlsCacheKey{}, false, nil
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|
2020-12-17 12:28:29 +00:00
|
|
|
|
2020-04-14 07:04:33 +00:00
|
|
|
k := tlsCacheKey{
|
2020-01-14 10:38:55 +00:00
|
|
|
insecure: c.TLS.Insecure,
|
|
|
|
caData: string(c.TLS.CAData),
|
|
|
|
serverName: c.TLS.ServerName,
|
|
|
|
nextProtos: strings.Join(c.TLS.NextProtos, ","),
|
|
|
|
disableCompression: c.DisableCompression,
|
2022-11-01 09:43:55 +00:00
|
|
|
getCert: c.TLS.GetCertHolder,
|
|
|
|
dial: c.DialHolder,
|
2020-04-14 07:04:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if c.TLS.ReloadTLSFiles {
|
|
|
|
k.certFile = c.TLS.CertFile
|
|
|
|
k.keyFile = c.TLS.KeyFile
|
|
|
|
} else {
|
|
|
|
k.certData = string(c.TLS.CertData)
|
|
|
|
k.keyData = string(c.TLS.KeyData)
|
|
|
|
}
|
|
|
|
|
2020-12-17 12:28:29 +00:00
|
|
|
return k, true, nil
|
2018-12-19 14:29:25 +00:00
|
|
|
}
|