Skip to content

Commit d4478db

Browse files
committed
chore: reduce the performance overhead of not enabling LoopBackDetector
1 parent 69454b0 commit d4478db

File tree

2 files changed

+30
-14
lines changed

2 files changed

+30
-14
lines changed

adapter/outbound/direct.go

+4-14
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,12 @@ package outbound
33
import (
44
"context"
55
"errors"
6-
"os"
7-
"strconv"
8-
96
"github.com/metacubex/mihomo/component/dialer"
107
"github.com/metacubex/mihomo/component/loopback"
118
"github.com/metacubex/mihomo/component/resolver"
129
C "github.com/metacubex/mihomo/constant"
13-
"github.com/metacubex/mihomo/constant/features"
1410
)
1511

16-
var DisableLoopBackDetector, _ = strconv.ParseBool(os.Getenv("DISABLE_LOOPBACK_DETECTOR"))
17-
1812
type Direct struct {
1913
*Base
2014
loopBack *loopback.Detector
@@ -27,10 +21,8 @@ type DirectOption struct {
2721

2822
// DialContext implements C.ProxyAdapter
2923
func (d *Direct) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.Conn, error) {
30-
if !features.CMFA && !DisableLoopBackDetector {
31-
if err := d.loopBack.CheckConn(metadata); err != nil {
32-
return nil, err
33-
}
24+
if err := d.loopBack.CheckConn(metadata); err != nil {
25+
return nil, err
3426
}
3527
opts = append(opts, dialer.WithResolver(resolver.DirectHostResolver))
3628
c, err := dialer.DialContext(ctx, "tcp", metadata.RemoteAddress(), d.Base.DialOptions(opts...)...)
@@ -42,10 +34,8 @@ func (d *Direct) DialContext(ctx context.Context, metadata *C.Metadata, opts ...
4234

4335
// ListenPacketContext implements C.ProxyAdapter
4436
func (d *Direct) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.PacketConn, error) {
45-
if !features.CMFA && !DisableLoopBackDetector {
46-
if err := d.loopBack.CheckPacketConn(metadata); err != nil {
47-
return nil, err
48-
}
37+
if err := d.loopBack.CheckPacketConn(metadata); err != nil {
38+
return nil, err
4939
}
5040
// net.UDPConn.WriteTo only working with *net.UDPAddr, so we need a net.UDPAddr
5141
if !metadata.Resolved() {

component/loopback/detector.go

+26
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,25 @@ import (
44
"errors"
55
"fmt"
66
"net/netip"
7+
"os"
8+
"strconv"
79

810
"github.com/metacubex/mihomo/common/callback"
911
"github.com/metacubex/mihomo/component/iface"
1012
C "github.com/metacubex/mihomo/constant"
13+
"github.com/metacubex/mihomo/constant/features"
1114

1215
"github.com/puzpuzpuz/xsync/v3"
1316
)
1417

18+
var disableLoopBackDetector, _ = strconv.ParseBool(os.Getenv("DISABLE_LOOPBACK_DETECTOR"))
19+
20+
func init() {
21+
if features.CMFA {
22+
disableLoopBackDetector = true
23+
}
24+
}
25+
1526
var ErrReject = errors.New("reject loopback connection")
1627

1728
type Detector struct {
@@ -20,13 +31,19 @@ type Detector struct {
2031
}
2132

2233
func NewDetector() *Detector {
34+
if disableLoopBackDetector {
35+
return nil
36+
}
2337
return &Detector{
2438
connMap: xsync.NewMapOf[netip.AddrPort, struct{}](),
2539
packetConnMap: xsync.NewMapOf[uint16, struct{}](),
2640
}
2741
}
2842

2943
func (l *Detector) NewConn(conn C.Conn) C.Conn {
44+
if l == nil || l.connMap == nil {
45+
return conn
46+
}
3047
metadata := C.Metadata{}
3148
if metadata.SetRemoteAddr(conn.LocalAddr()) != nil {
3249
return conn
@@ -42,6 +59,9 @@ func (l *Detector) NewConn(conn C.Conn) C.Conn {
4259
}
4360

4461
func (l *Detector) NewPacketConn(conn C.PacketConn) C.PacketConn {
62+
if l == nil || l.packetConnMap == nil {
63+
return conn
64+
}
4565
metadata := C.Metadata{}
4666
if metadata.SetRemoteAddr(conn.LocalAddr()) != nil {
4767
return conn
@@ -58,6 +78,9 @@ func (l *Detector) NewPacketConn(conn C.PacketConn) C.PacketConn {
5878
}
5979

6080
func (l *Detector) CheckConn(metadata *C.Metadata) error {
81+
if l == nil || l.connMap == nil {
82+
return nil
83+
}
6184
connAddr := metadata.SourceAddrPort()
6285
if !connAddr.IsValid() {
6386
return nil
@@ -69,6 +92,9 @@ func (l *Detector) CheckConn(metadata *C.Metadata) error {
6992
}
7093

7194
func (l *Detector) CheckPacketConn(metadata *C.Metadata) error {
95+
if l == nil || l.packetConnMap == nil {
96+
return nil
97+
}
7298
connAddr := metadata.SourceAddrPort()
7399
if !connAddr.IsValid() {
74100
return nil

0 commit comments

Comments
 (0)