mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-03 10:34:00 +00:00
138 lines
3.9 KiB
Go
138 lines
3.9 KiB
Go
package outbound
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net"
|
|
"runtime"
|
|
|
|
CN "github.com/Dreamacro/clash/common/net"
|
|
"github.com/Dreamacro/clash/component/dialer"
|
|
"github.com/Dreamacro/clash/component/proxydialer"
|
|
"github.com/Dreamacro/clash/component/resolver"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
mux "github.com/sagernet/sing-mux"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
type SingMux struct {
|
|
C.ProxyAdapter
|
|
base ProxyBase
|
|
client *mux.Client
|
|
dialer *muxSingDialer
|
|
onlyTcp bool
|
|
}
|
|
|
|
type SingMuxOption struct {
|
|
Enabled bool `proxy:"enabled,omitempty"`
|
|
Protocol string `proxy:"protocol,omitempty"`
|
|
MaxConnections int `proxy:"max-connections,omitempty"`
|
|
MinStreams int `proxy:"min-streams,omitempty"`
|
|
MaxStreams int `proxy:"max-streams,omitempty"`
|
|
Padding bool `proxy:"padding,omitempty"`
|
|
Statistic bool `proxy:"statistic,omitempty"`
|
|
OnlyTcp bool `proxy:"only-tcp,omitempty"`
|
|
}
|
|
|
|
type ProxyBase interface {
|
|
DialOptions(opts ...dialer.Option) []dialer.Option
|
|
}
|
|
|
|
type muxSingDialer struct {
|
|
dialer dialer.Dialer
|
|
proxy C.ProxyAdapter
|
|
statistic bool
|
|
}
|
|
|
|
var _ N.Dialer = (*muxSingDialer)(nil)
|
|
|
|
func (d *muxSingDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
var cDialer C.Dialer = proxydialer.New(d.proxy, d.dialer, d.statistic)
|
|
return cDialer.DialContext(ctx, network, destination.String())
|
|
}
|
|
|
|
func (d *muxSingDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
|
var cDialer C.Dialer = proxydialer.New(d.proxy, d.dialer, d.statistic)
|
|
return cDialer.ListenPacket(ctx, "udp", "", destination.AddrPort())
|
|
}
|
|
|
|
func (s *SingMux) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (_ C.Conn, err error) {
|
|
options := s.base.DialOptions(opts...)
|
|
s.dialer.dialer = dialer.NewDialer(options...)
|
|
c, err := s.client.DialContext(ctx, "tcp", M.ParseSocksaddr(metadata.RemoteAddress()))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return NewConn(CN.NewRefConn(c, s), s.ProxyAdapter), err
|
|
}
|
|
|
|
func (s *SingMux) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (_ C.PacketConn, err error) {
|
|
if s.onlyTcp {
|
|
return s.ProxyAdapter.ListenPacketContext(ctx, metadata, opts...)
|
|
}
|
|
options := s.base.DialOptions(opts...)
|
|
s.dialer.dialer = dialer.NewDialer(options...)
|
|
|
|
// sing-mux use stream-oriented udp with a special address, so we need a net.UDPAddr
|
|
if !metadata.Resolved() {
|
|
ip, err := resolver.ResolveIP(ctx, metadata.Host)
|
|
if err != nil {
|
|
return nil, errors.New("can't resolve ip")
|
|
}
|
|
metadata.DstIP = ip
|
|
}
|
|
|
|
pc, err := s.client.ListenPacket(ctx, M.SocksaddrFromNet(metadata.UDPAddr()))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if pc == nil {
|
|
return nil, E.New("packetConn is nil")
|
|
}
|
|
return newPacketConn(CN.NewRefPacketConn(CN.NewThreadSafePacketConn(pc), s), s.ProxyAdapter), nil
|
|
}
|
|
|
|
func (s *SingMux) SupportUDP() bool {
|
|
if s.onlyTcp {
|
|
return s.ProxyAdapter.SupportUDP()
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (s *SingMux) SupportUOT() bool {
|
|
if s.onlyTcp {
|
|
return s.ProxyAdapter.SupportUOT()
|
|
}
|
|
return true
|
|
}
|
|
|
|
func closeSingMux(s *SingMux) {
|
|
_ = s.client.Close()
|
|
}
|
|
|
|
func NewSingMux(option SingMuxOption, proxy C.ProxyAdapter, base ProxyBase) (C.ProxyAdapter, error) {
|
|
singDialer := &muxSingDialer{dialer: dialer.NewDialer(), proxy: proxy, statistic: option.Statistic}
|
|
client, err := mux.NewClient(mux.Options{
|
|
Dialer: singDialer,
|
|
Protocol: option.Protocol,
|
|
MaxConnections: option.MaxConnections,
|
|
MinStreams: option.MinStreams,
|
|
MaxStreams: option.MaxStreams,
|
|
Padding: option.Padding,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
outbound := &SingMux{
|
|
ProxyAdapter: proxy,
|
|
base: base,
|
|
client: client,
|
|
dialer: singDialer,
|
|
onlyTcp: option.OnlyTcp,
|
|
}
|
|
runtime.SetFinalizer(outbound, closeSingMux)
|
|
return outbound, nil
|
|
}
|