| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- package websocket
- import (
- "context"
- "encoding/base64"
- "io"
- "time"
- "github.com/gorilla/websocket"
- "github.com/xtls/xray-core/common"
- "github.com/xtls/xray-core/common/net"
- "github.com/xtls/xray-core/common/session"
- "github.com/xtls/xray-core/transport/internet"
- "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) (internet.Connection, error) {
- newError("creating connection to ", dest).WriteToLog(session.ExportIDToError(ctx))
- 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, newError("failed to dial WebSocket").Base(err)
- }
- }
- return internet.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"
- dialer.TLSClientConfig = config.GetTLSConfig(tls.WithDestination(dest), tls.WithNextProto("http/1.1"))
- }
- host := dest.NetAddr()
- if (protocol == "ws" && dest.Port == 80) || (protocol == "wss" && dest.Port == 443) {
- host = dest.Address.String()
- }
- uri := protocol + "://" + host + wsSettings.GetNormalizedPath()
- header := wsSettings.GetRequestHeader()
- if ed != nil {
- header.Set("Sec-WebSocket-Protocol", base64.StdEncoding.EncodeToString(ed))
- }
- conn, resp, err := dialer.Dial(uri, header)
- if err != nil {
- var reason string
- if resp != nil {
- reason = resp.Status
- }
- return nil, newError("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, newError("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()
- }
|