mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
consume config in dialer and hub
This commit is contained in:
parent
d207d953bd
commit
e5d3783ed7
@ -2,9 +2,42 @@ package http
|
||||
|
||||
import (
|
||||
"v2ray.com/core/common"
|
||||
"v2ray.com/core/common/dice"
|
||||
"v2ray.com/core/transport/internet"
|
||||
)
|
||||
|
||||
func (c *Config) getHosts() []string {
|
||||
if len(c.Host) == 0 {
|
||||
return []string{"www.example.com"}
|
||||
}
|
||||
return c.Host
|
||||
}
|
||||
|
||||
func (c *Config) isValidHost(host string) bool {
|
||||
hosts := c.getHosts()
|
||||
for _, h := range hosts {
|
||||
if h == host {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (c *Config) getRandomHost() string {
|
||||
hosts := c.getHosts()
|
||||
return hosts[dice.Roll(len(hosts))]
|
||||
}
|
||||
|
||||
func (c *Config) getNormalizedPath() string {
|
||||
if len(c.Path) == 0 {
|
||||
return "/"
|
||||
}
|
||||
if c.Path[0] != '/' {
|
||||
return "/" + c.Path
|
||||
}
|
||||
return c.Path
|
||||
}
|
||||
|
||||
func init() {
|
||||
common.Must(internet.RegisterProtocolConfigCreator(internet.TransportProtocol_HTTP, func() interface{} {
|
||||
return new(Config)
|
||||
|
@ -68,6 +68,12 @@ func getHTTPClient(ctx context.Context, dest net.Destination) (*http.Client, err
|
||||
|
||||
// Dial dials a new TCP connection to the given destination.
|
||||
func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error) {
|
||||
rawSettings := internet.TransportSettingsFromContext(ctx)
|
||||
httpSettings, ok := rawSettings.(*Config)
|
||||
if !ok {
|
||||
return nil, newError("HTTP config is not set.").AtError()
|
||||
}
|
||||
|
||||
client, err := getHTTPClient(ctx, dest)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -76,12 +82,12 @@ func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error
|
||||
preader, pwriter := io.Pipe()
|
||||
request := &http.Request{
|
||||
Method: "PUT",
|
||||
Host: "www.v2ray.com",
|
||||
Host: httpSettings.getRandomHost(),
|
||||
Body: preader,
|
||||
URL: &url.URL{
|
||||
Scheme: "https",
|
||||
Host: dest.NetAddr(),
|
||||
Path: "/",
|
||||
Path: httpSettings.getNormalizedPath(),
|
||||
},
|
||||
Proto: "HTTP/2",
|
||||
ProtoMajor: 2,
|
||||
|
@ -22,9 +22,13 @@ func TestHTTPConnection(t *testing.T) {
|
||||
|
||||
port := tcp.PickPort()
|
||||
|
||||
listener, err := Listen(internet.ContextWithSecuritySettings(context.Background(), &tls.Config{
|
||||
lctx := context.Background()
|
||||
lctx = internet.ContextWithSecuritySettings(lctx, &tls.Config{
|
||||
Certificate: []*tls.Certificate{tlsgen.GenerateCertificateForTest()},
|
||||
}), net.LocalHostIP, port, func(conn internet.Connection) {
|
||||
})
|
||||
lctx = internet.ContextWithTransportSettings(lctx, &Config{})
|
||||
|
||||
listener, err := Listen(lctx, net.LocalHostIP, port, func(conn internet.Connection) {
|
||||
go func() {
|
||||
defer conn.Close()
|
||||
|
||||
@ -47,10 +51,13 @@ func TestHTTPConnection(t *testing.T) {
|
||||
|
||||
time.Sleep(time.Second)
|
||||
|
||||
conn, err := Dial(internet.ContextWithSecuritySettings(context.Background(), &tls.Config{
|
||||
dctx := context.Background()
|
||||
dctx = internet.ContextWithSecuritySettings(dctx, &tls.Config{
|
||||
ServerName: "www.v2ray.com",
|
||||
AllowInsecure: true,
|
||||
}), net.TCPDestination(net.LocalHostIP, port))
|
||||
})
|
||||
dctx = internet.ContextWithTransportSettings(dctx, &Config{})
|
||||
conn, err := Dial(dctx, net.TCPDestination(net.LocalHostIP, port))
|
||||
assert(err, IsNil)
|
||||
defer conn.Close()
|
||||
|
||||
|
@ -4,6 +4,7 @@ import (
|
||||
"context"
|
||||
"io"
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
"v2ray.com/core/common"
|
||||
"v2ray.com/core/common/net"
|
||||
@ -17,6 +18,7 @@ type Listener struct {
|
||||
server *http.Server
|
||||
handler internet.ConnHandler
|
||||
local net.Addr
|
||||
config Config
|
||||
}
|
||||
|
||||
func (l *Listener) Addr() net.Addr {
|
||||
@ -40,6 +42,18 @@ func (fw flushWriter) Write(p []byte) (n int, err error) {
|
||||
}
|
||||
|
||||
func (l *Listener) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
|
||||
host := request.Host
|
||||
if !l.config.isValidHost(host) {
|
||||
writer.WriteHeader(404)
|
||||
return
|
||||
}
|
||||
path := l.config.getNormalizedPath()
|
||||
if !strings.HasPrefix(request.URL.Path, path) {
|
||||
writer.WriteHeader(404)
|
||||
return
|
||||
}
|
||||
|
||||
writer.Header().Set("Cache-Control", "no-store")
|
||||
writer.WriteHeader(200)
|
||||
if f, ok := writer.(http.Flusher); ok {
|
||||
f.Flush()
|
||||
@ -56,12 +70,19 @@ func (l *Listener) ServeHTTP(writer http.ResponseWriter, request *http.Request)
|
||||
}
|
||||
|
||||
func Listen(ctx context.Context, address net.Address, port net.Port, handler internet.ConnHandler) (internet.Listener, error) {
|
||||
rawSettings := internet.TransportSettingsFromContext(ctx)
|
||||
httpSettings, ok := rawSettings.(*Config)
|
||||
if !ok {
|
||||
return nil, newError("HTTP config is not set.").AtError()
|
||||
}
|
||||
|
||||
listener := &Listener{
|
||||
handler: handler,
|
||||
local: &net.TCPAddr{
|
||||
IP: address.IP(),
|
||||
Port: int(port),
|
||||
},
|
||||
config: *httpSettings,
|
||||
}
|
||||
|
||||
config := tls.ConfigFromContext(ctx)
|
||||
|
Loading…
Reference in New Issue
Block a user