2017-12-01 04:43:01 +03:00
|
|
|
// Copyright 2017 The Gorilla WebSocket Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package websocket
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
2024-06-14 20:51:13 +03:00
|
|
|
"bytes"
|
2024-06-14 05:34:08 +03:00
|
|
|
"context"
|
2017-12-01 04:43:01 +03:00
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2024-07-18 15:43:52 +03:00
|
|
|
func newNetDialerFunc(
|
|
|
|
scheme string,
|
|
|
|
netDial func(network, addr string) (net.Conn, error),
|
|
|
|
netDialContext func(ctx context.Context, network, addr string) (net.Conn, error),
|
|
|
|
netDialTLSContext func(ctx context.Context, network, addr string) (net.Conn, error),
|
|
|
|
) netDialerFunc {
|
|
|
|
switch {
|
|
|
|
case scheme == "https" && netDialTLSContext != nil:
|
|
|
|
return netDialTLSContext
|
|
|
|
case netDialContext != nil:
|
|
|
|
return netDialContext
|
|
|
|
case netDial != nil:
|
|
|
|
return func(ctx context.Context, net, addr string) (net.Conn, error) {
|
|
|
|
return netDial(net, addr)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return (&net.Dialer{}).DialContext
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-14 05:34:08 +03:00
|
|
|
type netDialerFunc func(ctx context.Context, network, addr string) (net.Conn, error)
|
2017-12-01 04:43:01 +03:00
|
|
|
|
|
|
|
func (fn netDialerFunc) Dial(network, addr string) (net.Conn, error) {
|
2024-06-14 05:34:08 +03:00
|
|
|
return fn(context.Background(), network, addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fn netDialerFunc) DialContext(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
|
|
return fn(ctx, network, addr)
|
2017-12-01 04:43:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type httpProxyDialer struct {
|
2019-03-06 03:42:57 +03:00
|
|
|
proxyURL *url.URL
|
2024-06-14 05:34:08 +03:00
|
|
|
forwardDial netDialerFunc
|
2017-12-01 04:43:01 +03:00
|
|
|
}
|
|
|
|
|
2024-06-14 05:34:08 +03:00
|
|
|
func (hpd *httpProxyDialer) DialContext(ctx context.Context, network string, addr string) (net.Conn, error) {
|
2017-12-01 04:43:01 +03:00
|
|
|
hostPort, _ := hostPortNoPort(hpd.proxyURL)
|
2024-06-14 05:34:08 +03:00
|
|
|
conn, err := hpd.forwardDial(ctx, network, hostPort)
|
2017-12-01 04:43:01 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
connectHeader := make(http.Header)
|
|
|
|
if user := hpd.proxyURL.User; user != nil {
|
|
|
|
proxyUser := user.Username()
|
|
|
|
if proxyPassword, passwordSet := user.Password(); passwordSet {
|
|
|
|
credential := base64.StdEncoding.EncodeToString([]byte(proxyUser + ":" + proxyPassword))
|
|
|
|
connectHeader.Set("Proxy-Authorization", "Basic "+credential)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
connectReq := &http.Request{
|
2021-12-19 19:21:45 +03:00
|
|
|
Method: http.MethodConnect,
|
2017-12-01 04:43:01 +03:00
|
|
|
URL: &url.URL{Opaque: addr},
|
|
|
|
Host: addr,
|
|
|
|
Header: connectHeader,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := connectReq.Write(conn); err != nil {
|
2024-04-04 16:32:47 +03:00
|
|
|
conn.Close()
|
2024-03-11 10:06:55 +03:00
|
|
|
return nil, err
|
2017-12-01 04:43:01 +03:00
|
|
|
}
|
|
|
|
|
2024-07-14 12:59:04 +03:00
|
|
|
// Read response. It's OK to use and discard buffered reader here because
|
2017-12-01 04:43:01 +03:00
|
|
|
// the remote server does not speak until spoken to.
|
|
|
|
br := bufio.NewReader(conn)
|
|
|
|
resp, err := http.ReadResponse(br, connectReq)
|
|
|
|
if err != nil {
|
2024-04-04 16:32:47 +03:00
|
|
|
conn.Close()
|
2024-03-11 10:06:55 +03:00
|
|
|
return nil, err
|
2017-12-01 04:43:01 +03:00
|
|
|
}
|
|
|
|
|
2024-06-14 20:51:13 +03:00
|
|
|
// Close the response body to silence false positives from linters. Reset
|
|
|
|
// the buffered reader first to ensure that Close() does not read from
|
|
|
|
// conn.
|
|
|
|
// Note: Applications must call resp.Body.Close() on a response returned
|
|
|
|
// http.ReadResponse to inspect trailers or read another response from the
|
|
|
|
// buffered reader. The call to resp.Body.Close() does not release
|
|
|
|
// resources.
|
|
|
|
br.Reset(bytes.NewReader(nil))
|
|
|
|
_ = resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
_ = conn.Close()
|
2017-12-01 04:43:01 +03:00
|
|
|
f := strings.SplitN(resp.Status, " ", 2)
|
2024-03-11 10:06:55 +03:00
|
|
|
return nil, errors.New(f[1])
|
2017-12-01 04:43:01 +03:00
|
|
|
}
|
|
|
|
return conn, nil
|
|
|
|
}
|