-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclient.go
274 lines (233 loc) · 5.59 KB
/
client.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
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
package sshproxy
import (
"context"
"net"
"net/url"
"os"
"strconv"
"strings"
"sync/atomic"
"time"
"golang.org/x/crypto/ssh"
)
// NewDialer returns a new Dialer that dials through the provided
// proxy server's network and address.
func NewDialer(addr string) (*Dialer, error) {
config, err := parseClientConfig(addr)
if err != nil {
return nil, err
}
return NewDialerWithConfig(config.host, config.clientConfig)
}
func NewDialerWithConfig(host string, config *ssh.ClientConfig) (*Dialer, error) {
return &Dialer{
host: host,
config: config,
clients: make(chan *ssh.Client, 5),
}, nil
}
type clientConfig struct {
host string
clientConfig *ssh.ClientConfig
}
func parseClientConfig(addr string) (*clientConfig, error) {
ur, err := url.Parse(addr)
if err != nil {
return nil, err
}
user := ""
pwd := ""
isPwd := false
if ur.User != nil {
user = ur.User.Username()
pwd, isPwd = ur.User.Password()
}
config := &ssh.ClientConfig{
User: user,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
}
if isPwd {
config.Auth = append(config.Auth, ssh.Password(pwd))
}
identityDatas, err := getQuery(ur.Query()["identity_data"], ur.Query()["identity_file"])
if err != nil {
return nil, err
}
for _, data := range identityDatas {
signer, err := ssh.ParsePrivateKey(data)
if err != nil {
return nil, err
}
config.Auth = append(config.Auth, ssh.PublicKeys(signer))
}
var timeout = 30 * time.Second
timeoutStr := ur.Query().Get("timeout")
if timeoutStr != "" {
timeout, err = time.ParseDuration(timeoutStr)
if err != nil {
return nil, err
}
}
config.Timeout = timeout
host := ur.Hostname()
port := ur.Port()
if port == "" {
port = "22"
}
return &clientConfig{
clientConfig: config,
host: net.JoinHostPort(host, port),
}, nil
}
type Dialer struct {
localAddr net.Addr
// ProxyDial specifies the optional dial function for
// establishing the transport connection.
ProxyDial func(context.Context, string, string) (net.Conn, error)
host string
config *ssh.ClientConfig
conns int32
clients chan *ssh.Client
}
func (d *Dialer) Close() error {
// In practice, closing the connection doesn't actually release the ssh.Conn but causes a memory leak
return nil
}
func (d *Dialer) proxyDial(ctx context.Context, network, address string) (net.Conn, error) {
proxyDial := d.ProxyDial
if proxyDial == nil {
var dialer net.Dialer
proxyDial = dialer.DialContext
}
return proxyDial(ctx, network, address)
}
func (d *Dialer) SSHClient(ctx context.Context) (*ssh.Client, error) {
cli, err := d.getClient(ctx)
if err != nil {
return nil, err
}
d.putClient(cli)
return cli, nil
}
func (d *Dialer) getClient(ctx context.Context) (*ssh.Client, error) {
if atomic.LoadInt32(&d.conns) >= int32(cap(d.clients)) {
select {
case <-ctx.Done():
return nil, ctx.Err()
case cli := <-d.clients:
return cli, nil
}
}
atomic.AddInt32(&d.conns, 1)
cli, err := d.sshClient(ctx)
if err != nil {
atomic.AddInt32(&d.conns, -1)
return nil, err
}
return cli, nil
}
func (d *Dialer) putClient(cli *ssh.Client) {
d.clients <- cli
}
func (d *Dialer) sshClient(ctx context.Context) (*ssh.Client, error) {
conn, err := d.proxyDial(ctx, "tcp", d.host)
if err != nil {
return nil, err
}
con, chans, reqs, err := ssh.NewClientConn(conn, d.host, d.config)
if err != nil {
return nil, err
}
return ssh.NewClient(con, chans, reqs), nil
}
func buildCmd(name string, args ...string) string {
cmds := make([]string, 0, len(args)+1)
cmds = append(cmds, name)
for _, arg := range args {
cmds = append(cmds, strconv.Quote(arg))
}
return strings.Join(cmds, " ")
}
func (d *Dialer) CommandDialContext(ctx context.Context, name string, args ...string) (net.Conn, error) {
cli, err := d.getClient(ctx)
if err != nil {
return nil, err
}
defer d.putClient(cli)
sess, err := cli.NewSession()
if err != nil {
return nil, err
}
conn1, conn2 := net.Pipe()
sess.Stdin = conn1
sess.Stdout = conn1
sess.Stderr = os.Stderr
cmd := buildCmd(name, args...)
err = sess.Start(cmd)
if err != nil {
return nil, err
}
ctx, cancel := context.WithCancel(ctx)
go func() {
sess.Wait()
cancel()
}()
go func() {
<-ctx.Done()
// openssh does not support the signal
// command and will not signal remote processes. This may
// be resolved in openssh 7.9 or higher. Please subscribe
// to https://github.com/golang/go/issues/16597.
sess.Signal(ssh.SIGKILL)
sess.Close()
conn1.Close()
}()
conn2 = connWithCloser(conn2, func() error {
cancel()
return nil
})
conn2 = connWithAddr(conn2, d.localAddr, newNetAddr("ssh-cmd", cmd))
return conn2, nil
}
func (d *Dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
cli, err := d.getClient(ctx)
if err != nil {
return nil, err
}
defer d.putClient(cli)
conn, err := cli.DialContext(ctx, network, address)
if err != nil {
return nil, err
}
return conn, nil
}
func (d *Dialer) Dial(network, address string) (net.Conn, error) {
cli, err := d.getClient(context.Background())
if err != nil {
return nil, err
}
defer d.putClient(cli)
conn, err := cli.Dial(network, address)
if err != nil {
return nil, err
}
return conn, nil
}
func (d *Dialer) Listen(ctx context.Context, network, address string) (net.Listener, error) {
host, port, err := net.SplitHostPort(address)
if err == nil {
if host == "" {
address = net.JoinHostPort("0.0.0.0", port)
}
}
cli, err := d.getClient(ctx)
if err != nil {
return nil, err
}
defer d.putClient(cli)
listener, err := cli.Listen(network, address)
if err != nil {
return nil, err
}
return listener, nil
}