1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 14:24:36 -04:00
v2fly/transport/internet/websocket/dialer.go

100 lines
2.5 KiB
Go
Raw Normal View History

2016-12-22 18:30:46 -05:00
package websocket
2016-08-13 09:44:36 -04:00
import (
"context"
2016-08-14 02:11:51 -04:00
"io/ioutil"
2016-08-13 09:44:36 -04:00
"net"
"github.com/gorilla/websocket"
2017-01-03 09:16:48 -05:00
"v2ray.com/core/common"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
2017-01-04 09:34:21 -05:00
"v2ray.com/core/transport/internet/internal"
2016-10-02 17:43:58 -04:00
v2tls "v2ray.com/core/transport/internet/tls"
2016-08-13 09:44:36 -04:00
)
var (
2017-01-04 09:34:21 -05:00
globalCache = internal.NewConnectionPool()
2016-08-13 09:44:36 -04:00
)
func Dial(ctx context.Context, dest v2net.Destination) (internet.Connection, error) {
log.Info("WebSocket|Dialer: Creating connection to ", dest)
src := internet.DialerSourceFromContext(ctx)
wsSettings := internet.TransportSettingsFromContext(ctx).(*Config)
2016-10-02 17:43:58 -04:00
2017-01-04 09:34:21 -05:00
id := internal.NewConnectionID(src, dest)
2016-08-13 09:44:36 -04:00
var conn *wsconn
2017-01-01 15:19:12 -05:00
if dest.Network == v2net.Network_TCP && wsSettings.IsConnectionReuse() {
2016-08-13 09:44:36 -04:00
connt := globalCache.Get(id)
if connt != nil {
conn = connt.(*wsconn)
}
}
if conn == nil {
var err error
conn, err = wsDial(ctx, dest)
2016-08-13 09:44:36 -04:00
if err != nil {
2016-08-17 17:12:10 -04:00
log.Warning("WebSocket|Dialer: Dial failed: ", err)
2016-08-13 09:44:36 -04:00
return nil, err
}
}
2017-01-04 09:34:21 -05:00
return internal.NewConnection(id, conn, globalCache, internal.ReuseConnection(wsSettings.IsConnectionReuse())), nil
2016-08-13 09:44:36 -04:00
}
func init() {
common.Must(internet.RegisterTransportDialer(internet.TransportProtocol_WebSocket, Dial))
2016-08-13 09:44:36 -04:00
}
func wsDial(ctx context.Context, dest v2net.Destination) (*wsconn, error) {
src := internet.DialerSourceFromContext(ctx)
wsSettings := internet.TransportSettingsFromContext(ctx).(*Config)
2016-10-02 17:43:58 -04:00
2016-08-13 09:44:36 -04:00
commonDial := func(network, addr string) (net.Conn, error) {
2017-01-03 09:16:48 -05:00
return internet.DialSystem(src, dest)
2016-08-13 09:44:36 -04:00
}
2016-09-30 10:53:40 -04:00
dialer := websocket.Dialer{
NetDial: commonDial,
ReadBufferSize: 65536,
WriteBufferSize: 65536,
}
2016-08-13 10:50:24 -04:00
2016-09-30 10:53:40 -04:00
protocol := "ws"
2016-08-13 09:44:36 -04:00
if securitySettings := internet.SecuritySettingsFromContext(ctx); securitySettings != nil {
2016-10-16 08:22:21 -04:00
tlsConfig, ok := securitySettings.(*v2tls.Config)
if ok {
protocol = "wss"
2016-10-16 08:22:21 -04:00
dialer.TLSClientConfig = tlsConfig.GetTLSConfig()
if dest.Address.Family().IsDomain() {
dialer.TLSClientConfig.ServerName = dest.Address.Domain()
}
2016-09-30 10:53:40 -04:00
}
}
2016-08-13 09:44:36 -04:00
2017-01-08 10:01:28 -05:00
host := dest.NetAddr()
if (protocol == "ws" && dest.Port == 80) || (protocol == "wss" && dest.Port == 443) {
host = dest.Address.String()
}
uri := protocol + "://" + host + "/" + wsSettings.Path
2016-08-14 02:11:51 -04:00
conn, resp, err := dialer.Dial(uri, nil)
2016-08-13 09:44:36 -04:00
if err != nil {
2016-08-14 08:41:26 -04:00
if resp != nil {
reason, reasonerr := ioutil.ReadAll(resp.Body)
log.Info(string(reason), reasonerr)
}
2016-08-13 09:44:36 -04:00
return nil, err
}
return func() internet.Connection {
2016-10-02 17:43:58 -04:00
connv2ray := &wsconn{
wsc: conn,
connClosing: false,
config: wsSettings,
}
2016-08-13 09:44:36 -04:00
connv2ray.setup()
return connv2ray
}().(*wsconn), nil
}