2016-06-14 20:54:08 +00:00
|
|
|
package tcp
|
|
|
|
|
|
|
|
import (
|
2017-01-26 19:46:44 +00:00
|
|
|
"context"
|
2017-01-01 20:19:12 +00:00
|
|
|
|
2017-01-03 14:16:48 +00:00
|
|
|
"v2ray.com/core/common"
|
2017-08-29 10:56:57 +00:00
|
|
|
"v2ray.com/core/common/net"
|
2018-06-24 23:09:02 +00:00
|
|
|
"v2ray.com/core/common/session"
|
2016-08-20 18:55:45 +00:00
|
|
|
"v2ray.com/core/transport/internet"
|
2017-04-20 09:00:15 +00:00
|
|
|
"v2ray.com/core/transport/internet/tls"
|
2016-06-14 20:54:08 +00:00
|
|
|
)
|
|
|
|
|
2017-04-18 10:55:09 +00:00
|
|
|
func getTCPSettingsFromContext(ctx context.Context) *Config {
|
2018-09-07 12:50:25 +00:00
|
|
|
rawTCPSettings := internet.StreamSettingsFromContext(ctx)
|
2017-04-18 10:55:09 +00:00
|
|
|
if rawTCPSettings == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2018-09-07 12:50:25 +00:00
|
|
|
return rawTCPSettings.ProtocolSettings.(*Config)
|
2017-04-18 10:55:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-02 17:57:22 +00:00
|
|
|
// Dial dials a new TCP connection to the given destination.
|
2017-08-29 10:56:57 +00:00
|
|
|
func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error) {
|
2018-06-24 23:09:02 +00:00
|
|
|
newError("dialing TCP to ", dest).WriteToLog(session.ExportIDToError(ctx))
|
2018-09-18 21:09:54 +00:00
|
|
|
conn, err := internet.DialSystem(ctx, dest)
|
2017-04-07 19:54:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-06-14 20:54:08 +00:00
|
|
|
}
|
2017-12-16 23:53:17 +00:00
|
|
|
|
2018-02-28 14:15:22 +00:00
|
|
|
if config := tls.ConfigFromContext(ctx); config != nil {
|
|
|
|
conn = tls.Client(conn, config.GetTLSConfig(tls.WithDestination(dest), tls.WithNextProto("h2")))
|
2017-04-07 19:54:40 +00:00
|
|
|
}
|
2017-04-18 10:55:09 +00:00
|
|
|
|
|
|
|
tcpSettings := getTCPSettingsFromContext(ctx)
|
|
|
|
if tcpSettings != nil && tcpSettings.HeaderSettings != nil {
|
2017-04-07 19:54:40 +00:00
|
|
|
headerConfig, err := tcpSettings.HeaderSettings.GetInstance()
|
|
|
|
if err != nil {
|
2017-04-09 11:30:46 +00:00
|
|
|
return nil, newError("failed to get header settings").Base(err).AtError()
|
2017-04-07 19:54:40 +00:00
|
|
|
}
|
|
|
|
auth, err := internet.CreateConnectionAuthenticator(headerConfig)
|
|
|
|
if err != nil {
|
2017-04-09 11:30:46 +00:00
|
|
|
return nil, newError("failed to create header authenticator").Base(err).AtError()
|
2016-11-02 21:26:21 +00:00
|
|
|
}
|
2017-04-07 19:54:40 +00:00
|
|
|
conn = auth.Client(conn)
|
2016-09-30 14:53:40 +00:00
|
|
|
}
|
2017-04-07 19:54:40 +00:00
|
|
|
return internet.Connection(conn), nil
|
2016-06-14 20:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-08-06 11:48:35 +00:00
|
|
|
common.Must(internet.RegisterTransportDialer(protocolName, Dial))
|
2016-06-14 20:54:08 +00:00
|
|
|
}
|