2020-03-23 15:48:06 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
2021-11-09 11:16:08 +00:00
|
|
|
"crypto/tls"
|
|
|
|
"net"
|
2020-03-23 15:48:06 +00:00
|
|
|
"net/http"
|
2021-11-09 11:16:08 +00:00
|
|
|
"time"
|
2020-03-23 15:48:06 +00:00
|
|
|
|
2021-11-09 11:16:08 +00:00
|
|
|
"github.com/traefik/traefik/v2/pkg/config/dynamic"
|
2020-03-23 15:48:06 +00:00
|
|
|
"golang.org/x/net/http/httpguts"
|
|
|
|
"golang.org/x/net/http2"
|
|
|
|
)
|
|
|
|
|
2021-11-09 11:16:08 +00:00
|
|
|
func newSmartRoundTripper(transport *http.Transport, forwardingTimeouts *dynamic.ForwardingTimeouts) (http.RoundTripper, error) {
|
2020-03-23 15:48:06 +00:00
|
|
|
transportHTTP1 := transport.Clone()
|
|
|
|
|
2021-11-09 11:16:08 +00:00
|
|
|
transportHTTP2, err := http2.ConfigureTransports(transport)
|
2020-03-23 15:48:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-09 11:16:08 +00:00
|
|
|
if forwardingTimeouts != nil {
|
|
|
|
transportHTTP2.ReadIdleTimeout = time.Duration(forwardingTimeouts.ReadIdleTimeout)
|
|
|
|
transportHTTP2.PingTimeout = time.Duration(forwardingTimeouts.PingTimeout)
|
|
|
|
}
|
|
|
|
|
|
|
|
transportH2C := &h2cTransportWrapper{
|
|
|
|
Transport: &http2.Transport{
|
|
|
|
DialTLS: func(network, addr string, cfg *tls.Config) (net.Conn, error) {
|
|
|
|
return net.Dial(network, addr)
|
|
|
|
},
|
|
|
|
AllowHTTP: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if forwardingTimeouts != nil {
|
|
|
|
transportH2C.ReadIdleTimeout = time.Duration(forwardingTimeouts.ReadIdleTimeout)
|
|
|
|
transportH2C.PingTimeout = time.Duration(forwardingTimeouts.PingTimeout)
|
|
|
|
}
|
|
|
|
|
|
|
|
transport.RegisterProtocol("h2c", transportH2C)
|
|
|
|
|
2020-03-23 15:48:06 +00:00
|
|
|
return &smartRoundTripper{
|
|
|
|
http2: transport,
|
|
|
|
http: transportHTTP1,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-11-09 11:16:08 +00:00
|
|
|
// smartRoundTripper implements RoundTrip while making sure that HTTP/2 is not used
|
|
|
|
// with protocols that start with a Connection Upgrade, such as SPDY or Websocket.
|
2020-03-23 15:48:06 +00:00
|
|
|
type smartRoundTripper struct {
|
|
|
|
http2 *http.Transport
|
|
|
|
http *http.Transport
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *smartRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
// If we have a connection upgrade, we don't use HTTP/2
|
|
|
|
if httpguts.HeaderValuesContainsToken(req.Header["Connection"], "Upgrade") {
|
|
|
|
return m.http.RoundTrip(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.http2.RoundTrip(req)
|
|
|
|
}
|