2018-10-28 23:46:32 +08:00
|
|
|
package vmess
|
|
|
|
|
|
|
|
import (
|
2023-10-06 17:44:36 +08:00
|
|
|
"bufio"
|
2021-08-22 00:25:29 +08:00
|
|
|
"bytes"
|
|
|
|
"context"
|
2018-11-04 21:36:20 +08:00
|
|
|
"crypto/tls"
|
2021-08-22 00:25:29 +08:00
|
|
|
"encoding/base64"
|
2023-01-16 09:42:03 +08:00
|
|
|
"encoding/binary"
|
2021-08-22 00:25:29 +08:00
|
|
|
"errors"
|
2018-10-28 23:46:32 +08:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
2018-12-11 00:25:05 +08:00
|
|
|
"net/http"
|
2018-11-04 21:36:20 +08:00
|
|
|
"net/url"
|
2021-08-22 16:03:46 +08:00
|
|
|
"strconv"
|
2018-10-28 23:46:32 +08:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2023-01-16 10:50:31 +08:00
|
|
|
"github.com/Dreamacro/clash/common/buf"
|
|
|
|
N "github.com/Dreamacro/clash/common/net"
|
2023-02-07 16:08:59 +08:00
|
|
|
tlsC "github.com/Dreamacro/clash/component/tls"
|
2023-03-06 18:10:14 +08:00
|
|
|
|
2023-10-06 17:44:36 +08:00
|
|
|
"github.com/gobwas/ws"
|
|
|
|
"github.com/gobwas/ws/wsutil"
|
2023-03-06 18:10:14 +08:00
|
|
|
"github.com/zhangyunhao116/fastrand"
|
2018-10-28 23:46:32 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type websocketConn struct {
|
2023-10-06 17:44:36 +08:00
|
|
|
net.Conn
|
|
|
|
state ws.State
|
|
|
|
reader *wsutil.Reader
|
|
|
|
controlHandler wsutil.FrameHandlerFunc
|
2019-12-05 14:12:29 +08:00
|
|
|
|
2023-01-16 10:50:31 +08:00
|
|
|
rawWriter N.ExtendedWriter
|
2018-10-28 23:46:32 +08:00
|
|
|
}
|
2021-10-10 23:44:09 +08:00
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
type websocketWithEarlyDataConn struct {
|
|
|
|
net.Conn
|
2023-01-16 10:50:31 +08:00
|
|
|
wsWriter N.ExtendedWriter
|
2021-08-22 00:25:29 +08:00
|
|
|
underlay net.Conn
|
|
|
|
closed bool
|
|
|
|
dialed chan bool
|
|
|
|
cancel context.CancelFunc
|
|
|
|
ctx context.Context
|
|
|
|
config *WebsocketConfig
|
|
|
|
}
|
2018-10-28 23:46:32 +08:00
|
|
|
|
2019-02-11 15:25:10 +08:00
|
|
|
type WebsocketConfig struct {
|
2021-08-22 00:25:29 +08:00
|
|
|
Host string
|
|
|
|
Port string
|
|
|
|
Path string
|
|
|
|
Headers http.Header
|
|
|
|
TLS bool
|
2021-10-16 20:19:59 +08:00
|
|
|
TLSConfig *tls.Config
|
2021-08-22 00:25:29 +08:00
|
|
|
MaxEarlyData int
|
|
|
|
EarlyDataHeaderName string
|
2023-02-01 22:16:06 +08:00
|
|
|
ClientFingerprint string
|
2018-11-04 21:36:20 +08:00
|
|
|
}
|
|
|
|
|
2018-10-28 23:46:32 +08:00
|
|
|
// Read implements net.Conn.Read()
|
2023-10-06 17:44:36 +08:00
|
|
|
// modify from gobwas/ws/wsutil.readData
|
|
|
|
func (wsc *websocketConn) Read(b []byte) (n int, err error) {
|
|
|
|
var header ws.Header
|
2018-10-28 23:46:32 +08:00
|
|
|
for {
|
2023-10-06 17:44:36 +08:00
|
|
|
n, err = wsc.reader.Read(b)
|
|
|
|
// in gobwas/ws: "The error is io.EOF only if all of message bytes were read."
|
|
|
|
// but maybe next frame still have data, so drop it
|
|
|
|
if errors.Is(err, io.EOF) {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if !errors.Is(err, wsutil.ErrNoFrameAdvance) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
header, err = wsc.reader.NextFrame()
|
2018-10-28 23:46:32 +08:00
|
|
|
if err != nil {
|
2023-10-06 17:44:36 +08:00
|
|
|
return
|
2018-10-28 23:46:32 +08:00
|
|
|
}
|
2023-10-06 17:44:36 +08:00
|
|
|
if header.OpCode.IsControl() {
|
|
|
|
err = wsc.controlHandler(header, wsc.reader)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if header.OpCode&(ws.OpBinary|ws.OpText) == 0 {
|
|
|
|
err = wsc.reader.Discard()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-10-28 23:46:32 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write implements io.Writer.
|
2023-10-06 17:44:36 +08:00
|
|
|
func (wsc *websocketConn) Write(b []byte) (n int, err error) {
|
|
|
|
err = wsutil.WriteMessage(wsc.Conn, wsc.state, ws.OpBinary, b)
|
|
|
|
if err != nil {
|
|
|
|
return
|
2018-10-28 23:46:32 +08:00
|
|
|
}
|
2023-10-06 17:44:36 +08:00
|
|
|
n = len(b)
|
|
|
|
return
|
2018-10-28 23:46:32 +08:00
|
|
|
}
|
|
|
|
|
2023-01-16 09:42:03 +08:00
|
|
|
func (wsc *websocketConn) WriteBuffer(buffer *buf.Buffer) error {
|
|
|
|
var payloadBitLength int
|
|
|
|
dataLen := buffer.Len()
|
|
|
|
data := buffer.Bytes()
|
|
|
|
if dataLen < 126 {
|
|
|
|
payloadBitLength = 1
|
|
|
|
} else if dataLen < 65536 {
|
|
|
|
payloadBitLength = 3
|
|
|
|
} else {
|
|
|
|
payloadBitLength = 9
|
|
|
|
}
|
|
|
|
|
|
|
|
var headerLen int
|
|
|
|
headerLen += 1 // FIN / RSV / OPCODE
|
|
|
|
headerLen += payloadBitLength
|
2023-10-07 16:45:15 +08:00
|
|
|
if wsc.state.ClientSide() {
|
|
|
|
headerLen += 4 // MASK KEY
|
|
|
|
}
|
2023-01-16 09:42:03 +08:00
|
|
|
|
|
|
|
header := buffer.ExtendHeader(headerLen)
|
2023-10-06 17:44:36 +08:00
|
|
|
header[0] = byte(ws.OpBinary) | 0x80
|
2023-10-07 16:45:15 +08:00
|
|
|
if wsc.state.ClientSide() {
|
|
|
|
header[1] = 1 << 7
|
|
|
|
} else {
|
|
|
|
header[1] = 0
|
|
|
|
}
|
2023-01-16 09:42:03 +08:00
|
|
|
|
|
|
|
if dataLen < 126 {
|
|
|
|
header[1] |= byte(dataLen)
|
|
|
|
} else if dataLen < 65536 {
|
|
|
|
header[1] |= 126
|
|
|
|
binary.BigEndian.PutUint16(header[2:], uint16(dataLen))
|
|
|
|
} else {
|
|
|
|
header[1] |= 127
|
|
|
|
binary.BigEndian.PutUint64(header[2:], uint64(dataLen))
|
|
|
|
}
|
|
|
|
|
2023-10-06 17:44:36 +08:00
|
|
|
if wsc.state.ClientSide() {
|
|
|
|
maskKey := fastrand.Uint32()
|
|
|
|
binary.LittleEndian.PutUint32(header[1+payloadBitLength:], maskKey)
|
|
|
|
N.MaskWebSocket(maskKey, data)
|
|
|
|
}
|
2023-01-16 09:42:03 +08:00
|
|
|
|
|
|
|
return wsc.rawWriter.WriteBuffer(buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsc *websocketConn) FrontHeadroom() int {
|
|
|
|
return 14
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsc *websocketConn) Upstream() any {
|
2023-10-06 17:44:36 +08:00
|
|
|
return wsc.Conn
|
2023-01-16 09:42:03 +08:00
|
|
|
}
|
|
|
|
|
2018-10-28 23:46:32 +08:00
|
|
|
func (wsc *websocketConn) Close() error {
|
2023-10-06 17:44:36 +08:00
|
|
|
_ = wsc.Conn.SetWriteDeadline(time.Now().Add(time.Second * 5))
|
|
|
|
_ = wsutil.WriteMessage(wsc.Conn, wsc.state, ws.OpClose, ws.NewCloseFrameBody(ws.StatusNormalClosure, ""))
|
|
|
|
_ = wsc.Conn.Close()
|
2018-10-28 23:46:32 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
func (wsedc *websocketWithEarlyDataConn) Dial(earlyData []byte) error {
|
2021-08-22 16:16:45 +08:00
|
|
|
base64DataBuf := &bytes.Buffer{}
|
|
|
|
base64EarlyDataEncoder := base64.NewEncoder(base64.RawURLEncoding, base64DataBuf)
|
2021-08-22 00:25:29 +08:00
|
|
|
|
2021-08-22 16:16:45 +08:00
|
|
|
earlyDataBuf := bytes.NewBuffer(earlyData)
|
|
|
|
if _, err := base64EarlyDataEncoder.Write(earlyDataBuf.Next(wsedc.config.MaxEarlyData)); err != nil {
|
2023-05-18 13:15:08 +08:00
|
|
|
return fmt.Errorf("failed to encode early data: %w", err)
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if errc := base64EarlyDataEncoder.Close(); errc != nil {
|
2023-05-18 13:15:08 +08:00
|
|
|
return fmt.Errorf("failed to encode early data tail: %w", errc)
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2023-05-18 13:15:08 +08:00
|
|
|
if wsedc.Conn, err = streamWebsocketConn(wsedc.ctx, wsedc.underlay, wsedc.config, base64DataBuf); err != nil {
|
2021-08-22 00:25:29 +08:00
|
|
|
wsedc.Close()
|
2023-05-18 13:15:08 +08:00
|
|
|
return fmt.Errorf("failed to dial WebSocket: %w", err)
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
wsedc.dialed <- true
|
2023-01-16 10:50:31 +08:00
|
|
|
wsedc.wsWriter = N.NewExtendedWriter(wsedc.Conn)
|
2021-08-22 16:16:45 +08:00
|
|
|
if earlyDataBuf.Len() != 0 {
|
|
|
|
_, err = wsedc.Conn.Write(earlyDataBuf.Bytes())
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) Write(b []byte) (int, error) {
|
|
|
|
if wsedc.closed {
|
|
|
|
return 0, io.ErrClosedPipe
|
|
|
|
}
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
if err := wsedc.Dial(b); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return len(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return wsedc.Conn.Write(b)
|
|
|
|
}
|
|
|
|
|
2023-01-16 09:42:03 +08:00
|
|
|
func (wsedc *websocketWithEarlyDataConn) WriteBuffer(buffer *buf.Buffer) error {
|
|
|
|
if wsedc.closed {
|
|
|
|
return io.ErrClosedPipe
|
|
|
|
}
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
if err := wsedc.Dial(buffer.Bytes()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return wsedc.wsWriter.WriteBuffer(buffer)
|
|
|
|
}
|
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
func (wsedc *websocketWithEarlyDataConn) Read(b []byte) (int, error) {
|
|
|
|
if wsedc.closed {
|
|
|
|
return 0, io.ErrClosedPipe
|
|
|
|
}
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
select {
|
|
|
|
case <-wsedc.ctx.Done():
|
|
|
|
return 0, io.ErrUnexpectedEOF
|
|
|
|
case <-wsedc.dialed:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return wsedc.Conn.Read(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) Close() error {
|
|
|
|
wsedc.closed = true
|
|
|
|
wsedc.cancel()
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return wsedc.Conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) LocalAddr() net.Addr {
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
return wsedc.underlay.LocalAddr()
|
|
|
|
}
|
|
|
|
return wsedc.Conn.LocalAddr()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) RemoteAddr() net.Addr {
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
return wsedc.underlay.RemoteAddr()
|
|
|
|
}
|
|
|
|
return wsedc.Conn.RemoteAddr()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) SetDeadline(t time.Time) error {
|
|
|
|
if err := wsedc.SetReadDeadline(t); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return wsedc.SetWriteDeadline(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) SetReadDeadline(t time.Time) error {
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return wsedc.Conn.SetReadDeadline(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) SetWriteDeadline(t time.Time) error {
|
|
|
|
if wsedc.Conn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return wsedc.Conn.SetWriteDeadline(t)
|
|
|
|
}
|
|
|
|
|
2023-02-27 00:26:49 +08:00
|
|
|
func (wsedc *websocketWithEarlyDataConn) FrontHeadroom() int {
|
|
|
|
return 14
|
2023-02-18 13:58:08 +08:00
|
|
|
}
|
|
|
|
|
2023-01-16 09:42:03 +08:00
|
|
|
func (wsedc *websocketWithEarlyDataConn) Upstream() any {
|
2023-02-27 00:26:49 +08:00
|
|
|
return wsedc.underlay
|
|
|
|
}
|
|
|
|
|
|
|
|
//func (wsedc *websocketWithEarlyDataConn) LazyHeadroom() bool {
|
|
|
|
// return wsedc.Conn == nil
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//func (wsedc *websocketWithEarlyDataConn) Upstream() any {
|
|
|
|
// if wsedc.Conn == nil { // ensure return a nil interface not an interface with nil value
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
// return wsedc.Conn
|
|
|
|
//}
|
|
|
|
|
|
|
|
func (wsedc *websocketWithEarlyDataConn) NeedHandshake() bool {
|
|
|
|
return wsedc.Conn == nil
|
2023-01-16 09:42:03 +08:00
|
|
|
}
|
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
func streamWebsocketWithEarlyDataConn(conn net.Conn, c *WebsocketConfig) (net.Conn, error) {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
conn = &websocketWithEarlyDataConn{
|
|
|
|
dialed: make(chan bool, 1),
|
|
|
|
cancel: cancel,
|
|
|
|
ctx: ctx,
|
|
|
|
underlay: conn,
|
|
|
|
config: c,
|
|
|
|
}
|
2023-04-17 00:23:12 +08:00
|
|
|
// websocketWithEarlyDataConn can't correct handle Deadline
|
|
|
|
// it will not apply the already set Deadline after Dial()
|
|
|
|
// so call N.NewDeadlineConn to add a safe wrapper
|
|
|
|
return N.NewDeadlineConn(conn), nil
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
|
|
|
|
2023-05-18 13:15:08 +08:00
|
|
|
func streamWebsocketConn(ctx context.Context, conn net.Conn, c *WebsocketConfig, earlyData *bytes.Buffer) (net.Conn, error) {
|
2023-10-06 17:44:36 +08:00
|
|
|
dialer := ws.Dialer{
|
|
|
|
NetDial: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
2018-11-04 21:36:20 +08:00
|
|
|
return conn, nil
|
|
|
|
},
|
2023-10-06 17:44:36 +08:00
|
|
|
TLSConfig: c.TLSConfig,
|
2018-11-04 21:36:20 +08:00
|
|
|
}
|
|
|
|
scheme := "ws"
|
2019-02-11 15:25:10 +08:00
|
|
|
if c.TLS {
|
2018-11-04 21:36:20 +08:00
|
|
|
scheme = "wss"
|
2023-02-01 22:16:06 +08:00
|
|
|
if len(c.ClientFingerprint) != 0 {
|
2023-02-07 16:08:59 +08:00
|
|
|
if fingerprint, exists := tlsC.GetFingerprint(c.ClientFingerprint); exists {
|
2023-10-06 17:44:36 +08:00
|
|
|
utlsConn := tlsC.UClient(conn, c.TLSConfig, fingerprint)
|
|
|
|
|
|
|
|
if err := utlsConn.(*tlsC.UConn).BuildWebsocketHandshakeState(); err != nil {
|
|
|
|
return nil, fmt.Errorf("parse url %s error: %w", c.Path, err)
|
|
|
|
}
|
2023-02-01 22:16:06 +08:00
|
|
|
|
2023-10-06 17:44:36 +08:00
|
|
|
dialer.TLSClient = func(conn net.Conn, hostname string) net.Conn {
|
|
|
|
return utlsConn
|
2023-02-01 22:16:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-28 23:46:32 +08:00
|
|
|
}
|
2018-11-04 21:36:20 +08:00
|
|
|
|
2022-07-10 14:56:34 +08:00
|
|
|
u, err := url.Parse(c.Path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("parse url %s error: %w", c.Path, err)
|
|
|
|
}
|
|
|
|
|
2018-11-04 21:36:20 +08:00
|
|
|
uri := url.URL{
|
2022-07-10 14:56:34 +08:00
|
|
|
Scheme: scheme,
|
|
|
|
Host: net.JoinHostPort(c.Host, c.Port),
|
|
|
|
Path: u.Path,
|
|
|
|
RawQuery: u.RawQuery,
|
2018-11-04 21:36:20 +08:00
|
|
|
}
|
|
|
|
|
2023-10-06 17:44:36 +08:00
|
|
|
headers := http.Header{"User-Agent": []string{"Go-http-client/1.1"}} // match golang's net/http
|
2019-02-11 15:25:10 +08:00
|
|
|
if c.Headers != nil {
|
2023-10-06 17:44:36 +08:00
|
|
|
cHeaders := c.Headers
|
|
|
|
// gobwas/ws send "Host" directly in Upgrade() by `httpWriteHeader(bw, headerHost, u.Host)`
|
|
|
|
// if headers has "Host" will send repeatedly
|
|
|
|
if host := cHeaders.Get("Host"); host != "" {
|
|
|
|
cHeaders.Del("Host")
|
|
|
|
uri.Host = host
|
|
|
|
}
|
|
|
|
for k := range cHeaders {
|
|
|
|
headers.Add(k, cHeaders.Get(k))
|
2018-12-11 00:25:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
if earlyData != nil {
|
2023-10-06 17:44:36 +08:00
|
|
|
earlyDataString := earlyData.String()
|
2021-08-22 00:25:29 +08:00
|
|
|
if c.EarlyDataHeaderName == "" {
|
2023-10-06 17:44:36 +08:00
|
|
|
uri.Path += earlyDataString
|
2021-08-22 00:25:29 +08:00
|
|
|
} else {
|
2023-10-06 17:44:36 +08:00
|
|
|
// gobwas/ws will check server's response "Sec-Websocket-Protocol" so must add Protocols to ws.Dialer
|
|
|
|
// if not will cause ws.ErrHandshakeBadSubProtocol
|
|
|
|
if c.EarlyDataHeaderName == "Sec-WebSocket-Protocol" {
|
|
|
|
// gobwas/ws will set "Sec-Websocket-Protocol" according dialer.Protocols
|
|
|
|
// to avoid send repeatedly don't set it to headers
|
|
|
|
dialer.Protocols = []string{earlyDataString}
|
|
|
|
} else {
|
|
|
|
headers.Set(c.EarlyDataHeaderName, earlyDataString)
|
|
|
|
}
|
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-06 17:44:36 +08:00
|
|
|
dialer.Header = ws.HandshakeHeaderHTTP(headers)
|
|
|
|
|
|
|
|
conn, reader, _, err := dialer.Dial(ctx, uri.String())
|
2018-11-04 21:36:20 +08:00
|
|
|
if err != nil {
|
2023-10-06 17:44:36 +08:00
|
|
|
return nil, fmt.Errorf("dial %s error: %w", uri.Host, err)
|
2018-11-04 21:36:20 +08:00
|
|
|
}
|
|
|
|
|
2023-10-06 17:44:36 +08:00
|
|
|
conn = newWebsocketConn(conn, reader, ws.StateClientSide)
|
2023-04-17 00:23:12 +08:00
|
|
|
// websocketConn can't correct handle ReadDeadline
|
|
|
|
// so call N.NewDeadlineConn to add a safe wrapper
|
|
|
|
return N.NewDeadlineConn(conn), nil
|
2018-10-28 23:46:32 +08:00
|
|
|
}
|
2021-08-22 00:25:29 +08:00
|
|
|
|
2023-05-18 13:15:08 +08:00
|
|
|
func StreamWebsocketConn(ctx context.Context, conn net.Conn, c *WebsocketConfig) (net.Conn, error) {
|
2021-08-22 16:03:46 +08:00
|
|
|
if u, err := url.Parse(c.Path); err == nil {
|
|
|
|
if q := u.Query(); q.Get("ed") != "" {
|
|
|
|
if ed, err := strconv.Atoi(q.Get("ed")); err == nil {
|
|
|
|
c.MaxEarlyData = ed
|
|
|
|
c.EarlyDataHeaderName = "Sec-WebSocket-Protocol"
|
|
|
|
q.Del("ed")
|
|
|
|
u.RawQuery = q.Encode()
|
|
|
|
c.Path = u.String()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-22 00:25:29 +08:00
|
|
|
if c.MaxEarlyData > 0 {
|
|
|
|
return streamWebsocketWithEarlyDataConn(conn, c)
|
|
|
|
}
|
|
|
|
|
2023-05-18 13:15:08 +08:00
|
|
|
return streamWebsocketConn(ctx, conn, c, nil)
|
2021-08-22 00:25:29 +08:00
|
|
|
}
|
2023-10-06 17:44:36 +08:00
|
|
|
|
|
|
|
func newWebsocketConn(conn net.Conn, br *bufio.Reader, state ws.State) *websocketConn {
|
|
|
|
controlHandler := wsutil.ControlFrameHandler(conn, state)
|
|
|
|
var reader io.Reader
|
|
|
|
if br != nil && br.Buffered() > 0 {
|
|
|
|
reader = br
|
|
|
|
} else {
|
|
|
|
reader = conn
|
|
|
|
}
|
|
|
|
return &websocketConn{
|
|
|
|
Conn: conn,
|
|
|
|
state: state,
|
|
|
|
reader: &wsutil.Reader{
|
|
|
|
Source: reader,
|
|
|
|
State: state,
|
|
|
|
SkipHeaderCheck: true,
|
|
|
|
CheckUTF8: false,
|
|
|
|
OnIntermediate: controlHandler,
|
|
|
|
},
|
|
|
|
controlHandler: controlHandler,
|
|
|
|
rawWriter: N.NewExtendedWriter(conn),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var replacer = strings.NewReplacer("+", "-", "/", "_", "=", "")
|
|
|
|
|
|
|
|
func decodeEd(s string) ([]byte, error) {
|
|
|
|
return base64.RawURLEncoding.DecodeString(replacer.Replace(s))
|
|
|
|
}
|
|
|
|
|
|
|
|
func decodeXray0rtt(requestHeader http.Header) ([]byte, http.Header) {
|
|
|
|
var edBuf []byte
|
|
|
|
responseHeader := http.Header{}
|
|
|
|
// read inHeader's `Sec-WebSocket-Protocol` for Xray's 0rtt ws
|
|
|
|
if secProtocol := requestHeader.Get("Sec-WebSocket-Protocol"); len(secProtocol) > 0 {
|
|
|
|
if buf, err := decodeEd(secProtocol); err == nil { // sure could base64 decode
|
|
|
|
edBuf = buf
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return edBuf, responseHeader
|
|
|
|
}
|
|
|
|
|
|
|
|
func StreamUpgradedWebsocketConn(w http.ResponseWriter, r *http.Request) (net.Conn, error) {
|
|
|
|
edBuf, responseHeader := decodeXray0rtt(r.Header)
|
2023-10-07 16:45:15 +08:00
|
|
|
wsConn, rw, _, err := ws.HTTPUpgrader{Header: responseHeader}.Upgrade(r, w)
|
2023-10-06 17:44:36 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
conn := newWebsocketConn(wsConn, rw.Reader, ws.StateServerSide)
|
|
|
|
if len(edBuf) > 0 {
|
2023-10-07 16:45:15 +08:00
|
|
|
return N.NewDeadlineConn(&websocketWithReaderConn{conn, io.MultiReader(bytes.NewReader(edBuf), conn)}), nil
|
2023-10-06 17:44:36 +08:00
|
|
|
}
|
2023-10-07 16:45:15 +08:00
|
|
|
return N.NewDeadlineConn(conn), nil
|
2023-10-06 17:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type websocketWithReaderConn struct {
|
|
|
|
*websocketConn
|
|
|
|
reader io.Reader
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ws *websocketWithReaderConn) Read(b []byte) (n int, err error) {
|
|
|
|
return ws.reader.Read(b)
|
|
|
|
}
|