mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
177 lines
4.8 KiB
Go
177 lines
4.8 KiB
Go
package websocket
|
|
|
|
import (
|
|
"context"
|
|
_ "embed"
|
|
"encoding/base64"
|
|
"io"
|
|
gonet "net"
|
|
"time"
|
|
|
|
"github.com/gorilla/websocket"
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/common/errors"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
"github.com/xtls/xray-core/transport/internet/browser_dialer"
|
|
"github.com/xtls/xray-core/transport/internet/stat"
|
|
"github.com/xtls/xray-core/transport/internet/tls"
|
|
)
|
|
|
|
// Dial dials a WebSocket connection to the given destination.
|
|
func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (stat.Connection, error) {
|
|
errors.LogInfo(ctx, "creating connection to ", dest)
|
|
var conn net.Conn
|
|
if streamSettings.ProtocolSettings.(*Config).Ed > 0 {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
conn = &delayDialConn{
|
|
dialed: make(chan bool, 1),
|
|
cancel: cancel,
|
|
ctx: ctx,
|
|
dest: dest,
|
|
streamSettings: streamSettings,
|
|
}
|
|
} else {
|
|
var err error
|
|
if conn, err = dialWebSocket(ctx, dest, streamSettings, nil); err != nil {
|
|
return nil, errors.New("failed to dial WebSocket").Base(err)
|
|
}
|
|
}
|
|
return stat.Connection(conn), nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterTransportDialer(protocolName, Dial))
|
|
}
|
|
|
|
func dialWebSocket(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig, ed []byte) (net.Conn, error) {
|
|
wsSettings := streamSettings.ProtocolSettings.(*Config)
|
|
|
|
dialer := &websocket.Dialer{
|
|
NetDial: func(network, addr string) (net.Conn, error) {
|
|
return internet.DialSystem(ctx, dest, streamSettings.SocketSettings)
|
|
},
|
|
ReadBufferSize: 4 * 1024,
|
|
WriteBufferSize: 4 * 1024,
|
|
HandshakeTimeout: time.Second * 8,
|
|
}
|
|
|
|
protocol := "ws"
|
|
|
|
if config := tls.ConfigFromStreamSettings(streamSettings); config != nil {
|
|
protocol = "wss"
|
|
tlsConfig := config.GetTLSConfig(tls.WithDestination(dest), tls.WithNextProto("http/1.1"))
|
|
dialer.TLSClientConfig = tlsConfig
|
|
if fingerprint := tls.GetFingerprint(config.Fingerprint); fingerprint != nil {
|
|
dialer.NetDialTLSContext = func(_ context.Context, _, addr string) (gonet.Conn, error) {
|
|
// Like the NetDial in the dialer
|
|
pconn, err := internet.DialSystem(ctx, dest, streamSettings.SocketSettings)
|
|
if err != nil {
|
|
errors.LogErrorInner(ctx, err, "failed to dial to "+addr)
|
|
return nil, err
|
|
}
|
|
// TLS and apply the handshake
|
|
cn := tls.UClient(pconn, tlsConfig, fingerprint).(*tls.UConn)
|
|
if err := cn.WebsocketHandshakeContext(ctx); err != nil {
|
|
errors.LogErrorInner(ctx, err, "failed to dial to "+addr)
|
|
return nil, err
|
|
}
|
|
if !tlsConfig.InsecureSkipVerify {
|
|
if err := cn.VerifyHostname(tlsConfig.ServerName); err != nil {
|
|
errors.LogErrorInner(ctx, err, "failed to dial to "+addr)
|
|
return nil, err
|
|
}
|
|
}
|
|
return cn, nil
|
|
}
|
|
}
|
|
}
|
|
|
|
host := dest.NetAddr()
|
|
if (protocol == "ws" && dest.Port == 80) || (protocol == "wss" && dest.Port == 443) {
|
|
host = dest.Address.String()
|
|
}
|
|
uri := protocol + "://" + host + wsSettings.GetNormalizedPath()
|
|
|
|
if browser_dialer.HasBrowserDialer() {
|
|
conn, err := browser_dialer.DialWS(uri, ed)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewConnection(conn, conn.RemoteAddr(), nil), nil
|
|
}
|
|
|
|
header := wsSettings.GetRequestHeader()
|
|
if ed != nil {
|
|
// RawURLEncoding is support by both V2Ray/V2Fly and XRay.
|
|
header.Set("Sec-WebSocket-Protocol", base64.RawURLEncoding.EncodeToString(ed))
|
|
}
|
|
|
|
conn, resp, err := dialer.DialContext(ctx, uri, header)
|
|
if err != nil {
|
|
var reason string
|
|
if resp != nil {
|
|
reason = resp.Status
|
|
}
|
|
return nil, errors.New("failed to dial to (", uri, "): ", reason).Base(err)
|
|
}
|
|
|
|
return NewConnection(conn, conn.RemoteAddr(), nil), nil
|
|
}
|
|
|
|
type delayDialConn struct {
|
|
net.Conn
|
|
closed bool
|
|
dialed chan bool
|
|
cancel context.CancelFunc
|
|
ctx context.Context
|
|
dest net.Destination
|
|
streamSettings *internet.MemoryStreamConfig
|
|
}
|
|
|
|
func (d *delayDialConn) Write(b []byte) (int, error) {
|
|
if d.closed {
|
|
return 0, io.ErrClosedPipe
|
|
}
|
|
if d.Conn == nil {
|
|
ed := b
|
|
if len(ed) > int(d.streamSettings.ProtocolSettings.(*Config).Ed) {
|
|
ed = nil
|
|
}
|
|
var err error
|
|
if d.Conn, err = dialWebSocket(d.ctx, d.dest, d.streamSettings, ed); err != nil {
|
|
d.Close()
|
|
return 0, errors.New("failed to dial WebSocket").Base(err)
|
|
}
|
|
d.dialed <- true
|
|
if ed != nil {
|
|
return len(ed), nil
|
|
}
|
|
}
|
|
return d.Conn.Write(b)
|
|
}
|
|
|
|
func (d *delayDialConn) Read(b []byte) (int, error) {
|
|
if d.closed {
|
|
return 0, io.ErrClosedPipe
|
|
}
|
|
if d.Conn == nil {
|
|
select {
|
|
case <-d.ctx.Done():
|
|
return 0, io.ErrUnexpectedEOF
|
|
case <-d.dialed:
|
|
}
|
|
}
|
|
return d.Conn.Read(b)
|
|
}
|
|
|
|
func (d *delayDialConn) Close() error {
|
|
d.closed = true
|
|
d.cancel()
|
|
if d.Conn == nil {
|
|
return nil
|
|
}
|
|
return d.Conn.Close()
|
|
}
|