chore: update quic-go to 0.35.1
This commit is contained in:
parent
38e210a851
commit
6c7d1657a5
10 changed files with 68 additions and 47 deletions
|
@ -90,11 +90,7 @@ func (t *Tuic) SupportWithDialer() C.NetWork {
|
||||||
return C.ALLNet
|
return C.ALLNet
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *Tuic) dial(ctx context.Context, opts ...dialer.Option) (pc net.PacketConn, addr net.Addr, err error) {
|
func (t *Tuic) dialWithDialer(ctx context.Context, dialer C.Dialer) (transport *quic.Transport, addr net.Addr, err error) {
|
||||||
return t.dialWithDialer(ctx, dialer.NewDialer(opts...))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *Tuic) dialWithDialer(ctx context.Context, dialer C.Dialer) (pc net.PacketConn, addr net.Addr, err error) {
|
|
||||||
if len(t.option.DialerProxy) > 0 {
|
if len(t.option.DialerProxy) > 0 {
|
||||||
dialer, err = proxydialer.NewByName(t.option.DialerProxy, dialer)
|
dialer, err = proxydialer.NewByName(t.option.DialerProxy, dialer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -106,10 +102,14 @@ func (t *Tuic) dialWithDialer(ctx context.Context, dialer C.Dialer) (pc net.Pack
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
addr = udpAddr
|
addr = udpAddr
|
||||||
|
var pc net.PacketConn
|
||||||
pc, err = dialer.ListenPacket(ctx, "udp", "", udpAddr.AddrPort())
|
pc, err = dialer.ListenPacket(ctx, "udp", "", udpAddr.AddrPort())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
transport = &quic.Transport{Conn: pc}
|
||||||
|
transport.SetCreatedConn(true) // auto close conn
|
||||||
|
transport.SetSingleUse(true) // auto close transport
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -220,9 +220,7 @@ func NewTuic(option TuicOption) (*Tuic, error) {
|
||||||
if len(option.Ip) > 0 {
|
if len(option.Ip) > 0 {
|
||||||
addr = net.JoinHostPort(option.Ip, strconv.Itoa(option.Port))
|
addr = net.JoinHostPort(option.Ip, strconv.Itoa(option.Port))
|
||||||
}
|
}
|
||||||
host := option.Server
|
|
||||||
if option.DisableSni {
|
if option.DisableSni {
|
||||||
host = ""
|
|
||||||
tlsConfig.ServerName = ""
|
tlsConfig.ServerName = ""
|
||||||
}
|
}
|
||||||
tkn := tuic.GenTKN(option.Token)
|
tkn := tuic.GenTKN(option.Token)
|
||||||
|
@ -254,7 +252,6 @@ func NewTuic(option TuicOption) (*Tuic, error) {
|
||||||
clientOption := &tuic.ClientOption{
|
clientOption := &tuic.ClientOption{
|
||||||
TlsConfig: tlsConfig,
|
TlsConfig: tlsConfig,
|
||||||
QuicConfig: quicConfig,
|
QuicConfig: quicConfig,
|
||||||
Host: host,
|
|
||||||
Token: tkn,
|
Token: tkn,
|
||||||
UdpRelayMode: option.UdpRelayMode,
|
UdpRelayMode: option.UdpRelayMode,
|
||||||
CongestionController: option.CongestionController,
|
CongestionController: option.CongestionController,
|
||||||
|
|
12
dns/doh.go
12
dns/doh.go
|
@ -543,7 +543,17 @@ func (doh *dnsOverHTTPS) dialQuic(ctx context.Context, addr string, tlsCfg *tls.
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return quic.DialEarlyContext(ctx, conn, &udpAddr, doh.url.Host, tlsCfg, cfg)
|
transport := quic.Transport{Conn: conn}
|
||||||
|
transport.SetCreatedConn(true) // auto close conn
|
||||||
|
transport.SetSingleUse(true) // auto close transport
|
||||||
|
tlsCfg = tlsCfg.Clone()
|
||||||
|
if host, _, err := net.SplitHostPort(doh.url.Host); err == nil {
|
||||||
|
tlsCfg.ServerName = host
|
||||||
|
} else {
|
||||||
|
// It's ok if net.SplitHostPort returns an error - it could be a hostname/IP address without a port.
|
||||||
|
tlsCfg.ServerName = doh.url.Host
|
||||||
|
}
|
||||||
|
return transport.DialEarly(ctx, &udpAddr, tlsCfg, cfg)
|
||||||
}
|
}
|
||||||
|
|
||||||
// probeH3 runs a test to check whether QUIC is faster than TLS for this
|
// probeH3 runs a test to check whether QUIC is faster than TLS for this
|
||||||
|
|
23
dns/doq.go
23
dns/doq.go
|
@ -302,14 +302,6 @@ func (doq *dnsOverQUIC) openStream(ctx context.Context, conn quic.Connection) (q
|
||||||
|
|
||||||
// openConnection opens a new QUIC connection.
|
// openConnection opens a new QUIC connection.
|
||||||
func (doq *dnsOverQUIC) openConnection(ctx context.Context) (conn quic.Connection, err error) {
|
func (doq *dnsOverQUIC) openConnection(ctx context.Context) (conn quic.Connection, err error) {
|
||||||
tlsConfig := tlsC.GetGlobalTLSConfig(
|
|
||||||
&tls.Config{
|
|
||||||
InsecureSkipVerify: false,
|
|
||||||
NextProtos: []string{
|
|
||||||
NextProtoDQ,
|
|
||||||
},
|
|
||||||
SessionTicketsDisabled: false,
|
|
||||||
})
|
|
||||||
// we're using bootstrapped address instead of what's passed to the function
|
// we're using bootstrapped address instead of what's passed to the function
|
||||||
// it does not create an actual connection, but it helps us determine
|
// it does not create an actual connection, but it helps us determine
|
||||||
// what IP is actually reachable (when there're v4/v6 addresses).
|
// what IP is actually reachable (when there're v4/v6 addresses).
|
||||||
|
@ -338,7 +330,20 @@ func (doq *dnsOverQUIC) openConnection(ctx context.Context) (conn quic.Connectio
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
conn, err = quic.DialContext(ctx, udp, &udpAddr, host, tlsConfig, doq.getQUICConfig())
|
tlsConfig := tlsC.GetGlobalTLSConfig(
|
||||||
|
&tls.Config{
|
||||||
|
ServerName: host,
|
||||||
|
InsecureSkipVerify: false,
|
||||||
|
NextProtos: []string{
|
||||||
|
NextProtoDQ,
|
||||||
|
},
|
||||||
|
SessionTicketsDisabled: false,
|
||||||
|
})
|
||||||
|
|
||||||
|
transport := quic.Transport{Conn: udp}
|
||||||
|
transport.SetCreatedConn(true) // auto close conn
|
||||||
|
transport.SetSingleUse(true) // auto close transport
|
||||||
|
conn, err = transport.Dial(ctx, &udpAddr, tlsConfig, doq.getQUICConfig())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("opening quic connection to %s: %w", doq.addr, err)
|
return nil, fmt.Errorf("opening quic connection to %s: %w", doq.addr, err)
|
||||||
}
|
}
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -20,7 +20,7 @@ require (
|
||||||
github.com/klauspost/cpuid/v2 v2.2.5
|
github.com/klauspost/cpuid/v2 v2.2.5
|
||||||
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40
|
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40
|
||||||
github.com/mdlayher/netlink v1.7.2
|
github.com/mdlayher/netlink v1.7.2
|
||||||
github.com/metacubex/quic-go v0.34.1-0.20230601081651-513972f322ee
|
github.com/metacubex/quic-go v0.35.2-0.20230603072621-ea2663348ebb
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.2-0.20230509230448-a5157cc00a1c
|
github.com/metacubex/sing-shadowsocks v0.2.2-0.20230509230448-a5157cc00a1c
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.0.0-20230529235701-a238874242ca
|
github.com/metacubex/sing-shadowsocks2 v0.0.0-20230529235701-a238874242ca
|
||||||
github.com/metacubex/sing-tun v0.1.5-0.20230530125750-171afb2dfd8e
|
github.com/metacubex/sing-tun v0.1.5-0.20230530125750-171afb2dfd8e
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -93,8 +93,8 @@ github.com/mdlayher/socket v0.4.1 h1:eM9y2/jlbs1M615oshPQOHZzj6R6wMT7bX5NPiQvn2U
|
||||||
github.com/mdlayher/socket v0.4.1/go.mod h1:cAqeGjoufqdxWkD7DkpyS+wcefOtmu5OQ8KuoJGIReA=
|
github.com/mdlayher/socket v0.4.1/go.mod h1:cAqeGjoufqdxWkD7DkpyS+wcefOtmu5OQ8KuoJGIReA=
|
||||||
github.com/metacubex/gvisor v0.0.0-20230417114019-3c3ee672d60c h1:D62872jiuzC6b+3aI8tqfeyc6YgbfarYKywTnnvXwEM=
|
github.com/metacubex/gvisor v0.0.0-20230417114019-3c3ee672d60c h1:D62872jiuzC6b+3aI8tqfeyc6YgbfarYKywTnnvXwEM=
|
||||||
github.com/metacubex/gvisor v0.0.0-20230417114019-3c3ee672d60c/go.mod h1:wqEuzdImyqD2MCGE8CYRJXbB77oSEJeoSSXXdwKjnsE=
|
github.com/metacubex/gvisor v0.0.0-20230417114019-3c3ee672d60c/go.mod h1:wqEuzdImyqD2MCGE8CYRJXbB77oSEJeoSSXXdwKjnsE=
|
||||||
github.com/metacubex/quic-go v0.34.1-0.20230601081651-513972f322ee h1:BcLrrY8wYQ/XdCVXdofXei2i8BDfWNn5ojbM8gQPJyw=
|
github.com/metacubex/quic-go v0.35.2-0.20230603072621-ea2663348ebb h1:92YTNmYXCSycERjKn/zPbeK5DiW3dd80j3+oVTEWTE8=
|
||||||
github.com/metacubex/quic-go v0.34.1-0.20230601081651-513972f322ee/go.mod h1:6pg8+Tje9KOltnj1whuvB2i5KFUMPp1TAF3oPhc5axM=
|
github.com/metacubex/quic-go v0.35.2-0.20230603072621-ea2663348ebb/go.mod h1:6pg8+Tje9KOltnj1whuvB2i5KFUMPp1TAF3oPhc5axM=
|
||||||
github.com/metacubex/sing v0.0.0-20230530121223-b768faae5c6b h1:Bw4j3ktf5vivi5qm/ZQGtyRAgybRKSGJaMV1t3rtC+I=
|
github.com/metacubex/sing v0.0.0-20230530121223-b768faae5c6b h1:Bw4j3ktf5vivi5qm/ZQGtyRAgybRKSGJaMV1t3rtC+I=
|
||||||
github.com/metacubex/sing v0.0.0-20230530121223-b768faae5c6b/go.mod h1:Ta8nHnDLAwqySzKhGoKk4ZIB+vJ3GTKj7UPrWYvM+4w=
|
github.com/metacubex/sing v0.0.0-20230530121223-b768faae5c6b/go.mod h1:Ta8nHnDLAwqySzKhGoKk4ZIB+vJ3GTKj7UPrWYvM+4w=
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.2-0.20230509230448-a5157cc00a1c h1:LpVNvlW/xE+mR8z76xJeYZlYznZXEmU4TeWeuygYdJg=
|
github.com/metacubex/sing-shadowsocks v0.2.2-0.20230509230448-a5157cc00a1c h1:LpVNvlW/xE+mR8z76xJeYZlYznZXEmU4TeWeuygYdJg=
|
||||||
|
|
|
@ -52,9 +52,7 @@ func New(config LC.TuicServer, tcpIn chan<- C.ConnContext, udpIn chan<- C.Packet
|
||||||
MaxIncomingStreams: ServerMaxIncomingStreams,
|
MaxIncomingStreams: ServerMaxIncomingStreams,
|
||||||
MaxIncomingUniStreams: ServerMaxIncomingStreams,
|
MaxIncomingUniStreams: ServerMaxIncomingStreams,
|
||||||
EnableDatagrams: true,
|
EnableDatagrams: true,
|
||||||
Allow0RTT: func(addr net.Addr) bool {
|
Allow0RTT: true,
|
||||||
return true
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
quicConfig.InitialStreamReceiveWindow = tuic.DefaultStreamReceiveWindow / 10
|
quicConfig.InitialStreamReceiveWindow = tuic.DefaultStreamReceiveWindow / 10
|
||||||
quicConfig.MaxStreamReceiveWindow = tuic.DefaultStreamReceiveWindow
|
quicConfig.MaxStreamReceiveWindow = tuic.DefaultStreamReceiveWindow
|
||||||
|
|
|
@ -76,7 +76,10 @@ func (ct *ClientTransport) QUICDial(proto string, server string, serverPorts str
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
qs, err := quic.DialContext(dialer.Context(), pktConn, serverUDPAddr, server, tlsConfig, quicConfig)
|
transport := quic.Transport{Conn: pktConn}
|
||||||
|
transport.SetCreatedConn(true) // auto close conn
|
||||||
|
transport.SetSingleUse(true) // auto close transport
|
||||||
|
qs, err := transport.Dial(dialer.Context(), serverUDPAddr, tlsConfig, quicConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
_ = pktConn.Close()
|
_ = pktConn.Close()
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -28,12 +28,11 @@ var (
|
||||||
TooManyOpenStreams = errors.New("tuic: too many open streams")
|
TooManyOpenStreams = errors.New("tuic: too many open streams")
|
||||||
)
|
)
|
||||||
|
|
||||||
type DialFunc func(ctx context.Context, dialer C.Dialer) (pc net.PacketConn, addr net.Addr, err error)
|
type DialFunc func(ctx context.Context, dialer C.Dialer) (transport *quic.Transport, addr net.Addr, err error)
|
||||||
|
|
||||||
type ClientOption struct {
|
type ClientOption struct {
|
||||||
TlsConfig *tls.Config
|
TlsConfig *tls.Config
|
||||||
QuicConfig *quic.Config
|
QuicConfig *quic.Config
|
||||||
Host string
|
|
||||||
Token [32]byte
|
Token [32]byte
|
||||||
UdpRelayMode string
|
UdpRelayMode string
|
||||||
CongestionController string
|
CongestionController string
|
||||||
|
@ -67,15 +66,15 @@ func (t *clientImpl) getQuicConn(ctx context.Context, dialer C.Dialer, dialFn Di
|
||||||
if t.quicConn != nil {
|
if t.quicConn != nil {
|
||||||
return t.quicConn, nil
|
return t.quicConn, nil
|
||||||
}
|
}
|
||||||
pc, addr, err := dialFn(ctx, dialer)
|
transport, addr, err := dialFn(ctx, dialer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var quicConn quic.Connection
|
var quicConn quic.Connection
|
||||||
if t.ReduceRtt {
|
if t.ReduceRtt {
|
||||||
quicConn, err = quic.DialEarlyContext(ctx, pc, addr, t.Host, t.TlsConfig, t.QuicConfig)
|
quicConn, err = transport.DialEarly(ctx, addr, t.TlsConfig, t.QuicConfig)
|
||||||
} else {
|
} else {
|
||||||
quicConn, err = quic.DialContext(ctx, pc, addr, t.Host, t.TlsConfig, t.QuicConfig)
|
quicConn, err = transport.Dial(ctx, addr, t.TlsConfig, t.QuicConfig)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -12,10 +12,12 @@ import (
|
||||||
N "github.com/Dreamacro/clash/common/net"
|
N "github.com/Dreamacro/clash/common/net"
|
||||||
C "github.com/Dreamacro/clash/constant"
|
C "github.com/Dreamacro/clash/constant"
|
||||||
"github.com/Dreamacro/clash/log"
|
"github.com/Dreamacro/clash/log"
|
||||||
|
|
||||||
|
"github.com/metacubex/quic-go"
|
||||||
)
|
)
|
||||||
|
|
||||||
type dialResult struct {
|
type dialResult struct {
|
||||||
pc net.PacketConn
|
transport *quic.Transport
|
||||||
addr net.Addr
|
addr net.Addr
|
||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
@ -33,9 +35,12 @@ type PoolClient struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *PoolClient) DialContextWithDialer(ctx context.Context, metadata *C.Metadata, dialer C.Dialer, dialFn DialFunc) (net.Conn, error) {
|
func (t *PoolClient) DialContextWithDialer(ctx context.Context, metadata *C.Metadata, dialer C.Dialer, dialFn DialFunc) (net.Conn, error) {
|
||||||
conn, err := t.getClient(false, dialer).DialContextWithDialer(ctx, metadata, dialer, dialFn)
|
newDialFn := func(ctx context.Context, dialer C.Dialer) (transport *quic.Transport, addr net.Addr, err error) {
|
||||||
|
return t.dial(ctx, dialer, dialFn)
|
||||||
|
}
|
||||||
|
conn, err := t.getClient(false, dialer).DialContextWithDialer(ctx, metadata, dialer, newDialFn)
|
||||||
if errors.Is(err, TooManyOpenStreams) {
|
if errors.Is(err, TooManyOpenStreams) {
|
||||||
conn, err = t.newClient(false, dialer).DialContextWithDialer(ctx, metadata, dialer, dialFn)
|
conn, err = t.newClient(false, dialer).DialContextWithDialer(ctx, metadata, dialer, newDialFn)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -44,9 +49,12 @@ func (t *PoolClient) DialContextWithDialer(ctx context.Context, metadata *C.Meta
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *PoolClient) ListenPacketWithDialer(ctx context.Context, metadata *C.Metadata, dialer C.Dialer, dialFn DialFunc) (net.PacketConn, error) {
|
func (t *PoolClient) ListenPacketWithDialer(ctx context.Context, metadata *C.Metadata, dialer C.Dialer, dialFn DialFunc) (net.PacketConn, error) {
|
||||||
pc, err := t.getClient(true, dialer).ListenPacketWithDialer(ctx, metadata, dialer, dialFn)
|
newDialFn := func(ctx context.Context, dialer C.Dialer) (transport *quic.Transport, addr net.Addr, err error) {
|
||||||
|
return t.dial(ctx, dialer, dialFn)
|
||||||
|
}
|
||||||
|
pc, err := t.getClient(true, dialer).ListenPacketWithDialer(ctx, metadata, dialer, newDialFn)
|
||||||
if errors.Is(err, TooManyOpenStreams) {
|
if errors.Is(err, TooManyOpenStreams) {
|
||||||
pc, err = t.newClient(true, dialer).ListenPacketWithDialer(ctx, metadata, dialer, dialFn)
|
pc, err = t.newClient(true, dialer).ListenPacketWithDialer(ctx, metadata, dialer, newDialFn)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -54,37 +62,38 @@ func (t *PoolClient) ListenPacketWithDialer(ctx context.Context, metadata *C.Met
|
||||||
return N.NewRefPacketConn(pc, t), nil
|
return N.NewRefPacketConn(pc, t), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *PoolClient) dial(ctx context.Context, dialer C.Dialer, dialFn DialFunc) (pc net.PacketConn, addr net.Addr, err error) {
|
func (t *PoolClient) dial(ctx context.Context, dialer C.Dialer, dialFn DialFunc) (transport *quic.Transport, addr net.Addr, err error) {
|
||||||
t.dialResultMutex.Lock()
|
t.dialResultMutex.Lock()
|
||||||
dr, ok := t.dialResultMap[dialer]
|
dr, ok := t.dialResultMap[dialer]
|
||||||
t.dialResultMutex.Unlock()
|
t.dialResultMutex.Unlock()
|
||||||
if ok {
|
if ok {
|
||||||
return dr.pc, dr.addr, dr.err
|
return dr.transport, dr.addr, dr.err
|
||||||
}
|
}
|
||||||
|
|
||||||
pc, addr, err = dialFn(ctx, dialer)
|
transport, addr, err = dialFn(ctx, dialer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := pc.(*net.UDPConn); ok { // only cache the system's UDPConn
|
if _, ok := transport.Conn.(*net.UDPConn); ok { // only cache the system's UDPConn
|
||||||
dr.pc, dr.addr, dr.err = pc, addr, err
|
transport.SetSingleUse(false) // don't close transport in each dial
|
||||||
|
dr.transport, dr.addr, dr.err = transport, addr, err
|
||||||
|
|
||||||
t.dialResultMutex.Lock()
|
t.dialResultMutex.Lock()
|
||||||
t.dialResultMap[dialer] = dr
|
t.dialResultMap[dialer] = dr
|
||||||
t.dialResultMutex.Unlock()
|
t.dialResultMutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
return pc, addr, err
|
return transport, addr, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *PoolClient) forceClose() {
|
func (t *PoolClient) forceClose() {
|
||||||
t.dialResultMutex.Lock()
|
t.dialResultMutex.Lock()
|
||||||
defer t.dialResultMutex.Unlock()
|
defer t.dialResultMutex.Unlock()
|
||||||
for key := range t.dialResultMap {
|
for key := range t.dialResultMap {
|
||||||
pc := t.dialResultMap[key].pc
|
transport := t.dialResultMap[key].transport
|
||||||
if pc != nil {
|
if transport != nil {
|
||||||
_ = pc.Close()
|
_ = transport.Close()
|
||||||
}
|
}
|
||||||
delete(t.dialResultMap, key)
|
delete(t.dialResultMap, key)
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,7 @@ type ServerOption struct {
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
*ServerOption
|
*ServerOption
|
||||||
listener quic.EarlyListener
|
listener *quic.EarlyListener
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServer(option *ServerOption, pc net.PacketConn) (*Server, error) {
|
func NewServer(option *ServerOption, pc net.PacketConn) (*Server, error) {
|
||||||
|
|
Loading…
Reference in a new issue