-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathproxy.go
More file actions
515 lines (429 loc) · 11.3 KB
/
proxy.go
File metadata and controls
515 lines (429 loc) · 11.3 KB
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
// Copyright (c) 2026 Blacknon. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
package sshlib
import (
"bufio"
"context"
"errors"
"fmt"
"log"
"net"
"net/http"
"net/url"
"os/exec"
"golang.org/x/crypto/ssh"
"golang.org/x/net/proxy"
)
type ProxyDialer interface {
Dial(network, addr string) (net.Conn, error)
DialContext(ctx context.Context, network, addr string) (net.Conn, error)
}
type ProxyRoute struct {
Type string
Addr string
Port string
User string
Password string
Command string
Auth *ControlPersistAuth
}
type ContextDialer struct {
Dialer proxy.Dialer
}
func (c *ContextDialer) GetDialer() proxy.Dialer {
return c.Dialer
}
func (c *ContextDialer) Dial(network, addr string) (net.Conn, error) {
return c.Dialer.Dial(network, addr)
}
func (c *ContextDialer) DialContext(ctx context.Context, network, addr string) (net.Conn, error) {
// Simply call the DialContext method if supported
if dialerCtx, ok := c.Dialer.(interface {
DialContext(context.Context, string, string) (net.Conn, error)
}); ok {
return dialerCtx.DialContext(ctx, network, addr)
}
// Fallback if DialContext is not supported
connChan := make(chan net.Conn, 1)
errChan := make(chan error, 1)
go func() {
conn, err := c.Dialer.Dial(network, addr)
if err != nil {
errChan <- err
return
}
connChan <- conn
}()
select {
case conn := <-connChan:
return conn, nil
case err := <-errChan:
return nil, err
case <-ctx.Done():
return nil, ctx.Err()
}
}
type Proxy struct {
// Type set proxy type.
// Can specify `http`, `https`, `socks`, `socks5`, `command`.
//
// It is read at the time of specification depending on the type.
Type string
// Addr set proxy address.
//
Addr string
// Port set proxy port.
//
Port string
// Port set proxy user.
//
User string
// Port set proxy user.
//
Password string
// Command only use Type `command`.
//
Command string
// Forwarder set Dialer.
Forwarder ProxyDialer
}
type controlPersistProxyRoute struct {
Type string
Addr string
Port string
User string
Password string
Command string
Auth []controlPersistAuthMethodDefinition
}
// CreateProxyDialer retrun ProxyDialer.
func (p *Proxy) CreateProxyDialer() (proxyContextDialer ProxyDialer, err error) {
var proxyDialer proxy.Dialer
switch p.Type {
case "http", "https":
proxyDialer, err = p.CreateHttpProxyDialer()
case "socks", "socks5":
proxyDialer, err = p.CreateSocks5ProxyDialer()
case "command":
proxyDialer, err = p.CreateProxyCommandProxyDialer()
}
proxyContextDialer = &ContextDialer{Dialer: proxyDialer}
return
}
// CreateHttpProxy return ProxyDialer as http proxy.
func (p *Proxy) CreateHttpProxyDialer() (proxyDialer proxy.Dialer, err error) {
// Regist dialer
proxy.RegisterDialerType("http", newHttpProxy)
proxy.RegisterDialerType("https", newHttpProxy)
proxyURL := p.Type + "://" + p.Addr
if p.User != "" && p.Password != "" {
proxyURL = p.Type + "://" + p.User + ":" + p.Password + "@" + p.Addr
}
if p.Port != "" {
proxyURL = proxyURL + ":" + string(p.Port)
}
proxyURI, _ := url.Parse(proxyURL)
var forwarder proxy.Dialer
forwarder = proxy.Direct
if p.Forwarder != nil {
forwarder = p.Forwarder
}
proxyDialer, err = proxy.FromURL(proxyURI, forwarder)
return
}
// CreateSocks5Proxy return ProxyDialer as Socks5 proxy.
func (p *Proxy) CreateSocks5ProxyDialer() (proxyDialer proxy.Dialer, err error) {
var proxyAuth *proxy.Auth
if p.User != "" && p.Password != "" {
proxyAuth = &proxy.Auth{}
proxyAuth.User = p.User
proxyAuth.Password = p.Password
}
var forwarder ProxyDialer
forwarder = proxy.Direct
if p.Forwarder != nil {
forwarder = p.Forwarder
}
return proxy.SOCKS5("tcp", net.JoinHostPort(p.Addr, p.Port), proxyAuth, forwarder)
}
// CreateProxyCommandProxyDialer as ProxyCommand.
// When passing ProxyCommand, replace %h, %p and %r etc...
func (p *Proxy) CreateProxyCommandProxyDialer() (proxyDialer proxy.Dialer, err error) {
np := new(NetPipe)
np.Command = p.Command
proxyDialer = np
return
}
type NetPipe struct {
Command string
ctx context.Context
Cmd *exec.Cmd
}
func (n *NetPipe) Dial(network, addr string) (con net.Conn, err error) {
network = ""
addr = ""
// Create net.Pipe(), and set proxyCommand
con, srv := net.Pipe()
n.Cmd = exec.Command("sh", "-c", n.Command)
// setup FD
n.Cmd.Stdin = srv
n.Cmd.Stdout = srv
n.Cmd.Stderr = log.Writer()
// Start the command
err = n.Cmd.Start()
// Close the write end of the pipe
go func() {
n.Cmd.Wait()
srv.Close()
}()
return
}
func (n *NetPipe) DialContext(ctx context.Context, network, addr string) (con net.Conn, err error) {
connChan := make(chan net.Conn, 1)
errChan := make(chan error, 1)
go func() {
conn, err := n.Dial(network, addr)
if err != nil {
errChan <- err
return
}
connChan <- conn
}()
select {
case conn := <-connChan:
return conn, nil
case err := <-errChan:
return nil, err
case <-ctx.Done():
if n.Cmd != nil && n.Cmd.Process != nil {
_ = n.Cmd.Process.Kill()
}
return nil, ctx.Err()
}
}
func buildProxyRouteDialer(routes []ProxyRoute, prompt PromptFunc) (proxy.ContextDialer, []*Connect, error) {
var current ProxyDialer = proxy.Direct
var proxyConnects []*Connect
for i, route := range routes {
switch route.Type {
case "http", "https", "socks", "socks5", "command":
proxyDialer, err := (&Proxy{
Type: route.Type,
Addr: route.Addr,
Port: route.Port,
User: route.User,
Password: route.Password,
Command: route.Command,
Forwarder: current,
}).CreateProxyDialer()
if err != nil {
closeProxyConnectList(proxyConnects)
return nil, nil, err
}
if _, ok := proxyDialer.(proxy.ContextDialer); !ok {
closeProxyConnectList(proxyConnects)
return nil, nil, fmt.Errorf("sshlib: proxy route[%d] does not implement proxy.ContextDialer", i)
}
current = proxyDialer
case "ssh":
authMethods, err := route.authMethods(prompt)
if err != nil {
closeProxyConnectList(proxyConnects)
return nil, nil, err
}
con := &Connect{
ProxyDialer: current,
}
if err := con.CreateClient(route.Addr, route.portOrDefault(), route.User, authMethods); err != nil {
closeProxyConnectList(proxyConnects)
return nil, nil, err
}
current = con.Client
proxyConnects = append(proxyConnects, con)
default:
closeProxyConnectList(proxyConnects)
return nil, nil, fmt.Errorf("sshlib: unsupported proxy route type %q at index %d", route.Type, i)
}
}
contextDialer, ok := current.(proxy.ContextDialer)
if !ok {
closeProxyConnectList(proxyConnects)
return nil, nil, errors.New("sshlib: final proxy route dialer does not implement proxy.ContextDialer")
}
return contextDialer, proxyConnects, nil
}
func buildControlPersistProxyRouteDialer(routes []controlPersistProxyRoute, prompt PromptFunc) (proxy.ContextDialer, []*Connect, error) {
var current ProxyDialer = proxy.Direct
var proxyConnects []*Connect
for i, route := range routes {
switch route.Type {
case "http", "https", "socks", "socks5", "command":
proxyDialer, err := (&Proxy{
Type: route.Type,
Addr: route.Addr,
Port: route.Port,
User: route.User,
Password: route.Password,
Command: route.Command,
Forwarder: current,
}).CreateProxyDialer()
if err != nil {
closeProxyConnectList(proxyConnects)
return nil, nil, err
}
if _, ok := proxyDialer.(proxy.ContextDialer); !ok {
closeProxyConnectList(proxyConnects)
return nil, nil, fmt.Errorf("sshlib: control persist proxy route[%d] does not implement proxy.ContextDialer", i)
}
current = proxyDialer
case "ssh":
authMethods, err := createControlPersistAuthMethodsWithPrompt(route.Auth, prompt)
if err != nil {
closeProxyConnectList(proxyConnects)
return nil, nil, err
}
con := &Connect{
ProxyDialer: current,
}
port := route.Port
if port == "" {
port = "22"
}
if err := con.CreateClient(route.Addr, port, route.User, authMethods); err != nil {
closeProxyConnectList(proxyConnects)
return nil, nil, err
}
current = con.Client
proxyConnects = append(proxyConnects, con)
default:
closeProxyConnectList(proxyConnects)
return nil, nil, fmt.Errorf("sshlib: unsupported control persist proxy route type %q at index %d", route.Type, i)
}
}
contextDialer, ok := current.(proxy.ContextDialer)
if !ok {
closeProxyConnectList(proxyConnects)
return nil, nil, errors.New("sshlib: final control persist proxy route dialer does not implement proxy.ContextDialer")
}
return contextDialer, proxyConnects, nil
}
func serializeControlPersistProxyRoutes(routes []ProxyRoute) ([]controlPersistProxyRoute, error) {
if len(routes) == 0 {
return nil, nil
}
definitions := make([]controlPersistProxyRoute, 0, len(routes))
for i, route := range routes {
def := controlPersistProxyRoute{
Type: route.Type,
Addr: route.Addr,
Port: route.Port,
User: route.User,
Password: route.Password,
Command: route.Command,
}
if route.Type == "ssh" {
if route.Auth == nil {
return nil, fmt.Errorf("sshlib: proxy route[%d] type ssh requires Auth", i)
}
auth, err := route.Auth.resolved()
if err != nil {
return nil, err
}
def.Auth = auth
}
definitions = append(definitions, def)
}
return definitions, nil
}
func (r ProxyRoute) authMethods(prompt PromptFunc) ([]ssh.AuthMethod, error) {
if r.Type != "ssh" {
return nil, nil
}
if r.Auth == nil {
return nil, errors.New("sshlib: proxy route type ssh requires Auth")
}
resolved, err := r.Auth.resolved()
if err != nil {
return nil, err
}
return createControlPersistAuthMethodsWithPrompt(resolved, prompt)
}
func (r ProxyRoute) portOrDefault() string {
if r.Port != "" {
return r.Port
}
if r.Type == "ssh" {
return "22"
}
return r.Port
}
func closeProxyConnectList(connects []*Connect) error {
var firstErr error
for i := len(connects) - 1; i >= 0; i-- {
if err := connects[i].Close(); err != nil && firstErr == nil {
firstErr = err
}
}
return firstErr
}
type httpProxy struct {
host string
haveAuth bool
username string
password string
forward proxy.Dialer
}
// Dial return net.Conn via http proxy.
func (s *httpProxy) Dial(network, addr string) (net.Conn, error) {
c, err := s.forward.Dial("tcp", s.host)
if err != nil {
return nil, err
}
reqURL, err := url.Parse("http://" + addr)
if err != nil {
c.Close()
return nil, err
}
reqURL.Scheme = ""
req, err := http.NewRequest("CONNECT", reqURL.String(), nil)
if err != nil {
c.Close()
return nil, err
}
req.Close = false
if s.haveAuth {
req.SetBasicAuth(s.username, s.password)
}
req.Header.Set("User-Agent", "Poweredby Golang")
err = req.Write(c)
if err != nil {
c.Close()
return nil, err
}
resp, err := http.ReadResponse(bufio.NewReader(c), req)
if err != nil {
resp.Body.Close()
c.Close()
return nil, err
}
resp.Body.Close()
if resp.StatusCode != 200 {
c.Close()
err = fmt.Errorf("Connect server using proxy error, StatusCode [%d]", resp.StatusCode)
return nil, err
}
return c, nil
}
// newHttpProxy
func newHttpProxy(uri *url.URL, forward proxy.Dialer) (proxy.Dialer, error) {
s := new(httpProxy)
s.host = uri.Host
s.forward = forward
if uri.User != nil {
s.haveAuth = true
s.username = uri.User.Username()
s.password, _ = uri.User.Password()
}
return s, nil
}