Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions authority/provisioner/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ import (
"time"

"github.com/pkg/errors"

"go.step.sm/linkedca"

"github.com/smallstep/certificates/internal/httptransport"
"github.com/smallstep/certificates/middleware/requestid"
"github.com/smallstep/certificates/templates"
"github.com/smallstep/certificates/webhook"
"go.step.sm/linkedca"
)

var ErrWebhookDenied = errors.New("webhook server did not allow request")
Expand Down Expand Up @@ -200,13 +203,16 @@ retry:
if w.DisableTLSClientAuth {
transport, ok := client.Transport.(*http.Transport)
if !ok {
return nil, errors.New("client transport is not a *http.Transport")
transport = httptransport.New()
} else {
transport = transport.Clone()
}
transport = transport.Clone()
tlsConfig := transport.TLSClientConfig.Clone()
tlsConfig.GetClientCertificate = nil
tlsConfig.Certificates = nil
transport.TLSClientConfig = tlsConfig

if transport.TLSClientConfig != nil {
transport.TLSClientConfig.GetClientCertificate = nil
transport.TLSClientConfig.Certificates = nil
}

client = &http.Client{
Transport: transport,
}
Expand Down
4 changes: 3 additions & 1 deletion authority/provisioner/webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
"go.step.sm/crypto/x509util"
"go.step.sm/linkedca"

"github.com/smallstep/certificates/internal/httptransport"
"github.com/smallstep/certificates/middleware/requestid"
"github.com/smallstep/certificates/webhook"
)
Expand Down Expand Up @@ -647,7 +648,8 @@ func TestWebhook_Do(t *testing.T) {
}
cert, err := tls.LoadX509KeyPair("testdata/certs/foo.crt", "testdata/secrets/foo.key")
require.NoError(t, err)
transport := http.DefaultTransport.(*http.Transport).Clone()

transport := httptransport.New()
transport.TLSClientConfig = &tls.Config{
InsecureSkipVerify: true,
Certificates: []tls.Certificate{cert},
Expand Down
3 changes: 2 additions & 1 deletion ca/ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import (
"github.com/smallstep/certificates/authority/config"
"github.com/smallstep/certificates/cas/apiv1"
"github.com/smallstep/certificates/db"
"github.com/smallstep/certificates/internal/httptransport"
"github.com/smallstep/certificates/internal/metrix"
"github.com/smallstep/certificates/logging"
"github.com/smallstep/certificates/middleware/requestid"
Expand Down Expand Up @@ -196,7 +197,7 @@ func (ca *CA) Init(cfg *config.Config) (*CA, error) {
opts = append(opts, authority.WithMeter(meter))
}

webhookTransport := http.DefaultTransport.(*http.Transport).Clone()
webhookTransport := httptransport.New()
opts = append(opts, authority.WithWebhookClient(&http.Client{Transport: webhookTransport}))

auth, err := authority.New(cfg, opts...)
Expand Down
3 changes: 2 additions & 1 deletion ca/identity/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"os"

"github.com/pkg/errors"
"github.com/smallstep/certificates/internal/httptransport"
)

// Client wraps http.Client with a transport using the step root and identity.
Expand Down Expand Up @@ -60,7 +61,7 @@ func LoadClient() (*Client, error) {
}

// Prepare transport with information in defaults.json and identity.json
tr := http.DefaultTransport.(*http.Transport).Clone()
tr := httptransport.New()
tr.TLSClientConfig = &tls.Config{
MinVersion: tls.VersionTLS12,
GetClientCertificate: identity.GetClientCertificateFunc(),
Expand Down
4 changes: 3 additions & 1 deletion ca/identity/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
"reflect"
"sort"
"testing"

"github.com/smallstep/certificates/internal/httptransport"
)

func returnInput(val string) func() string {
Expand Down Expand Up @@ -129,7 +131,7 @@ func TestLoadClient(t *testing.T) {
pool := x509.NewCertPool()
pool.AppendCertsFromPEM(b)

tr := http.DefaultTransport.(*http.Transport).Clone()
tr := httptransport.New()
tr.TLSClientConfig = &tls.Config{
Certificates: []tls.Certificate{crt},
RootCAs: pool,
Expand Down
3 changes: 2 additions & 1 deletion ca/identity/identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"go.step.sm/crypto/pemutil"

"github.com/smallstep/certificates/api"
"github.com/smallstep/certificates/internal/httptransport"
)

// Type represents the different types of identity files.
Expand Down Expand Up @@ -295,7 +296,7 @@ func (i *Identity) Renew(client Renewer) error {
return err
}

tr := http.DefaultTransport.(*http.Transport).Clone()
tr := httptransport.New()
tr.TLSClientConfig = &tls.Config{
Certificates: []tls.Certificate{cert},
RootCAs: client.GetRootCAs(),
Expand Down
26 changes: 26 additions & 0 deletions internal/httptransport/httptransport.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Package httptransport implements initialization of [http.Transport] instances and related
// functionality.
package httptransport

import (
"net"
"net/http"
"time"
)

// New returns a reference to an [http.Transport] that's initialized just like the
// [http.DefaultTransport] is by the standard library.
func New() *http.Transport {
return &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).DialContext,
ForceAttemptHTTP2: true,
MaxIdleConns: 100,
IdleConnTimeout: 90 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
}
}
3 changes: 2 additions & 1 deletion test/integration/scep/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import (
"github.com/smallstep/certificates/authority/provisioner"
"github.com/smallstep/certificates/ca"
"github.com/smallstep/certificates/cas/apiv1"
"github.com/smallstep/certificates/internal/httptransport"
)

func newCAClient(t *testing.T, caURL, rootFilepath string) *ca.Client {
Expand Down Expand Up @@ -170,7 +171,7 @@ func createSCEPClient(t *testing.T, caURL string, root *x509.Certificate) *clien
t.Helper()
trustedRoots := x509.NewCertPool()
trustedRoots.AddCert(root)
transport := http.DefaultTransport.(*http.Transport).Clone()
transport := httptransport.New()
transport.TLSClientConfig = &tls.Config{
RootCAs: trustedRoots,
}
Expand Down
Loading