forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssh.go
492 lines (402 loc) · 11.4 KB
/
ssh.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
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
package sshCmd
import (
"crypto/md5"
"crypto/sha1"
"crypto/sha256"
"encoding/base64"
"errors"
"fmt"
"io"
"net"
"os"
"os/signal"
"runtime"
"strings"
"sync"
"syscall"
"time"
"golang.org/x/crypto/ssh"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/ssh/options"
"code.cloudfoundry.org/cli/cf/ssh/sigwinch"
"code.cloudfoundry.org/cli/cf/ssh/terminal"
"github.com/docker/docker/pkg/term"
)
const (
md5FingerprintLength = 47 // inclusive of space between bytes
hexSha1FingerprintLength = 59 // inclusive of space between bytes
base64Sha256FingerprintLength = 43
)
//go:generate counterfeiter . SecureShell
type SecureShell interface {
Connect(opts *options.SSHOptions) error
InteractiveSession() error
LocalPortForward() error
Wait() error
Close() error
}
//go:generate counterfeiter . SecureDialer
type SecureDialer interface {
Dial(network, address string, config *ssh.ClientConfig) (SecureClient, error)
}
//go:generate counterfeiter . SecureClient
type SecureClient interface {
NewSession() (SecureSession, error)
Conn() ssh.Conn
Dial(network, address string) (net.Conn, error)
Wait() error
Close() error
}
//go:generate counterfeiter . ListenerFactory
type ListenerFactory interface {
Listen(network, address string) (net.Listener, error)
}
//go:generate counterfeiter . SecureSession
type SecureSession interface {
RequestPty(term string, height, width int, termModes ssh.TerminalModes) error
SendRequest(name string, wantReply bool, payload []byte) (bool, error)
StdinPipe() (io.WriteCloser, error)
StdoutPipe() (io.Reader, error)
StderrPipe() (io.Reader, error)
Start(command string) error
Shell() error
Wait() error
Close() error
}
type secureShell struct {
secureDialer SecureDialer
terminalHelper terminal.TerminalHelper
listenerFactory ListenerFactory
keepAliveInterval time.Duration
app models.Application
sshEndpointFingerprint string
sshEndpoint string
token string
secureClient SecureClient
opts *options.SSHOptions
localListeners []net.Listener
}
func NewSecureShell(
secureDialer SecureDialer,
terminalHelper terminal.TerminalHelper,
listenerFactory ListenerFactory,
keepAliveInterval time.Duration,
app models.Application,
sshEndpointFingerprint string,
sshEndpoint string,
token string,
) SecureShell {
return &secureShell{
secureDialer: secureDialer,
terminalHelper: terminalHelper,
listenerFactory: listenerFactory,
keepAliveInterval: keepAliveInterval,
app: app,
sshEndpointFingerprint: sshEndpointFingerprint,
sshEndpoint: sshEndpoint,
token: token,
localListeners: []net.Listener{},
}
}
func (c *secureShell) Connect(opts *options.SSHOptions) error {
err := c.validateTarget(opts)
if err != nil {
return err
}
clientConfig := &ssh.ClientConfig{
User: fmt.Sprintf("cf:%s/%d", c.app.GUID, opts.Index),
Auth: []ssh.AuthMethod{
ssh.Password(c.token),
},
HostKeyCallback: fingerprintCallback(opts, c.sshEndpointFingerprint),
}
secureClient, err := c.secureDialer.Dial("tcp", c.sshEndpoint, clientConfig)
if err != nil {
return err
}
c.secureClient = secureClient
c.opts = opts
return nil
}
func (c *secureShell) Close() error {
for _, listener := range c.localListeners {
_ = listener.Close()
}
return c.secureClient.Close()
}
func (c *secureShell) LocalPortForward() error {
for _, forwardSpec := range c.opts.ForwardSpecs {
listener, err := c.listenerFactory.Listen("tcp", forwardSpec.ListenAddress)
if err != nil {
return err
}
c.localListeners = append(c.localListeners, listener)
go c.localForwardAcceptLoop(listener, forwardSpec.ConnectAddress)
}
return nil
}
func (c *secureShell) localForwardAcceptLoop(listener net.Listener, addr string) {
defer listener.Close()
for {
conn, err := listener.Accept()
if err != nil {
if netErr, ok := err.(net.Error); ok && netErr.Temporary() {
time.Sleep(100 * time.Millisecond)
continue
}
return
}
go c.handleForwardConnection(conn, addr)
}
}
func (c *secureShell) handleForwardConnection(conn net.Conn, targetAddr string) {
defer conn.Close()
target, err := c.secureClient.Dial("tcp", targetAddr)
if err != nil {
fmt.Printf("connect to %s failed: %s\n", targetAddr, err.Error())
return
}
defer target.Close()
wg := &sync.WaitGroup{}
wg.Add(2)
go copyAndClose(wg, conn, target)
go copyAndClose(wg, target, conn)
wg.Wait()
}
func copyAndClose(wg *sync.WaitGroup, dest io.WriteCloser, src io.Reader) {
_, _ = io.Copy(dest, src)
_ = dest.Close()
if wg != nil {
wg.Done()
}
}
func copyAndDone(wg *sync.WaitGroup, dest io.Writer, src io.Reader) {
_, _ = io.Copy(dest, src)
wg.Done()
}
func (c *secureShell) InteractiveSession() error {
var err error
secureClient := c.secureClient
opts := c.opts
session, err := secureClient.NewSession()
if err != nil {
return fmt.Errorf("SSH session allocation failed: %s", err.Error())
}
defer session.Close()
stdin, stdout, stderr := c.terminalHelper.StdStreams()
inPipe, err := session.StdinPipe()
if err != nil {
return err
}
outPipe, err := session.StdoutPipe()
if err != nil {
return err
}
errPipe, err := session.StderrPipe()
if err != nil {
return err
}
stdinFd, stdinIsTerminal := c.terminalHelper.GetFdInfo(stdin)
stdoutFd, stdoutIsTerminal := c.terminalHelper.GetFdInfo(stdout)
if c.shouldAllocateTerminal(opts, stdinIsTerminal) {
modes := ssh.TerminalModes{
ssh.ECHO: 1,
ssh.TTY_OP_ISPEED: 115200,
ssh.TTY_OP_OSPEED: 115200,
}
width, height := c.getWindowDimensions(stdoutFd)
err = session.RequestPty(c.terminalType(), height, width, modes)
if err != nil {
return err
}
var state *term.State
state, err = c.terminalHelper.SetRawTerminal(stdinFd)
if err == nil {
defer c.terminalHelper.RestoreTerminal(stdinFd, state)
}
}
if len(opts.Command) != 0 {
cmd := strings.Join(opts.Command, " ")
err = session.Start(cmd)
if err != nil {
return err
}
} else {
err = session.Shell()
if err != nil {
return err
}
}
wg := &sync.WaitGroup{}
wg.Add(2)
go copyAndClose(nil, inPipe, stdin)
go copyAndDone(wg, stdout, outPipe)
go copyAndDone(wg, stderr, errPipe)
if stdoutIsTerminal {
resized := make(chan os.Signal, 16)
if runtime.GOOS == "windows" {
ticker := time.NewTicker(250 * time.Millisecond)
defer ticker.Stop()
go func() {
for range ticker.C {
resized <- syscall.Signal(-1)
}
close(resized)
}()
} else {
signal.Notify(resized, sigwinch.SIGWINCH())
defer func() { signal.Stop(resized); close(resized) }()
}
go c.resize(resized, session, stdoutFd)
}
keepaliveStopCh := make(chan struct{})
defer close(keepaliveStopCh)
go keepalive(secureClient.Conn(), time.NewTicker(c.keepAliveInterval), keepaliveStopCh)
result := session.Wait()
wg.Wait()
return result
}
func (c *secureShell) Wait() error {
keepaliveStopCh := make(chan struct{})
defer close(keepaliveStopCh)
go keepalive(c.secureClient.Conn(), time.NewTicker(c.keepAliveInterval), keepaliveStopCh)
return c.secureClient.Wait()
}
func (c *secureShell) validateTarget(opts *options.SSHOptions) error {
if strings.ToUpper(c.app.State) != "STARTED" {
return fmt.Errorf("Application %q is not in the STARTED state", opts.AppName)
}
if !c.app.Diego {
return fmt.Errorf("Application %q is not running on Diego", opts.AppName)
}
return nil
}
func md5Fingerprint(key ssh.PublicKey) string {
sum := md5.Sum(key.Marshal())
return strings.Replace(fmt.Sprintf("% x", sum), " ", ":", -1)
}
func hexSha1Fingerprint(key ssh.PublicKey) string {
sum := sha1.Sum(key.Marshal())
return strings.Replace(fmt.Sprintf("% x", sum), " ", ":", -1)
}
func base64Sha256Fingerprint(key ssh.PublicKey) string {
sum := sha256.Sum256(key.Marshal())
return base64.RawStdEncoding.EncodeToString(sum[:])
}
func fingerprintCallback(opts *options.SSHOptions, expectedFingerprint string) ssh.HostKeyCallback {
if opts.SkipHostValidation {
return nil
}
return func(hostname string, remote net.Addr, key ssh.PublicKey) error {
var fingerprint string
switch len(expectedFingerprint) {
case base64Sha256FingerprintLength:
fingerprint = base64Sha256Fingerprint(key)
case hexSha1FingerprintLength:
fingerprint = hexSha1Fingerprint(key)
case md5FingerprintLength:
fingerprint = md5Fingerprint(key)
case 0:
fingerprint = md5Fingerprint(key)
return fmt.Errorf("Unable to verify identity of host.\n\nThe fingerprint of the received key was %q.", fingerprint)
default:
return errors.New("Unsupported host key fingerprint format")
}
if fingerprint != expectedFingerprint {
return fmt.Errorf("Host key verification failed.\n\nThe fingerprint of the received key was %q.", fingerprint)
}
return nil
}
}
func (c *secureShell) shouldAllocateTerminal(opts *options.SSHOptions, stdinIsTerminal bool) bool {
switch opts.TerminalRequest {
case options.RequestTTYForce:
return true
case options.RequestTTYNo:
return false
case options.RequestTTYYes:
return stdinIsTerminal
case options.RequestTTYAuto:
return len(opts.Command) == 0 && stdinIsTerminal
default:
return false
}
}
func (c *secureShell) resize(resized <-chan os.Signal, session SecureSession, terminalFd uintptr) {
type resizeMessage struct {
Width uint32
Height uint32
PixelWidth uint32
PixelHeight uint32
}
var previousWidth, previousHeight int
for range resized {
width, height := c.getWindowDimensions(terminalFd)
if width == previousWidth && height == previousHeight {
continue
}
message := resizeMessage{
Width: uint32(width),
Height: uint32(height),
}
_, _ = session.SendRequest("window-change", false, ssh.Marshal(message))
previousWidth = width
previousHeight = height
}
}
func keepalive(conn ssh.Conn, ticker *time.Ticker, stopCh chan struct{}) {
for {
select {
case <-ticker.C:
_, _, _ = conn.SendRequest("keepalive@cloudfoundry.org", true, nil)
case <-stopCh:
ticker.Stop()
return
}
}
}
func (c *secureShell) terminalType() string {
term := os.Getenv("TERM")
if term == "" {
term = "xterm"
}
return term
}
func (c *secureShell) getWindowDimensions(terminalFd uintptr) (width int, height int) {
winSize, err := c.terminalHelper.GetWinsize(terminalFd)
if err != nil {
winSize = &term.Winsize{
Width: 80,
Height: 43,
}
}
return int(winSize.Width), int(winSize.Height)
}
type secureDialer struct{}
func (d *secureDialer) Dial(network string, address string, config *ssh.ClientConfig) (SecureClient, error) {
client, err := ssh.Dial(network, address, config)
if err != nil {
return nil, err
}
return &secureClient{client: client}, nil
}
func DefaultSecureDialer() SecureDialer {
return &secureDialer{}
}
type secureClient struct{ client *ssh.Client }
func (sc *secureClient) Close() error { return sc.client.Close() }
func (sc *secureClient) Conn() ssh.Conn { return sc.client.Conn }
func (sc *secureClient) Wait() error { return sc.client.Wait() }
func (sc *secureClient) Dial(n, addr string) (net.Conn, error) {
return sc.client.Dial(n, addr)
}
func (sc *secureClient) NewSession() (SecureSession, error) {
return sc.client.NewSession()
}
type listenerFactory struct{}
func (lf *listenerFactory) Listen(network, address string) (net.Listener, error) {
return net.Listen(network, address)
}
func DefaultListenerFactory() ListenerFactory {
return &listenerFactory{}
}