2020-10-08 10:12:26 +00:00
|
|
|
package connection
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-01-20 19:41:09 +00:00
|
|
|
"fmt"
|
2020-10-08 10:12:26 +00:00
|
|
|
"io"
|
2020-10-16 10:13:48 +00:00
|
|
|
"math"
|
2020-10-08 10:12:26 +00:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
2020-10-16 10:13:48 +00:00
|
|
|
"sync"
|
2020-10-08 10:12:26 +00:00
|
|
|
|
2021-07-16 15:14:37 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-11-25 06:55:13 +00:00
|
|
|
"github.com/rs/zerolog"
|
2020-10-08 10:12:26 +00:00
|
|
|
"golang.org/x/net/http2"
|
2021-03-23 14:30:43 +00:00
|
|
|
|
|
|
|
tunnelpogs "github.com/cloudflare/cloudflared/tunnelrpc/pogs"
|
2020-10-08 10:12:26 +00:00
|
|
|
)
|
|
|
|
|
2021-03-26 04:04:56 +00:00
|
|
|
// note: these constants are exported so we can reuse them in the edge-side code
|
2020-10-08 10:12:26 +00:00
|
|
|
const (
|
2021-03-26 04:04:56 +00:00
|
|
|
InternalUpgradeHeader = "Cf-Cloudflared-Proxy-Connection-Upgrade"
|
|
|
|
InternalTCPProxySrcHeader = "Cf-Cloudflared-Proxy-Src"
|
|
|
|
WebsocketUpgrade = "websocket"
|
|
|
|
ControlStreamUpgrade = "control-stream"
|
2020-10-08 10:12:26 +00:00
|
|
|
)
|
|
|
|
|
2021-01-20 19:41:09 +00:00
|
|
|
var errEdgeConnectionClosed = fmt.Errorf("connection with edge closed")
|
|
|
|
|
2021-07-16 15:14:37 +00:00
|
|
|
// HTTP2Connection represents a net.Conn that uses HTTP2 frames to proxy traffic from the edge to cloudflared on the
|
|
|
|
// origin.
|
|
|
|
type HTTP2Connection struct {
|
2021-08-17 14:30:02 +00:00
|
|
|
conn net.Conn
|
|
|
|
server *http2.Server
|
|
|
|
config *Config
|
|
|
|
connOptions *tunnelpogs.ConnectionOptions
|
|
|
|
observer *Observer
|
|
|
|
connIndex uint8
|
2020-10-27 22:27:15 +00:00
|
|
|
// newRPCClientFunc allows us to mock RPCs during testing
|
2021-01-27 13:19:37 +00:00
|
|
|
newRPCClientFunc func(context.Context, io.ReadWriteCloser, *zerolog.Logger) NamedTunnelRPCClient
|
|
|
|
|
2021-08-17 14:30:02 +00:00
|
|
|
log *zerolog.Logger
|
|
|
|
activeRequestsWG sync.WaitGroup
|
|
|
|
controlStreamHandler ControlStreamHandler
|
|
|
|
stoppedGracefully bool
|
|
|
|
controlStreamErr error // result of running control stream handler
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 15:14:37 +00:00
|
|
|
// NewHTTP2Connection returns a new instance of HTTP2Connection.
|
2020-10-23 14:49:24 +00:00
|
|
|
func NewHTTP2Connection(
|
|
|
|
conn net.Conn,
|
|
|
|
config *Config,
|
|
|
|
connOptions *tunnelpogs.ConnectionOptions,
|
|
|
|
observer *Observer,
|
|
|
|
connIndex uint8,
|
2021-08-17 14:30:02 +00:00
|
|
|
controlStreamHandler ControlStreamHandler,
|
2021-07-16 15:14:37 +00:00
|
|
|
log *zerolog.Logger,
|
|
|
|
) *HTTP2Connection {
|
|
|
|
return &HTTP2Connection{
|
2020-10-16 10:13:48 +00:00
|
|
|
conn: conn,
|
|
|
|
server: &http2.Server{
|
|
|
|
MaxConcurrentStreams: math.MaxUint32,
|
|
|
|
},
|
2021-08-17 14:30:02 +00:00
|
|
|
config: config,
|
|
|
|
connOptions: connOptions,
|
|
|
|
observer: observer,
|
|
|
|
connIndex: connIndex,
|
|
|
|
newRPCClientFunc: newRegistrationRPCClient,
|
|
|
|
controlStreamHandler: controlStreamHandler,
|
|
|
|
log: log,
|
2020-10-14 13:42:00 +00:00
|
|
|
}
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 15:14:37 +00:00
|
|
|
// Serve serves an HTTP2 server that the edge can talk to.
|
|
|
|
func (c *HTTP2Connection) Serve(ctx context.Context) error {
|
2020-10-08 10:12:26 +00:00
|
|
|
go func() {
|
|
|
|
<-ctx.Done()
|
|
|
|
c.close()
|
|
|
|
}()
|
|
|
|
c.server.ServeConn(c.conn, &http2.ServeConnOpts{
|
|
|
|
Context: ctx,
|
|
|
|
Handler: c,
|
|
|
|
})
|
2021-01-20 19:41:09 +00:00
|
|
|
|
2021-01-27 13:19:37 +00:00
|
|
|
switch {
|
2021-08-17 14:30:02 +00:00
|
|
|
case c.controlStreamHandler.IsStopped():
|
2021-01-27 13:19:37 +00:00
|
|
|
return nil
|
|
|
|
case c.controlStreamErr != nil:
|
|
|
|
return c.controlStreamErr
|
|
|
|
default:
|
|
|
|
c.observer.log.Info().Uint8(LogFieldConnIndex, c.connIndex).Msg("Lost connection with the edge")
|
2021-01-20 19:41:09 +00:00
|
|
|
return errEdgeConnectionClosed
|
|
|
|
}
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 15:14:37 +00:00
|
|
|
func (c *HTTP2Connection) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2021-01-27 13:19:37 +00:00
|
|
|
c.activeRequestsWG.Add(1)
|
|
|
|
defer c.activeRequestsWG.Done()
|
2020-10-16 10:13:48 +00:00
|
|
|
|
2021-01-15 17:25:56 +00:00
|
|
|
connType := determineHTTP2Type(r)
|
2021-06-18 11:21:11 +00:00
|
|
|
handleMissingRequestParts(connType, r)
|
|
|
|
|
2021-01-15 17:25:56 +00:00
|
|
|
respWriter, err := newHTTP2RespWriter(r, w, connType)
|
|
|
|
if err != nil {
|
|
|
|
c.observer.log.Error().Msg(err.Error())
|
2020-10-23 14:49:24 +00:00
|
|
|
return
|
|
|
|
}
|
2021-01-11 19:59:45 +00:00
|
|
|
|
2021-01-15 17:25:56 +00:00
|
|
|
switch connType {
|
|
|
|
case TypeControlStream:
|
2021-08-17 14:30:02 +00:00
|
|
|
if err := c.controlStreamHandler.ServeControlStream(r.Context(), respWriter, c.connOptions); err != nil {
|
2021-07-16 15:14:37 +00:00
|
|
|
c.controlStreamErr = err
|
|
|
|
c.log.Error().Err(err)
|
|
|
|
respWriter.WriteErrorResponse()
|
|
|
|
}
|
|
|
|
|
|
|
|
case TypeWebsocket, TypeHTTP:
|
2020-10-08 10:12:26 +00:00
|
|
|
stripWebsocketUpgradeHeader(r)
|
2021-07-16 15:14:37 +00:00
|
|
|
if err := c.config.OriginProxy.ProxyHTTP(respWriter, r, connType == TypeWebsocket); err != nil {
|
|
|
|
err := fmt.Errorf("Failed to proxy HTTP: %w", err)
|
|
|
|
c.log.Error().Err(err)
|
|
|
|
respWriter.WriteErrorResponse()
|
|
|
|
}
|
|
|
|
|
|
|
|
case TypeTCP:
|
|
|
|
host, err := getRequestHost(r)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf(`cloudflared recieved a warp-routing request with an empty host value: %w`, err)
|
|
|
|
c.log.Error().Err(err)
|
|
|
|
respWriter.WriteErrorResponse()
|
|
|
|
}
|
|
|
|
|
|
|
|
rws := NewHTTPResponseReadWriterAcker(respWriter, r)
|
|
|
|
if err := c.config.OriginProxy.ProxyTCP(r.Context(), rws, &TCPRequest{
|
|
|
|
Dest: host,
|
|
|
|
CFRay: FindCfRayHeader(r),
|
|
|
|
LBProbe: IsLBProbeRequest(r),
|
|
|
|
}); err != nil {
|
|
|
|
respWriter.WriteErrorResponse()
|
|
|
|
}
|
|
|
|
|
2021-01-11 19:59:45 +00:00
|
|
|
default:
|
2021-07-16 15:14:37 +00:00
|
|
|
err := fmt.Errorf("Received unknown connection type: %s", connType)
|
|
|
|
c.log.Error().Err(err)
|
2021-01-15 17:25:56 +00:00
|
|
|
respWriter.WriteErrorResponse()
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-16 15:14:37 +00:00
|
|
|
func (c *HTTP2Connection) close() {
|
2020-10-16 10:13:48 +00:00
|
|
|
// Wait for all serve HTTP handlers to return
|
2021-01-27 13:19:37 +00:00
|
|
|
c.activeRequestsWG.Wait()
|
2020-10-08 10:12:26 +00:00
|
|
|
c.conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
type http2RespWriter struct {
|
2020-10-23 14:49:24 +00:00
|
|
|
r io.Reader
|
|
|
|
w http.ResponseWriter
|
|
|
|
flusher http.Flusher
|
|
|
|
shouldFlush bool
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
2021-01-15 17:25:56 +00:00
|
|
|
func newHTTP2RespWriter(r *http.Request, w http.ResponseWriter, connType Type) (*http2RespWriter, error) {
|
|
|
|
flusher, isFlusher := w.(http.Flusher)
|
|
|
|
if !isFlusher {
|
|
|
|
respWriter := &http2RespWriter{
|
|
|
|
r: r.Body,
|
|
|
|
w: w,
|
|
|
|
}
|
|
|
|
respWriter.WriteErrorResponse()
|
|
|
|
return nil, fmt.Errorf("%T doesn't implement http.Flusher", w)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &http2RespWriter{
|
|
|
|
r: r.Body,
|
|
|
|
w: w,
|
|
|
|
flusher: flusher,
|
|
|
|
shouldFlush: connType.shouldFlush(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-12-09 21:46:53 +00:00
|
|
|
func (rp *http2RespWriter) WriteRespHeaders(status int, header http.Header) error {
|
2020-10-08 10:12:26 +00:00
|
|
|
dest := rp.w.Header()
|
2020-12-09 21:46:53 +00:00
|
|
|
userHeaders := make(http.Header, len(header))
|
2021-03-26 04:04:56 +00:00
|
|
|
for name, values := range header {
|
2020-10-08 10:12:26 +00:00
|
|
|
// Since these are http2 headers, they're required to be lowercase
|
2021-03-26 04:04:56 +00:00
|
|
|
h2name := strings.ToLower(name)
|
|
|
|
if h2name == "content-length" {
|
|
|
|
// This header has meaning in HTTP/2 and will be used by the edge,
|
|
|
|
// so it should be sent as an HTTP/2 response header.
|
|
|
|
dest[name] = values
|
|
|
|
// Since these are http2 headers, they're required to be lowercase
|
|
|
|
} else if !IsControlHeader(h2name) || IsWebsocketClientHeader(h2name) {
|
|
|
|
// User headers, on the other hand, must all be serialized so that
|
|
|
|
// HTTP/2 header validation won't be applied to HTTP/1 header values
|
|
|
|
userHeaders[name] = values
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform user header serialization and set them in the single header
|
2021-03-26 04:04:56 +00:00
|
|
|
dest.Set(CanonicalResponseUserHeaders, SerializeHeaders(userHeaders))
|
2020-10-23 14:49:24 +00:00
|
|
|
rp.setResponseMetaHeader(responseMetaHeaderOrigin)
|
2020-10-08 10:12:26 +00:00
|
|
|
// HTTP2 removes support for 101 Switching Protocols https://tools.ietf.org/html/rfc7540#section-8.1.1
|
|
|
|
if status == http.StatusSwitchingProtocols {
|
|
|
|
status = http.StatusOK
|
|
|
|
}
|
|
|
|
rp.w.WriteHeader(status)
|
2020-12-09 21:46:53 +00:00
|
|
|
if IsServerSentEvent(header) {
|
2020-10-23 14:49:24 +00:00
|
|
|
rp.shouldFlush = true
|
|
|
|
}
|
|
|
|
if rp.shouldFlush {
|
|
|
|
rp.flusher.Flush()
|
|
|
|
}
|
2020-10-08 10:12:26 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-27 22:27:15 +00:00
|
|
|
func (rp *http2RespWriter) WriteErrorResponse() {
|
2020-10-16 10:13:48 +00:00
|
|
|
rp.setResponseMetaHeader(responseMetaHeaderCfd)
|
2020-10-08 10:12:26 +00:00
|
|
|
rp.w.WriteHeader(http.StatusBadGateway)
|
|
|
|
}
|
|
|
|
|
2020-10-16 10:13:48 +00:00
|
|
|
func (rp *http2RespWriter) setResponseMetaHeader(value string) {
|
2021-03-26 04:04:56 +00:00
|
|
|
rp.w.Header().Set(CanonicalResponseMetaHeader, value)
|
2020-10-16 10:13:48 +00:00
|
|
|
}
|
|
|
|
|
2020-10-08 10:12:26 +00:00
|
|
|
func (rp *http2RespWriter) Read(p []byte) (n int, err error) {
|
|
|
|
return rp.r.Read(p)
|
|
|
|
}
|
|
|
|
|
2020-10-23 14:49:24 +00:00
|
|
|
func (rp *http2RespWriter) Write(p []byte) (n int, err error) {
|
2020-10-30 11:41:14 +00:00
|
|
|
defer func() {
|
|
|
|
// Implementer of OriginClient should make sure it doesn't write to the connection after Proxy returns
|
|
|
|
// Register a recover routine just in case.
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
println("Recover from http2 response writer panic, error", r)
|
|
|
|
}
|
|
|
|
}()
|
2020-10-23 14:49:24 +00:00
|
|
|
n, err = rp.w.Write(p)
|
|
|
|
if err == nil && rp.shouldFlush {
|
|
|
|
rp.flusher.Flush()
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
2020-10-23 14:49:24 +00:00
|
|
|
return n, err
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-23 14:49:24 +00:00
|
|
|
func (rp *http2RespWriter) Close() error {
|
2020-10-08 10:12:26 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-15 17:25:56 +00:00
|
|
|
func determineHTTP2Type(r *http.Request) Type {
|
|
|
|
switch {
|
|
|
|
case isWebsocketUpgrade(r):
|
|
|
|
return TypeWebsocket
|
|
|
|
case IsTCPStream(r):
|
|
|
|
return TypeTCP
|
|
|
|
case isControlStreamUpgrade(r):
|
|
|
|
return TypeControlStream
|
|
|
|
default:
|
|
|
|
return TypeHTTP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-18 11:21:11 +00:00
|
|
|
func handleMissingRequestParts(connType Type, r *http.Request) {
|
|
|
|
if connType == TypeHTTP {
|
|
|
|
// http library has no guarantees that we receive a filled URL. If not, then we fill it, as we reuse the request
|
|
|
|
// for proxying. We use the same values as we used to in h2mux. For proxying they should not matter since we
|
|
|
|
// control the dialer on every egress proxied.
|
|
|
|
if len(r.URL.Scheme) == 0 {
|
|
|
|
r.URL.Scheme = "http"
|
|
|
|
}
|
|
|
|
if len(r.URL.Host) == 0 {
|
|
|
|
r.URL.Host = "localhost:8080"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 10:12:26 +00:00
|
|
|
func isControlStreamUpgrade(r *http.Request) bool {
|
2021-03-26 04:04:56 +00:00
|
|
|
return r.Header.Get(InternalUpgradeHeader) == ControlStreamUpgrade
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func isWebsocketUpgrade(r *http.Request) bool {
|
2021-03-26 04:04:56 +00:00
|
|
|
return r.Header.Get(InternalUpgradeHeader) == WebsocketUpgrade
|
2021-01-11 19:59:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsTCPStream discerns if the connection request needs a tcp stream proxy.
|
|
|
|
func IsTCPStream(r *http.Request) bool {
|
2021-03-26 04:04:56 +00:00
|
|
|
return r.Header.Get(InternalTCPProxySrcHeader) != ""
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func stripWebsocketUpgradeHeader(r *http.Request) {
|
2021-03-26 04:04:56 +00:00
|
|
|
r.Header.Del(InternalUpgradeHeader)
|
2020-10-08 10:12:26 +00:00
|
|
|
}
|
2021-07-16 15:14:37 +00:00
|
|
|
|
|
|
|
// getRequestHost returns the host of the http.Request.
|
|
|
|
func getRequestHost(r *http.Request) (string, error) {
|
|
|
|
if r.Host != "" {
|
|
|
|
return r.Host, nil
|
|
|
|
}
|
|
|
|
if r.URL != nil {
|
|
|
|
return r.URL.Host, nil
|
|
|
|
}
|
|
|
|
return "", errors.New("host not set in incoming request")
|
|
|
|
}
|