mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-19 10:56:06 -05:00
86 lines
2.4 KiB
Go
86 lines
2.4 KiB
Go
package tcp
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net"
|
|
"v2ray.com/core/common/errors"
|
|
"v2ray.com/core/common/log"
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
"v2ray.com/core/transport/internet/internal"
|
|
v2tls "v2ray.com/core/transport/internet/tls"
|
|
)
|
|
|
|
var (
|
|
globalCache = internal.NewConnectionPool()
|
|
)
|
|
|
|
func Dial(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error) {
|
|
log.Info("Internet|TCP: Dailing TCP to ", dest)
|
|
if src == nil {
|
|
src = v2net.AnyIP
|
|
}
|
|
networkSettings, err := options.Stream.GetEffectiveNetworkSettings()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tcpSettings := networkSettings.(*Config)
|
|
|
|
id := internal.NewConnectionId(src, dest)
|
|
var conn net.Conn
|
|
if dest.Network == v2net.Network_TCP && tcpSettings.ConnectionReuse.IsEnabled() {
|
|
conn = globalCache.Get(id)
|
|
}
|
|
if conn == nil {
|
|
var err error
|
|
conn, err = internet.DialToDest(src, dest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if options.Stream != nil && options.Stream.HasSecuritySettings() {
|
|
securitySettings, err := options.Stream.GetEffectiveSecuritySettings()
|
|
if err != nil {
|
|
log.Error("TCP: Failed to get security settings: ", err)
|
|
return nil, err
|
|
}
|
|
tlsConfig, ok := securitySettings.(*v2tls.Config)
|
|
if ok {
|
|
config := tlsConfig.GetTLSConfig()
|
|
if dest.Address.Family().IsDomain() {
|
|
config.ServerName = dest.Address.Domain()
|
|
}
|
|
conn = tls.Client(conn, config)
|
|
}
|
|
}
|
|
if tcpSettings.HeaderSettings != nil {
|
|
headerConfig, err := tcpSettings.HeaderSettings.GetInstance()
|
|
if err != nil {
|
|
return nil, errors.Base(err).Message("Interent|TCP: Failed to get header settings.")
|
|
}
|
|
auth, err := internet.CreateConnectionAuthenticator(tcpSettings.HeaderSettings.Type, headerConfig)
|
|
if err != nil {
|
|
return nil, errors.Base(err).Message("Internet|TCP: Failed to create header authenticator.")
|
|
}
|
|
conn = auth.Client(conn)
|
|
}
|
|
}
|
|
return NewConnection(id, conn, globalCache, tcpSettings), nil
|
|
}
|
|
|
|
func DialRaw(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error) {
|
|
log.Info("Internet|TCP: Dailing Raw TCP to ", dest)
|
|
conn, err := internet.DialToDest(src, dest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// TODO: handle dialer options
|
|
return &RawConnection{
|
|
TCPConn: *conn.(*net.TCPConn),
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
internet.TCPDialer = Dial
|
|
internet.RawTCPDialer = DialRaw
|
|
}
|