mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
161 lines
4 KiB
Go
161 lines
4 KiB
Go
package v2rayhttp
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"math/rand"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
"github.com/sagernet/sing-box/common/tls"
|
|
"github.com/sagernet/sing-box/option"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
sHTTP "github.com/sagernet/sing/protocol/http"
|
|
|
|
"golang.org/x/net/http2"
|
|
)
|
|
|
|
var _ adapter.V2RayClientTransport = (*Client)(nil)
|
|
|
|
type Client struct {
|
|
ctx context.Context
|
|
dialer N.Dialer
|
|
serverAddr M.Socksaddr
|
|
transport http.RoundTripper
|
|
http2 bool
|
|
requestURL url.URL
|
|
host []string
|
|
method string
|
|
headers http.Header
|
|
}
|
|
|
|
func NewClient(ctx context.Context, dialer N.Dialer, serverAddr M.Socksaddr, options option.V2RayHTTPOptions, tlsConfig tls.Config) (adapter.V2RayClientTransport, error) {
|
|
var transport http.RoundTripper
|
|
if tlsConfig == nil {
|
|
transport = &http.Transport{
|
|
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
return dialer.DialContext(ctx, network, M.ParseSocksaddr(addr))
|
|
},
|
|
}
|
|
} else {
|
|
if len(tlsConfig.NextProtos()) == 0 {
|
|
tlsConfig.SetNextProtos([]string{http2.NextProtoTLS})
|
|
}
|
|
transport = &http2.Transport{
|
|
ReadIdleTimeout: time.Duration(options.IdleTimeout),
|
|
PingTimeout: time.Duration(options.PingTimeout),
|
|
DialTLSContext: func(ctx context.Context, network, addr string, cfg *tls.STDConfig) (net.Conn, error) {
|
|
conn, err := dialer.DialContext(ctx, network, M.ParseSocksaddr(addr))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return tls.ClientHandshake(ctx, conn, tlsConfig)
|
|
},
|
|
}
|
|
}
|
|
if options.Method == "" {
|
|
options.Method = http.MethodPut
|
|
}
|
|
var requestURL url.URL
|
|
if tlsConfig == nil {
|
|
requestURL.Scheme = "http"
|
|
} else {
|
|
requestURL.Scheme = "https"
|
|
}
|
|
requestURL.Host = serverAddr.String()
|
|
requestURL.Path = options.Path
|
|
err := sHTTP.URLSetPath(&requestURL, options.Path)
|
|
if err != nil {
|
|
return nil, E.Cause(err, "parse path")
|
|
}
|
|
if !strings.HasPrefix(requestURL.Path, "/") {
|
|
requestURL.Path = "/" + requestURL.Path
|
|
}
|
|
return &Client{
|
|
ctx: ctx,
|
|
dialer: dialer,
|
|
serverAddr: serverAddr,
|
|
requestURL: requestURL,
|
|
host: options.Host,
|
|
method: options.Method,
|
|
headers: options.Headers.Build(),
|
|
transport: transport,
|
|
http2: tlsConfig != nil,
|
|
}, nil
|
|
}
|
|
|
|
func (c *Client) DialContext(ctx context.Context) (net.Conn, error) {
|
|
if !c.http2 {
|
|
return c.dialHTTP(ctx)
|
|
} else {
|
|
return c.dialHTTP2(ctx)
|
|
}
|
|
}
|
|
|
|
func (c *Client) dialHTTP(ctx context.Context) (net.Conn, error) {
|
|
conn, err := c.dialer.DialContext(ctx, N.NetworkTCP, c.serverAddr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
request := &http.Request{
|
|
Method: c.method,
|
|
URL: &c.requestURL,
|
|
Header: c.headers.Clone(),
|
|
}
|
|
switch hostLen := len(c.host); hostLen {
|
|
case 0:
|
|
request.Host = c.serverAddr.AddrString()
|
|
case 1:
|
|
request.Host = c.host[0]
|
|
default:
|
|
request.Host = c.host[rand.Intn(hostLen)]
|
|
}
|
|
|
|
return NewHTTP1Conn(conn, request), nil
|
|
}
|
|
|
|
func (c *Client) dialHTTP2(ctx context.Context) (net.Conn, error) {
|
|
pipeInReader, pipeInWriter := io.Pipe()
|
|
request := &http.Request{
|
|
Method: c.method,
|
|
Body: pipeInReader,
|
|
URL: &c.requestURL,
|
|
Header: c.headers.Clone(),
|
|
}
|
|
request = request.WithContext(ctx)
|
|
switch hostLen := len(c.host); hostLen {
|
|
case 0:
|
|
// https://github.com/v2fly/v2ray-core/blob/master/transport/internet/http/config.go#L13
|
|
request.Host = "www.example.com"
|
|
case 1:
|
|
request.Host = c.host[0]
|
|
default:
|
|
request.Host = c.host[rand.Intn(hostLen)]
|
|
}
|
|
conn := NewLateHTTPConn(pipeInWriter)
|
|
go func() {
|
|
response, err := c.transport.RoundTrip(request)
|
|
if err != nil {
|
|
conn.Setup(nil, err)
|
|
} else if response.StatusCode != 200 {
|
|
response.Body.Close()
|
|
conn.Setup(nil, E.New("v2ray-http: unexpected status: ", response.Status))
|
|
} else {
|
|
conn.Setup(response.Body, nil)
|
|
}
|
|
}()
|
|
return conn, nil
|
|
}
|
|
|
|
func (c *Client) Close() error {
|
|
c.transport = ResetTransport(c.transport)
|
|
return nil
|
|
}
|