clash/adapter/outbound/util.go

82 lines
1.9 KiB
Go
Raw Normal View History

2019-12-08 04:17:24 +00:00
package outbound
2018-08-08 03:51:06 +00:00
import (
2019-04-25 05:48:47 +00:00
"bytes"
"crypto/tls"
xtls "github.com/xtls/go"
2018-08-08 03:51:06 +00:00
"net"
2019-04-25 05:48:47 +00:00
"strconv"
"sync"
2018-08-08 03:51:06 +00:00
"time"
"github.com/Dreamacro/clash/component/resolver"
2018-08-08 03:51:06 +00:00
C "github.com/Dreamacro/clash/constant"
2021-05-13 14:18:49 +00:00
"github.com/Dreamacro/clash/transport/socks5"
2018-08-08 03:51:06 +00:00
)
var (
globalClientSessionCache tls.ClientSessionCache
globalClientXSessionCache xtls.ClientSessionCache
once sync.Once
)
func tcpKeepAlive(c net.Conn) {
if tcp, ok := c.(*net.TCPConn); ok {
2022-04-19 17:52:51 +00:00
_ = tcp.SetKeepAlive(true)
_ = tcp.SetKeepAlivePeriod(30 * time.Second)
}
}
func getClientSessionCache() tls.ClientSessionCache {
once.Do(func() {
globalClientSessionCache = tls.NewLRUClientSessionCache(128)
})
return globalClientSessionCache
}
func getClientXSessionCache() xtls.ClientSessionCache {
once.Do(func() {
globalClientXSessionCache = xtls.NewLRUClientSessionCache(128)
})
return globalClientXSessionCache
}
2019-04-25 05:48:47 +00:00
func serializesSocksAddr(metadata *C.Metadata) []byte {
var buf [][]byte
aType := uint8(metadata.AddrType)
2021-11-07 16:31:08 +00:00
p, _ := strconv.ParseUint(metadata.DstPort, 10, 16)
2019-04-25 05:48:47 +00:00
port := []byte{uint8(p >> 8), uint8(p & 0xff)}
switch metadata.AddrType {
case socks5.AtypDomainName:
2022-04-19 17:52:51 +00:00
lenM := uint8(len(metadata.Host))
2019-04-25 05:48:47 +00:00
host := []byte(metadata.Host)
2022-04-19 17:52:51 +00:00
buf = [][]byte{{aType, lenM}, host, port}
2019-04-25 05:48:47 +00:00
case socks5.AtypIPv4:
2022-04-19 17:52:51 +00:00
host := metadata.DstIP.AsSlice()
2019-04-25 05:48:47 +00:00
buf = [][]byte{{aType}, host, port}
case socks5.AtypIPv6:
2022-04-19 17:52:51 +00:00
host := metadata.DstIP.AsSlice()
2019-04-25 05:48:47 +00:00
buf = [][]byte{{aType}, host, port}
}
return bytes.Join(buf, nil)
}
func resolveUDPAddr(network, address string) (*net.UDPAddr, error) {
host, port, err := net.SplitHostPort(address)
if err != nil {
return nil, err
}
2022-03-27 16:44:13 +00:00
ip, err := resolver.ResolveProxyServerHost(host)
if err != nil {
return nil, err
}
return net.ResolveUDPAddr(network, net.JoinHostPort(ip.String(), port))
}
func safeConnClose(c net.Conn, err error) {
if err != nil {
2022-04-19 17:52:51 +00:00
_ = c.Close()
}
}