-
Notifications
You must be signed in to change notification settings - Fork 1
/
auth.go
205 lines (172 loc) · 5.74 KB
/
auth.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package socks5
import (
"fmt"
"io"
)
/*********************************
Clients Negotiation:
+----+----------+----------+
|VER | NMETHODS | METHODS |
+----+----------+----------+
| 1 | 1 | 1 to 255 |
+----+----------+----------+
**********************************/
// AuthMethods
const (
// AuthMethodNoAuth X'00' NO AUTHENTICATION REQUIRED
AuthMethodNoAuth = uint8(0)
// X'01' GSSAPI
// AuthMethodUserPass X'02' USERNAME/PASSWORD
AuthMethodUserPass = uint8(2)
// X'03' to X'7F' IANA ASSIGNED
// X'80' to X'FE' RESERVED FOR PRIVATE METHODS
// AuthMethodNoAcceptable X'FF' NO ACCEPTABLE METHODS
AuthMethodNoAcceptable = uint8(255)
)
/************************************************
rfc1929 client user/pass negotiation req
+----+------+----------+------+----------+
|VER | ULEN | UNAME | PLEN | PASSWD |
+----+------+----------+------+----------+
| 1 | 1 | 1 to 255 | 1 | 1 to 255 |
+----+------+----------+------+----------+
************************************************/
/************************************************
rfc1929 server user/pass negotiation resp
+----+--------+
|VER | STATUS |
+----+--------+
| 1 | 1 |
+----+--------+
************************************************/
const (
// AuthUserPassVersion the VER field contains the current version
// of the subnegotiation, which is X'01'
AuthUserPassVersion = uint8(1)
// AuthUserPassStatusSuccess a STATUS field of X'00' indicates success
AuthUserPassStatusSuccess = uint8(0)
// AuthUserPassStatusFailure if the server returns a `failure'
// (STATUS value other than X'00') status, it MUST close the connection.
AuthUserPassStatusFailure = uint8(1)
)
var (
// ErrUserAuthFailed failed to authenticate
ErrUserAuthFailed = fmt.Errorf("user authentication failed")
// ErrNoSupportedAuth authenticate method not supported
ErrNoSupportedAuth = fmt.Errorf("no supported authentication mechanism")
)
// AuthContext A Request encapsulates authentication state provided
// during negotiation
type AuthContext struct {
// Provided auth method
Method uint8
// Payload provided during negotiation.
// Keys depend on the used auth method.
// For UserPassAuth contains Username
Payload map[string]string
}
// Authenticator auth
type Authenticator interface {
Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error)
GetCode() uint8
}
// NoAuthAuthenticator is used to handle the "No Authentication" mode
type NoAuthAuthenticator struct{}
// GetCode implementation of Authenticator
func (a NoAuthAuthenticator) GetCode() uint8 {
return AuthMethodNoAuth
}
// Authenticate implementation of Authenticator
func (a NoAuthAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error) {
_, err := writer.Write([]byte{socks5Version, AuthMethodNoAuth})
return &AuthContext{AuthMethodNoAuth, nil}, err
}
// UserPassAuthenticator is used to handle username/password based
// authentication
type UserPassAuthenticator struct {
Credentials CredentialStore
}
// GetCode implementation of Authenticator
func (a UserPassAuthenticator) GetCode() uint8 {
return AuthMethodUserPass
}
// Authenticate implementation of Authenticator
func (a UserPassAuthenticator) Authenticate(reader io.Reader, writer io.Writer) (*AuthContext, error) {
// Tell the client to use user/pass auth
if _, err := writer.Write([]byte{socks5Version, AuthMethodUserPass}); err != nil {
return nil, err
}
// Get the version and username length
header := []byte{0, 0}
if _, err := io.ReadAtLeast(reader, header, 2); err != nil {
return nil, err
}
// Ensure we are compatible
if header[0] != AuthUserPassVersion {
return nil, fmt.Errorf("unsupported auth version: %v", header[0])
}
// Get the user name
userLen := int(header[1])
user := make([]byte, userLen)
if _, err := io.ReadAtLeast(reader, user, userLen); err != nil {
return nil, err
}
// Get the password length
if _, err := reader.Read(header[:1]); err != nil {
return nil, err
}
// Get the password
passLen := int(header[0])
pass := make([]byte, passLen)
if _, err := io.ReadAtLeast(reader, pass, passLen); err != nil {
return nil, err
}
// Verify the password
if a.Credentials.Valid(string(user), string(pass)) {
if _, err := writer.Write([]byte{AuthUserPassVersion, AuthUserPassStatusSuccess}); err != nil {
return nil, err
}
} else {
if _, err := writer.Write([]byte{AuthUserPassVersion, AuthUserPassStatusFailure}); err != nil {
return nil, err
}
return nil, ErrUserAuthFailed
}
// Done
return &AuthContext{AuthMethodUserPass, map[string]string{"Username": string(user)}}, nil
}
// authenticate is used to handle connection authentication
func (s *Server) authenticate(conn io.Writer, bufConn io.Reader) (*AuthContext, error) {
// Get the methods
methods, err := readMethods(bufConn)
if err != nil {
return nil, fmt.Errorf("failed to get auth methods: %v", err)
}
// Select a usable method
for _, method := range methods {
cator, found := s.authMethods[method]
if found {
return cator.Authenticate(bufConn, conn)
}
}
// No usable method found
return nil, noAcceptableAuth(conn)
}
// noAcceptableAuth is used to handle when we have no eligible
// authentication mechanism
func noAcceptableAuth(conn io.Writer) error {
conn.Write([]byte{socks5Version, AuthMethodNoAcceptable})
return ErrNoSupportedAuth
}
// readMethods is used to read the number of methods
// and proceeding auth methods
func readMethods(r io.Reader) ([]byte, error) {
header := []byte{0}
if _, err := r.Read(header); err != nil {
return nil, err
}
numMethods := int(header[0])
methods := make([]byte, numMethods)
_, err := io.ReadAtLeast(r, methods, numMethods)
return methods, err
}