262 lines
7.0 KiB
Go
262 lines
7.0 KiB
Go
package websocket
|
|
|
|
import (
|
|
"crypto/sha1"
|
|
"crypto/tls"
|
|
"encoding/base64"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"time"
|
|
|
|
"github.com/cloudflare/cloudflared/h2mux"
|
|
|
|
"github.com/gorilla/websocket"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
const (
|
|
// Time allowed to write a message to the peer.
|
|
writeWait = 10 * time.Second
|
|
|
|
// Time allowed to read the next pong message from the peer.
|
|
pongWait = 60 * time.Second
|
|
|
|
// Send pings to peer with this period. Must be less than pongWait.
|
|
pingPeriod = (pongWait * 9) / 10
|
|
)
|
|
|
|
var stripWebsocketHeaders = []string{
|
|
"Upgrade",
|
|
"Connection",
|
|
"Sec-Websocket-Key",
|
|
"Sec-Websocket-Version",
|
|
"Sec-Websocket-Extensions",
|
|
}
|
|
|
|
// Conn is a wrapper around the standard gorilla websocket
|
|
// but implements a ReadWriter
|
|
type Conn struct {
|
|
*websocket.Conn
|
|
}
|
|
|
|
// Read will read messages from the websocket connection
|
|
func (c *Conn) Read(p []byte) (int, error) {
|
|
_, message, err := c.Conn.ReadMessage()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return copy(p, message), nil
|
|
|
|
}
|
|
|
|
// Write will write messages to the websocket connection
|
|
func (c *Conn) Write(p []byte) (int, error) {
|
|
if err := c.Conn.WriteMessage(websocket.BinaryMessage, p); err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return len(p), nil
|
|
}
|
|
|
|
// IsWebSocketUpgrade checks to see if the request is a WebSocket connection.
|
|
func IsWebSocketUpgrade(req *http.Request) bool {
|
|
return websocket.IsWebSocketUpgrade(req)
|
|
}
|
|
|
|
// Dialler is something that can proxy websocket requests.
|
|
type Dialler interface {
|
|
Dial(url *url.URL, headers http.Header) (*websocket.Conn, *http.Response, error)
|
|
}
|
|
|
|
type defaultDialler struct {
|
|
tlsConfig *tls.Config
|
|
}
|
|
|
|
func (dd *defaultDialler) Dial(url *url.URL, header http.Header) (*websocket.Conn, *http.Response, error) {
|
|
d := &websocket.Dialer{TLSClientConfig: dd.tlsConfig}
|
|
return d.Dial(url.String(), header)
|
|
}
|
|
|
|
// ClientConnect creates a WebSocket client connection for provided request. Caller is responsible for closing
|
|
// the connection. The response body may not contain the entire response and does
|
|
// not need to be closed by the application.
|
|
func ClientConnect(req *http.Request, dialler Dialler) (*websocket.Conn, *http.Response, error) {
|
|
req.URL.Scheme = ChangeRequestScheme(req.URL)
|
|
wsHeaders := websocketHeaders(req)
|
|
|
|
if dialler == nil {
|
|
dialler = new(defaultDialler)
|
|
}
|
|
conn, response, err := dialler.Dial(req.URL, wsHeaders)
|
|
if err != nil {
|
|
return nil, response, err
|
|
}
|
|
response.Header.Set("Sec-WebSocket-Accept", generateAcceptKey(req))
|
|
return conn, response, err
|
|
}
|
|
|
|
// Stream copies copy data to & from provided io.ReadWriters.
|
|
func Stream(conn, backendConn io.ReadWriter) {
|
|
proxyDone := make(chan struct{}, 2)
|
|
|
|
go func() {
|
|
_, _ = io.Copy(conn, backendConn)
|
|
proxyDone <- struct{}{}
|
|
}()
|
|
|
|
go func() {
|
|
_, _ = io.Copy(backendConn, conn)
|
|
proxyDone <- struct{}{}
|
|
}()
|
|
|
|
// If one side is done, we are done.
|
|
<-proxyDone
|
|
}
|
|
|
|
// DefaultStreamHandler is provided to the the standard websocket to origin stream
|
|
// This exist to allow SOCKS to deframe data before it gets to the origin
|
|
func DefaultStreamHandler(wsConn *Conn, remoteConn net.Conn, _ http.Header) {
|
|
Stream(wsConn, remoteConn)
|
|
}
|
|
|
|
// StartProxyServer will start a websocket server that will decode
|
|
// the websocket data and write the resulting data to the provided
|
|
func StartProxyServer(
|
|
log *zerolog.Logger,
|
|
listener net.Listener,
|
|
staticHost string,
|
|
shutdownC <-chan struct{},
|
|
streamHandler func(wsConn *Conn, remoteConn net.Conn, requestHeaders http.Header),
|
|
) error {
|
|
upgrader := websocket.Upgrader{
|
|
ReadBufferSize: 1024,
|
|
WriteBufferSize: 1024,
|
|
}
|
|
h := handler{
|
|
upgrader: upgrader,
|
|
log: log,
|
|
staticHost: staticHost,
|
|
streamHandler: streamHandler,
|
|
}
|
|
|
|
httpServer := &http.Server{Addr: listener.Addr().String(), Handler: &h}
|
|
go func() {
|
|
<-shutdownC
|
|
_ = httpServer.Close()
|
|
}()
|
|
|
|
return httpServer.Serve(listener)
|
|
}
|
|
|
|
// HTTP handler for the websocket proxy.
|
|
type handler struct {
|
|
log *zerolog.Logger
|
|
staticHost string
|
|
upgrader websocket.Upgrader
|
|
streamHandler func(wsConn *Conn, remoteConn net.Conn, requestHeaders http.Header)
|
|
}
|
|
|
|
func (h *handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
// If remote is an empty string, get the destination from the client.
|
|
finalDestination := h.staticHost
|
|
if finalDestination == "" {
|
|
if jumpDestination := r.Header.Get(h2mux.CFJumpDestinationHeader); jumpDestination == "" {
|
|
h.log.Error().Msg("Did not receive final destination from client. The --destination flag is likely not set")
|
|
return
|
|
} else {
|
|
finalDestination = jumpDestination
|
|
}
|
|
}
|
|
|
|
stream, err := net.Dial("tcp", finalDestination)
|
|
if err != nil {
|
|
h.log.Err(err).Msg("Cannot connect to remote")
|
|
return
|
|
}
|
|
defer stream.Close()
|
|
|
|
if !websocket.IsWebSocketUpgrade(r) {
|
|
_, _ = w.Write(nonWebSocketRequestPage())
|
|
return
|
|
}
|
|
conn, err := h.upgrader.Upgrade(w, r, nil)
|
|
if err != nil {
|
|
h.log.Err(err).Msg("failed to upgrade")
|
|
return
|
|
}
|
|
_ = conn.SetReadDeadline(time.Now().Add(pongWait))
|
|
conn.SetPongHandler(func(string) error { _ = conn.SetReadDeadline(time.Now().Add(pongWait)); return nil })
|
|
done := make(chan struct{})
|
|
go pinger(h.log, conn, done)
|
|
defer func() {
|
|
done <- struct{}{}
|
|
_ = conn.Close()
|
|
}()
|
|
|
|
h.streamHandler(&Conn{conn}, stream, r.Header)
|
|
}
|
|
|
|
// the gorilla websocket library sets its own Upgrade, Connection, Sec-WebSocket-Key,
|
|
// Sec-WebSocket-Version and Sec-Websocket-Extensions headers.
|
|
// https://github.com/gorilla/websocket/blob/master/client.go#L189-L194.
|
|
func websocketHeaders(req *http.Request) http.Header {
|
|
wsHeaders := make(http.Header)
|
|
for key, val := range req.Header {
|
|
wsHeaders[key] = val
|
|
}
|
|
// Assume the header keys are in canonical format.
|
|
for _, header := range stripWebsocketHeaders {
|
|
wsHeaders.Del(header)
|
|
}
|
|
wsHeaders.Set("Host", req.Host) // See TUN-1097
|
|
return wsHeaders
|
|
}
|
|
|
|
// sha1Base64 sha1 and then base64 encodes str.
|
|
func sha1Base64(str string) string {
|
|
hasher := sha1.New()
|
|
_, _ = io.WriteString(hasher, str)
|
|
hash := hasher.Sum(nil)
|
|
return base64.StdEncoding.EncodeToString(hash)
|
|
}
|
|
|
|
// generateAcceptKey returns the string needed for the Sec-WebSocket-Accept header.
|
|
// https://tools.ietf.org/html/rfc6455#section-1.3 describes this process in more detail.
|
|
func generateAcceptKey(req *http.Request) string {
|
|
return sha1Base64(req.Header.Get("Sec-WebSocket-Key") + "258EAFA5-E914-47DA-95CA-C5AB0DC85B11")
|
|
}
|
|
|
|
// ChangeRequestScheme is needed as the gorilla websocket library requires the ws scheme.
|
|
// (even though it changes it back to http/https, but ¯\_(ツ)_/¯.)
|
|
func ChangeRequestScheme(reqURL *url.URL) string {
|
|
switch reqURL.Scheme {
|
|
case "https":
|
|
return "wss"
|
|
case "http":
|
|
return "ws"
|
|
case "":
|
|
return "ws"
|
|
default:
|
|
return reqURL.Scheme
|
|
}
|
|
}
|
|
|
|
// pinger simulates the websocket connection to keep it alive
|
|
func pinger(logger *zerolog.Logger, ws *websocket.Conn, done chan struct{}) {
|
|
ticker := time.NewTicker(pingPeriod)
|
|
defer ticker.Stop()
|
|
for {
|
|
select {
|
|
case <-ticker.C:
|
|
if err := ws.WriteControl(websocket.PingMessage, []byte{}, time.Now().Add(writeWait)); err != nil {
|
|
logger.Debug().Msgf("failed to send ping message: %s", err)
|
|
}
|
|
case <-done:
|
|
return
|
|
}
|
|
}
|
|
}
|