6
6
7
7
"github.com/metacubex/mihomo/adapter/inbound"
8
8
N "github.com/metacubex/mihomo/common/net"
9
+ "github.com/metacubex/mihomo/component/auth"
9
10
C "github.com/metacubex/mihomo/constant"
10
11
authStore "github.com/metacubex/mihomo/listener/auth"
11
12
"github.com/metacubex/mihomo/transport/socks4"
@@ -35,6 +36,10 @@ func (l *Listener) Close() error {
35
36
}
36
37
37
38
func New (addr string , tunnel C.Tunnel , additions ... inbound.Addition ) (* Listener , error ) {
39
+ return NewWithAuthenticator (addr , tunnel , authStore .Authenticator , additions ... )
40
+ }
41
+
42
+ func NewWithAuthenticator (addr string , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) (* Listener , error ) {
38
43
isDefault := false
39
44
if len (additions ) == 0 {
40
45
isDefault = true
@@ -61,20 +66,24 @@ func New(addr string, tunnel C.Tunnel, additions ...inbound.Addition) (*Listener
61
66
}
62
67
continue
63
68
}
69
+ getAuth := getAuth
64
70
if isDefault { // only apply on default listener
65
71
if ! inbound .IsRemoteAddrDisAllowed (c .RemoteAddr ()) {
66
72
_ = c .Close ()
67
73
continue
68
74
}
75
+ if inbound .SkipAuthRemoteAddr (c .RemoteAddr ()) {
76
+ getAuth = authStore .Nil
77
+ }
69
78
}
70
- go handleSocks (c , tunnel , additions ... )
79
+ go handleSocks (c , tunnel , getAuth , additions ... )
71
80
}
72
81
}()
73
82
74
83
return sl , nil
75
84
}
76
85
77
- func handleSocks (conn net.Conn , tunnel C.Tunnel , additions ... inbound.Addition ) {
86
+ func handleSocks (conn net.Conn , tunnel C.Tunnel , getAuth func () auth. Authenticator , additions ... inbound.Addition ) {
78
87
N .TCPKeepAlive (conn )
79
88
bufConn := N .NewBufferedConn (conn )
80
89
head , err := bufConn .Peek (1 )
@@ -85,19 +94,16 @@ func handleSocks(conn net.Conn, tunnel C.Tunnel, additions ...inbound.Addition)
85
94
86
95
switch head [0 ] {
87
96
case socks4 .Version :
88
- HandleSocks4 (bufConn , tunnel , additions ... )
97
+ HandleSocks4 (bufConn , tunnel , getAuth , additions ... )
89
98
case socks5 .Version :
90
- HandleSocks5 (bufConn , tunnel , additions ... )
99
+ HandleSocks5 (bufConn , tunnel , getAuth , additions ... )
91
100
default :
92
101
conn .Close ()
93
102
}
94
103
}
95
104
96
- func HandleSocks4 (conn net.Conn , tunnel C.Tunnel , additions ... inbound.Addition ) {
97
- authenticator := authStore .Authenticator ()
98
- if inbound .SkipAuthRemoteAddr (conn .RemoteAddr ()) {
99
- authenticator = nil
100
- }
105
+ func HandleSocks4 (conn net.Conn , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) {
106
+ authenticator := getAuth ()
101
107
addr , _ , user , err := socks4 .ServerHandshake (conn , authenticator )
102
108
if err != nil {
103
109
conn .Close ()
@@ -107,11 +113,8 @@ func HandleSocks4(conn net.Conn, tunnel C.Tunnel, additions ...inbound.Addition)
107
113
tunnel .HandleTCPConn (inbound .NewSocket (socks5 .ParseAddr (addr ), conn , C .SOCKS4 , additions ... ))
108
114
}
109
115
110
- func HandleSocks5 (conn net.Conn , tunnel C.Tunnel , additions ... inbound.Addition ) {
111
- authenticator := authStore .Authenticator ()
112
- if inbound .SkipAuthRemoteAddr (conn .RemoteAddr ()) {
113
- authenticator = nil
114
- }
116
+ func HandleSocks5 (conn net.Conn , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) {
117
+ authenticator := getAuth ()
115
118
target , command , user , err := socks5 .ServerHandshake (conn , authenticator )
116
119
if err != nil {
117
120
conn .Close ()
0 commit comments