1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00
v2fly/transport/internet/tcp/dialer.go

66 lines
1.9 KiB
Go
Raw Normal View History

2016-06-14 16:54:08 -04:00
package tcp
import (
"context"
2016-09-30 10:53:40 -04:00
"crypto/tls"
2016-12-04 03:10:47 -05:00
"net"
2017-01-01 15:19:12 -05:00
2017-02-10 10:50:45 -05:00
"v2ray.com/core/app/log"
2017-01-03 09:16:48 -05:00
"v2ray.com/core/common"
2016-12-04 03:10:47 -05:00
"v2ray.com/core/common/errors"
2016-08-20 14:55:45 -04:00
v2net "v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
2016-11-24 17:16:05 -05:00
"v2ray.com/core/transport/internet/internal"
2016-10-02 17:43:58 -04:00
v2tls "v2ray.com/core/transport/internet/tls"
2016-06-14 16:54:08 -04:00
)
var (
2016-11-24 17:16:05 -05:00
globalCache = internal.NewConnectionPool()
2016-06-14 16:54:08 -04:00
)
func Dial(ctx context.Context, dest v2net.Destination) (internet.Connection, error) {
2017-04-06 15:13:17 -04:00
log.Trace(errors.New("Internet|TCP: Dailing TCP to ", dest))
src := internet.DialerSourceFromContext(ctx)
tcpSettings := internet.TransportSettingsFromContext(ctx).(*Config)
2016-10-02 17:43:58 -04:00
2017-01-01 16:12:44 -05:00
id := internal.NewConnectionID(src, dest)
2016-06-14 16:54:08 -04:00
var conn net.Conn
2017-01-01 15:19:12 -05:00
if dest.Network == v2net.Network_TCP && tcpSettings.IsConnectionReuse() {
2016-06-14 16:54:08 -04:00
conn = globalCache.Get(id)
}
if conn == nil {
var err error
2017-02-23 17:48:47 -05:00
conn, err = internet.DialSystem(ctx, src, dest)
2016-06-14 16:54:08 -04:00
if err != nil {
return nil, err
}
if securitySettings := internet.SecuritySettingsFromContext(ctx); securitySettings != nil {
2016-10-31 19:41:46 -04:00
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)
2016-10-16 08:22:21 -04:00
}
2016-09-30 10:53:40 -04:00
}
2016-11-02 17:26:21 -04:00
if tcpSettings.HeaderSettings != nil {
headerConfig, err := tcpSettings.HeaderSettings.GetInstance()
if err != nil {
2017-04-06 09:13:09 -04:00
return nil, errors.New("Internet|TCP: Failed to get header settings.").Base(err)
2016-11-02 17:26:21 -04:00
}
2017-01-12 16:47:10 -05:00
auth, err := internet.CreateConnectionAuthenticator(headerConfig)
2016-11-02 17:26:21 -04:00
if err != nil {
2017-04-06 09:13:09 -04:00
return nil, errors.New("Internet|TCP: Failed to create header authenticator.").Base(err)
2016-11-02 17:26:21 -04:00
}
conn = auth.Client(conn)
}
2016-09-30 10:53:40 -04:00
}
2017-01-04 07:29:41 -05:00
return internal.NewConnection(id, conn, globalCache, internal.ReuseConnection(tcpSettings.IsConnectionReuse())), nil
2016-06-14 16:54:08 -04:00
}
func init() {
common.Must(internet.RegisterTransportDialer(internet.TransportProtocol_TCP, Dial))
2016-06-14 16:54:08 -04:00
}