@@ -36,10 +36,10 @@ func (l *Listener) Close() error {
36
36
}
37
37
38
38
func New (addr string , tunnel C.Tunnel , additions ... inbound.Addition ) (* Listener , error ) {
39
- return NewWithAuthenticator (addr , tunnel , authStore .Authenticator , additions ... )
39
+ return NewWithAuthenticator (addr , tunnel , authStore .Default , additions ... )
40
40
}
41
41
42
- func NewWithAuthenticator (addr string , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) (* Listener , error ) {
42
+ func NewWithAuthenticator (addr string , tunnel C.Tunnel , store auth.AuthStore , additions ... inbound.Addition ) (* Listener , error ) {
43
43
isDefault := false
44
44
if len (additions ) == 0 {
45
45
isDefault = true
@@ -67,24 +67,24 @@ func NewWithAuthenticator(addr string, tunnel C.Tunnel, getAuth func() auth.Auth
67
67
}
68
68
continue
69
69
}
70
- getAuth := getAuth
71
- if isDefault { // only apply on default listener
70
+ store := store
71
+ if isDefault || store == authStore . Default { // only apply on default listener
72
72
if ! inbound .IsRemoteAddrDisAllowed (c .RemoteAddr ()) {
73
73
_ = c .Close ()
74
74
continue
75
75
}
76
76
if inbound .SkipAuthRemoteAddr (c .RemoteAddr ()) {
77
- getAuth = authStore .Nil
77
+ store = authStore .Nil
78
78
}
79
79
}
80
- go handleSocks (c , tunnel , getAuth , additions ... )
80
+ go handleSocks (c , tunnel , store , additions ... )
81
81
}
82
82
}()
83
83
84
84
return sl , nil
85
85
}
86
86
87
- func handleSocks (conn net.Conn , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) {
87
+ func handleSocks (conn net.Conn , tunnel C.Tunnel , store auth.AuthStore , additions ... inbound.Addition ) {
88
88
bufConn := N .NewBufferedConn (conn )
89
89
head , err := bufConn .Peek (1 )
90
90
if err != nil {
@@ -94,16 +94,16 @@ func handleSocks(conn net.Conn, tunnel C.Tunnel, getAuth func() auth.Authenticat
94
94
95
95
switch head [0 ] {
96
96
case socks4 .Version :
97
- HandleSocks4 (bufConn , tunnel , getAuth , additions ... )
97
+ HandleSocks4 (bufConn , tunnel , store , additions ... )
98
98
case socks5 .Version :
99
- HandleSocks5 (bufConn , tunnel , getAuth , additions ... )
99
+ HandleSocks5 (bufConn , tunnel , store , additions ... )
100
100
default :
101
101
conn .Close ()
102
102
}
103
103
}
104
104
105
- func HandleSocks4 (conn net.Conn , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) {
106
- authenticator := getAuth ()
105
+ func HandleSocks4 (conn net.Conn , tunnel C.Tunnel , store auth.AuthStore , additions ... inbound.Addition ) {
106
+ authenticator := store . Authenticator ()
107
107
addr , _ , user , err := socks4 .ServerHandshake (conn , authenticator )
108
108
if err != nil {
109
109
conn .Close ()
@@ -113,8 +113,8 @@ func HandleSocks4(conn net.Conn, tunnel C.Tunnel, getAuth func() auth.Authentica
113
113
tunnel .HandleTCPConn (inbound .NewSocket (socks5 .ParseAddr (addr ), conn , C .SOCKS4 , additions ... ))
114
114
}
115
115
116
- func HandleSocks5 (conn net.Conn , tunnel C.Tunnel , getAuth func () auth.Authenticator , additions ... inbound.Addition ) {
117
- authenticator := getAuth ()
116
+ func HandleSocks5 (conn net.Conn , tunnel C.Tunnel , store auth.AuthStore , additions ... inbound.Addition ) {
117
+ authenticator := store . Authenticator ()
118
118
target , command , user , err := socks5 .ServerHandshake (conn , authenticator )
119
119
if err != nil {
120
120
conn .Close ()
0 commit comments