123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- /*
- 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 (
- "context"
- "crypto/tls"
- "net"
- "net/http"
- "net/url"
- )
- // Config holds various options for establishing a transport.
- type Config struct {
- // UserAgent is an optional field that specifies the caller of this
- // request.
- UserAgent string
- // The base TLS configuration for this transport.
- TLS TLSConfig
- // Username and password for basic authentication
- Username string
- Password string `datapolicy:"password"`
- // Bearer token for authentication
- BearerToken string `datapolicy:"token"`
- // Path to a file containing a BearerToken.
- // If set, the contents are periodically read.
- // The last successfully read value takes precedence over BearerToken.
- BearerTokenFile string
- // Impersonate is the config that this Config will impersonate using
- Impersonate ImpersonationConfig
- // DisableCompression bypasses automatic GZip compression requests to the
- // server.
- DisableCompression bool
- // Transport may be used for custom HTTP behavior. This attribute may
- // not be specified with the TLS client certificate options. Use
- // WrapTransport for most client level operations.
- Transport http.RoundTripper
- // WrapTransport will be invoked for custom HTTP behavior after the
- // underlying transport is initialized (either the transport created
- // from TLSClientConfig, Transport, or http.DefaultTransport). The
- // config may layer other RoundTrippers on top of the returned
- // RoundTripper.
- //
- // A future release will change this field to an array. Use config.Wrap()
- // instead of setting this value directly.
- WrapTransport WrapperFunc
- // DialHolder specifies the dial function for creating unencrypted TCP connections.
- // This struct indirection is used to make transport configs cacheable.
- DialHolder *DialHolder
- // Proxy is the proxy func to be used for all requests made by this
- // transport. If Proxy is nil, http.ProxyFromEnvironment is used. If Proxy
- // returns a nil *URL, no proxy is used.
- //
- // socks5 proxying does not currently support spdy streaming endpoints.
- Proxy func(*http.Request) (*url.URL, error)
- }
- // DialHolder is used to make the wrapped function comparable so that it can be used as a map key.
- type DialHolder struct {
- Dial func(ctx context.Context, network, address string) (net.Conn, error)
- }
- // ImpersonationConfig has all the available impersonation options
- type ImpersonationConfig struct {
- // UserName matches user.Info.GetName()
- UserName string
- // UID matches user.Info.GetUID()
- UID string
- // Groups matches user.Info.GetGroups()
- Groups []string
- // Extra matches user.Info.GetExtra()
- Extra map[string][]string
- }
- // HasCA returns whether the configuration has a certificate authority or not.
- func (c *Config) HasCA() bool {
- return len(c.TLS.CAData) > 0 || len(c.TLS.CAFile) > 0
- }
- // HasBasicAuth returns whether the configuration has basic authentication or not.
- func (c *Config) HasBasicAuth() bool {
- return len(c.Username) != 0
- }
- // HasTokenAuth returns whether the configuration has token authentication or not.
- func (c *Config) HasTokenAuth() bool {
- return len(c.BearerToken) != 0 || len(c.BearerTokenFile) != 0
- }
- // HasCertAuth returns whether the configuration has certificate authentication or not.
- func (c *Config) HasCertAuth() bool {
- return (len(c.TLS.CertData) != 0 || len(c.TLS.CertFile) != 0) && (len(c.TLS.KeyData) != 0 || len(c.TLS.KeyFile) != 0)
- }
- // HasCertCallback returns whether the configuration has certificate callback or not.
- func (c *Config) HasCertCallback() bool {
- return c.TLS.GetCertHolder != nil
- }
- // Wrap adds a transport middleware function that will give the caller
- // an opportunity to wrap the underlying http.RoundTripper prior to the
- // first API call being made. The provided function is invoked after any
- // existing transport wrappers are invoked.
- func (c *Config) Wrap(fn WrapperFunc) {
- c.WrapTransport = Wrappers(c.WrapTransport, fn)
- }
- // TLSConfig holds the information needed to set up a TLS transport.
- type TLSConfig struct {
- CAFile string // Path of the PEM-encoded server trusted root certificates.
- CertFile string // Path of the PEM-encoded client certificate.
- KeyFile string // Path of the PEM-encoded client key.
- ReloadTLSFiles bool // Set to indicate that the original config provided files, and that they should be reloaded
- Insecure bool // Server should be accessed without verifying the certificate. For testing only.
- ServerName string // Override for the server name passed to the server for SNI and used to verify certificates.
- CAData []byte // Bytes of the PEM-encoded server trusted root certificates. Supercedes CAFile.
- CertData []byte // Bytes of the PEM-encoded client certificate. Supercedes CertFile.
- KeyData []byte // Bytes of the PEM-encoded client key. Supercedes KeyFile.
- // NextProtos is a list of supported application level protocols, in order of preference.
- // Used to populate tls.Config.NextProtos.
- // To indicate to the server http/1.1 is preferred over http/2, set to ["http/1.1", "h2"] (though the server is free to ignore that preference).
- // To use only http/1.1, set to ["http/1.1"].
- NextProtos []string
- // Callback that returns a TLS client certificate. CertData, CertFile, KeyData and KeyFile supercede this field.
- // This struct indirection is used to make transport configs cacheable.
- GetCertHolder *GetCertHolder
- }
- // GetCertHolder is used to make the wrapped function comparable so that it can be used as a map key.
- type GetCertHolder struct {
- GetCert func() (*tls.Certificate, error)
- }
|