2020-12-09 21:46:53 +00:00
|
|
|
package ingress
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/cloudflare/cloudflared/h2mux"
|
2021-02-02 18:27:50 +00:00
|
|
|
"github.com/cloudflare/cloudflared/websocket"
|
2021-01-11 19:59:45 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-12-09 21:46:53 +00:00
|
|
|
)
|
|
|
|
|
2021-02-05 13:01:53 +00:00
|
|
|
var (
|
|
|
|
switchingProtocolText = fmt.Sprintf("%d %s", http.StatusSwitchingProtocols, http.StatusText(http.StatusSwitchingProtocols))
|
|
|
|
)
|
|
|
|
|
2020-12-09 21:46:53 +00:00
|
|
|
// HTTPOriginProxy can be implemented by origin services that want to proxy http requests.
|
|
|
|
type HTTPOriginProxy interface {
|
|
|
|
// RoundTrip is how cloudflared proxies eyeball requests to the actual origin services
|
|
|
|
http.RoundTripper
|
|
|
|
}
|
|
|
|
|
2021-02-05 13:01:53 +00:00
|
|
|
// StreamBasedOriginProxy can be implemented by origin services that want to proxy ws/TCP.
|
2020-12-09 21:46:53 +00:00
|
|
|
type StreamBasedOriginProxy interface {
|
2021-02-04 18:03:34 +00:00
|
|
|
EstablishConnection(r *http.Request) (OriginConnection, *http.Response, error)
|
2020-12-09 21:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o *unixSocketPath) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
return o.transport.RoundTrip(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *httpService) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
// Rewrite the request URL so that it goes to the origin service.
|
|
|
|
req.URL.Host = o.url.Host
|
|
|
|
req.URL.Scheme = o.url.Scheme
|
2021-02-08 19:25:08 +00:00
|
|
|
if o.hostHeader != "" {
|
|
|
|
// For incoming requests, the Host header is promoted to the Request.Host field and removed from the Header map.
|
|
|
|
req.Host = o.hostHeader
|
|
|
|
}
|
2020-12-09 21:46:53 +00:00
|
|
|
return o.transport.RoundTrip(req)
|
|
|
|
}
|
|
|
|
|
2021-02-04 18:03:34 +00:00
|
|
|
func (o *httpService) EstablishConnection(req *http.Request) (OriginConnection, *http.Response, error) {
|
2021-02-02 18:27:50 +00:00
|
|
|
req.URL.Host = o.url.Host
|
|
|
|
req.URL.Scheme = websocket.ChangeRequestScheme(o.url)
|
2021-02-08 19:25:08 +00:00
|
|
|
if o.hostHeader != "" {
|
|
|
|
// For incoming requests, the Host header is promoted to the Request.Host field and removed from the Header map.
|
|
|
|
req.Host = o.hostHeader
|
|
|
|
}
|
2021-02-05 13:01:53 +00:00
|
|
|
return newWSConnection(o.transport.TLSClientConfig, req)
|
2021-02-02 18:27:50 +00:00
|
|
|
}
|
|
|
|
|
2020-12-09 21:46:53 +00:00
|
|
|
func (o *helloWorld) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
// Rewrite the request URL so that it goes to the Hello World server.
|
|
|
|
req.URL.Host = o.server.Addr().String()
|
|
|
|
req.URL.Scheme = "https"
|
|
|
|
return o.transport.RoundTrip(req)
|
|
|
|
}
|
|
|
|
|
2021-02-04 18:03:34 +00:00
|
|
|
func (o *helloWorld) EstablishConnection(req *http.Request) (OriginConnection, *http.Response, error) {
|
2020-12-09 21:46:53 +00:00
|
|
|
req.URL.Host = o.server.Addr().String()
|
|
|
|
req.URL.Scheme = "wss"
|
2021-02-05 13:01:53 +00:00
|
|
|
return newWSConnection(o.transport.TLSClientConfig, req)
|
2020-12-09 21:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o *statusCode) RoundTrip(_ *http.Request) (*http.Response, error) {
|
|
|
|
return o.resp, nil
|
|
|
|
}
|
|
|
|
|
2021-02-05 13:01:53 +00:00
|
|
|
func (o *rawTCPService) EstablishConnection(r *http.Request) (OriginConnection, *http.Response, error) {
|
|
|
|
dest, err := getRequestHost(r)
|
2020-12-09 21:46:53 +00:00
|
|
|
if err != nil {
|
2021-02-04 18:03:34 +00:00
|
|
|
return nil, nil, err
|
2020-12-09 21:46:53 +00:00
|
|
|
}
|
2021-02-05 13:01:53 +00:00
|
|
|
conn, err := net.Dial("tcp", dest)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
originConn := &tcpConnection{
|
|
|
|
conn: conn,
|
|
|
|
}
|
|
|
|
resp := &http.Response{
|
|
|
|
Status: switchingProtocolText,
|
|
|
|
StatusCode: http.StatusSwitchingProtocols,
|
|
|
|
ContentLength: -1,
|
|
|
|
}
|
|
|
|
return originConn, resp, nil
|
2020-12-09 21:46:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 19:59:45 +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 found")
|
|
|
|
}
|
|
|
|
|
2021-02-05 13:01:53 +00:00
|
|
|
func (o *tcpOverWSService) EstablishConnection(r *http.Request) (OriginConnection, *http.Response, error) {
|
|
|
|
var err error
|
|
|
|
dest := o.dest
|
|
|
|
if o.isBastion {
|
|
|
|
dest, err = o.bastionDest(r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
conn, err := net.Dial("tcp", dest)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
originConn := &tcpOverWSConnection{
|
|
|
|
conn: conn,
|
|
|
|
streamHandler: o.streamHandler,
|
|
|
|
}
|
|
|
|
resp := &http.Response{
|
|
|
|
Status: switchingProtocolText,
|
|
|
|
StatusCode: http.StatusSwitchingProtocols,
|
|
|
|
Header: websocket.NewResponseHeader(r),
|
|
|
|
ContentLength: -1,
|
2021-01-11 19:59:45 +00:00
|
|
|
}
|
2021-02-05 13:01:53 +00:00
|
|
|
return originConn, resp, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *tcpOverWSService) bastionDest(r *http.Request) (string, error) {
|
2020-12-09 21:46:53 +00:00
|
|
|
jumpDestination := r.Header.Get(h2mux.CFJumpDestinationHeader)
|
|
|
|
if jumpDestination == "" {
|
|
|
|
return "", fmt.Errorf("Did not receive final destination from client. The --destination flag is likely not set on the client side")
|
|
|
|
}
|
|
|
|
// Strip scheme and path set by client. Without a scheme
|
|
|
|
// Parsing a hostname and path without scheme might not return an error due to parsing ambiguities
|
|
|
|
if jumpURL, err := url.Parse(jumpDestination); err == nil && jumpURL.Host != "" {
|
|
|
|
return removePath(jumpURL.Host), nil
|
|
|
|
}
|
|
|
|
return removePath(jumpDestination), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func removePath(dest string) string {
|
|
|
|
return strings.SplitN(dest, "/", 2)[0]
|
|
|
|
}
|
2021-03-01 22:26:37 +00:00
|
|
|
|
|
|
|
func (o *socksProxyOverWSService) EstablishConnection(r *http.Request) (OriginConnection, *http.Response, error) {
|
|
|
|
originConn := o.conn
|
|
|
|
resp := &http.Response{
|
|
|
|
Status: switchingProtocolText,
|
|
|
|
StatusCode: http.StatusSwitchingProtocols,
|
|
|
|
Header: websocket.NewResponseHeader(r),
|
|
|
|
ContentLength: -1,
|
|
|
|
}
|
|
|
|
return originConn, resp, nil
|
|
|
|
}
|