mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
079d0bd8a9
* Refactor log * Add new log methods * Fix logger test * Change all logging code * Clean up pathObj * Rebase to latest main * Remove invoking method name after the dot
127 lines
3.4 KiB
Go
127 lines
3.4 KiB
Go
package httpupgrade
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"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/stat"
|
|
"github.com/xtls/xray-core/transport/internet/tls"
|
|
)
|
|
|
|
type ConnRF struct {
|
|
net.Conn
|
|
Req *http.Request
|
|
First bool
|
|
}
|
|
|
|
func (c *ConnRF) Read(b []byte) (int, error) {
|
|
if c.First {
|
|
c.First = false
|
|
// create reader capped to size of `b`, so it can be fully drained into
|
|
// `b` later with a single Read call
|
|
reader := bufio.NewReaderSize(c.Conn, len(b))
|
|
resp, err := http.ReadResponse(reader, c.Req) // nolint:bodyclose
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if resp.Status != "101 Switching Protocols" ||
|
|
strings.ToLower(resp.Header.Get("Upgrade")) != "websocket" ||
|
|
strings.ToLower(resp.Header.Get("Connection")) != "upgrade" {
|
|
return 0, errors.New("unrecognized reply")
|
|
}
|
|
// drain remaining bufreader
|
|
return reader.Read(b[:reader.Buffered()])
|
|
}
|
|
return c.Conn.Read(b)
|
|
}
|
|
|
|
func dialhttpUpgrade(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (net.Conn, error) {
|
|
transportConfiguration := streamSettings.ProtocolSettings.(*Config)
|
|
|
|
pconn, err := internet.DialSystem(ctx, dest, streamSettings.SocketSettings)
|
|
if err != nil {
|
|
errors.LogErrorInner(ctx, err, "failed to dial to ", dest)
|
|
return nil, err
|
|
}
|
|
|
|
var conn net.Conn
|
|
var requestURL url.URL
|
|
if config := tls.ConfigFromStreamSettings(streamSettings); config != nil {
|
|
tlsConfig := config.GetTLSConfig(tls.WithDestination(dest), tls.WithNextProto("http/1.1"))
|
|
if fingerprint := tls.GetFingerprint(config.Fingerprint); fingerprint != nil {
|
|
conn = tls.UClient(pconn, tlsConfig, fingerprint)
|
|
if err := conn.(*tls.UConn).WebsocketHandshakeContext(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
conn = tls.Client(pconn, tlsConfig)
|
|
}
|
|
requestURL.Scheme = "https"
|
|
} else {
|
|
conn = pconn
|
|
requestURL.Scheme = "http"
|
|
}
|
|
|
|
requestURL.Host = dest.NetAddr()
|
|
requestURL.Path = transportConfiguration.GetNormalizedPath()
|
|
req := &http.Request{
|
|
Method: http.MethodGet,
|
|
URL: &requestURL,
|
|
Host: transportConfiguration.Host,
|
|
Header: make(http.Header),
|
|
}
|
|
for key, value := range transportConfiguration.Header {
|
|
AddHeader(req.Header, key, value)
|
|
}
|
|
req.Header.Set("Connection", "Upgrade")
|
|
req.Header.Set("Upgrade", "websocket")
|
|
|
|
err = req.Write(conn)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
connRF := &ConnRF{
|
|
Conn: conn,
|
|
Req: req,
|
|
First: true,
|
|
}
|
|
|
|
if transportConfiguration.Ed == 0 {
|
|
_, err = connRF.Read([]byte{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return connRF, nil
|
|
}
|
|
|
|
// http.Header.Add() will convert headers to MIME header format.
|
|
// Some people don't like this because they want to send "Web*S*ocket".
|
|
// So we add a simple function to replace that method.
|
|
func AddHeader(header http.Header, key, value string) {
|
|
header[key] = append(header[key], value)
|
|
}
|
|
|
|
func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (stat.Connection, error) {
|
|
errors.LogInfo(ctx, "creating connection to ", dest)
|
|
|
|
conn, err := dialhttpUpgrade(ctx, dest, streamSettings)
|
|
if err != nil {
|
|
return nil, errors.New("failed to dial request to ", dest).Base(err)
|
|
}
|
|
return stat.Connection(conn), nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterTransportDialer(protocolName, Dial))
|
|
}
|