| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- package websocket
- import (
- "context"
- _ "embed"
- "encoding/base64"
- "io"
- gonet "net"
- "net/http"
- "time"
- "github.com/gorilla/websocket"
- "github.com/xtls/xray-core/common"
- "github.com/xtls/xray-core/common/net"
- "github.com/xtls/xray-core/common/platform"
- "github.com/xtls/xray-core/common/session"
- "github.com/xtls/xray-core/transport/internet"
- "github.com/xtls/xray-core/transport/internet/stat"
- "github.com/xtls/xray-core/transport/internet/tls"
- )
- //go:embed dialer.html
- var webpage []byte
- var conns chan *websocket.Conn
- func init() {
- addr := platform.NewEnvFlag(platform.BrowserDialerAddress).GetValue(func() string { return "" })
- if addr != "" {
- conns = make(chan *websocket.Conn, 256)
- go http.ListenAndServe(addr, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- if r.URL.Path == "/websocket" {
- if conn, err := upgrader.Upgrade(w, r, nil); err == nil {
- conns <- conn
- } else {
- newError("Browser dialer http upgrade unexpected error").AtError().WriteToLog()
- }
- } else {
- w.Write(webpage)
- }
- }))
- }
- }
- // Dial dials a WebSocket connection to the given destination.
- func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (stat.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 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 {
- newError("failed to dial to " + addr).Base(err).AtError().WriteToLog()
- return nil, err
- }
- // TLS and apply the handshake
- cn := tls.UClient(pconn, tlsConfig, fingerprint).(*tls.UConn)
- if err := cn.WebsocketHandshake(); err != nil {
- newError("failed to dial to " + addr).Base(err).AtError().WriteToLog()
- return nil, err
- }
- if !tlsConfig.InsecureSkipVerify {
- if err := cn.VerifyHostname(tlsConfig.ServerName); err != nil {
- newError("failed to dial to " + addr).Base(err).AtError().WriteToLog()
- 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 conns != nil {
- data := []byte(uri)
- if ed != nil {
- data = append(data, " "+base64.RawURLEncoding.EncodeToString(ed)...)
- }
- var conn *websocket.Conn
- for {
- conn = <-conns
- if conn.WriteMessage(websocket.TextMessage, data) != nil {
- conn.Close()
- } else {
- break
- }
- }
- if _, p, err := conn.ReadMessage(); err != nil {
- conn.Close()
- return nil, err
- } else if s := string(p); s != "ok" {
- conn.Close()
- return nil, newError(s)
- }
- 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.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()
- }
|