| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- package websocket
- import (
- "io/ioutil"
- "net"
- "github.com/gorilla/websocket"
- "v2ray.com/core/common/log"
- v2net "v2ray.com/core/common/net"
- "v2ray.com/core/transport/internet"
- v2tls "v2ray.com/core/transport/internet/tls"
- )
- var (
- globalCache = NewConnectionCache()
- )
- func Dial(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error) {
- log.Info("WebSocket|Dailer: Creating connection to ", dest)
- if src == nil {
- src = v2net.AnyIP
- }
- networkSettings, err := options.Stream.GetEffectiveNetworkSettings()
- if err != nil {
- return nil, err
- }
- wsSettings := networkSettings.(*Config)
- id := src.String() + "-" + dest.NetAddr()
- var conn *wsconn
- if dest.Network == v2net.Network_TCP && wsSettings.IsConnectionReuse() {
- connt := globalCache.Get(id)
- if connt != nil {
- conn = connt.(*wsconn)
- }
- }
- if conn == nil {
- var err error
- conn, err = wsDial(src, dest, options)
- if err != nil {
- log.Warning("WebSocket|Dialer: Dial failed: ", err)
- return nil, err
- }
- }
- return NewConnection(id, conn, globalCache, wsSettings), nil
- }
- func init() {
- internet.WSDialer = Dial
- }
- func wsDial(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (*wsconn, error) {
- networkSettings, err := options.Stream.GetEffectiveNetworkSettings()
- if err != nil {
- return nil, err
- }
- wsSettings := networkSettings.(*Config)
- commonDial := func(network, addr string) (net.Conn, error) {
- return internet.DialToDest(src, dest)
- }
- dialer := websocket.Dialer{
- NetDial: commonDial,
- ReadBufferSize: 65536,
- WriteBufferSize: 65536,
- }
- protocol := "ws"
- if options.Stream != nil && options.Stream.HasSecuritySettings() {
- protocol = "wss"
- securitySettings, err := options.Stream.GetEffectiveSecuritySettings()
- if err != nil {
- log.Error("WebSocket: Failed to create security settings: ", err)
- return nil, err
- }
- tlsConfig, ok := securitySettings.(*v2tls.Config)
- if ok {
- dialer.TLSClientConfig = tlsConfig.GetTLSConfig()
- if dest.Address.Family().IsDomain() {
- dialer.TLSClientConfig.ServerName = dest.Address.Domain()
- }
- }
- }
- uri := protocol + "://" + dest.NetAddr() + "/" + wsSettings.Path
- conn, resp, err := dialer.Dial(uri, nil)
- if err != nil {
- if resp != nil {
- reason, reasonerr := ioutil.ReadAll(resp.Body)
- log.Info(string(reason), reasonerr)
- }
- return nil, err
- }
- return func() internet.Connection {
- connv2ray := &wsconn{
- wsc: conn,
- connClosing: false,
- config: wsSettings,
- }
- connv2ray.setup()
- return connv2ray
- }().(*wsconn), nil
- }
|