-
Notifications
You must be signed in to change notification settings - Fork 162
/
session.go
191 lines (150 loc) · 4.3 KB
/
session.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
package ssh
import (
"fmt"
"strings"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
boshsys "github.com/cloudfoundry/bosh-utils/system"
boshdir "github.com/cloudfoundry/bosh-cli/director"
)
type SessionImpl struct {
connOpts ConnectionOpts
sessOpts SessionImplOpts
result boshdir.SSHResult
privKeyFile boshsys.File
knownHostsFile boshsys.File
fs boshsys.FileSystem
}
type SessionImplOpts struct {
ForceTTY bool
}
func NewSessionImpl(
connOpts ConnectionOpts,
sessOpts SessionImplOpts,
result boshdir.SSHResult,
fs boshsys.FileSystem,
) *SessionImpl {
return &SessionImpl{connOpts: connOpts, sessOpts: sessOpts, result: result, fs: fs}
}
func (r *SessionImpl) Start() ([]string, error) {
var err error
r.privKeyFile, err = r.makePrivKeyFile()
if err != nil {
return nil, err
}
r.knownHostsFile, err = r.makeKnownHostsFile()
if err != nil {
_ = r.fs.RemoveAll(r.privKeyFile.Name())
return nil, err
}
// Options are used for both ssh and scp
cmdOpts := []string{}
if r.sessOpts.ForceTTY {
cmdOpts = append(cmdOpts, "-tt")
}
cmdOpts = append(cmdOpts, []string{
"-o", "ServerAliveInterval=30",
"-o", "ForwardAgent=no",
"-o", "PasswordAuthentication=no",
"-o", "IdentitiesOnly=yes",
"-o", "IdentityFile=" + r.privKeyFile.Name(),
"-o", "StrictHostKeyChecking=yes",
"-o", "UserKnownHostsFile=" + r.knownHostsFile.Name(),
}...)
gwUsername, gwHost, gwPrivKeyPath := r.gwOpts(r.connOpts, r.result)
if len(r.connOpts.SOCKS5Proxy) > 0 {
proxyOpt := fmt.Sprintf(
"ProxyCommand=nc -X 5 -x %s %%h %%p",
strings.TrimPrefix(r.connOpts.SOCKS5Proxy, "socks5://"),
)
cmdOpts = append(cmdOpts, "-o", proxyOpt)
} else if len(gwHost) > 0 {
gwCmdOpts := []string{
"-o", "ServerAliveInterval=30",
"-o", "ForwardAgent=no",
"-o", "ClearAllForwardings=yes",
// Strict host key checking for a gateway is not necessary
// since ProxyCommand is only used for forwarding TCP and
// agent forwarding is disabled
"-o", "StrictHostKeyChecking=no",
"-o", "UserKnownHostsFile=/dev/null",
}
if len(gwPrivKeyPath) > 0 {
gwCmdOpts = append(
gwCmdOpts,
"-o", "PasswordAuthentication=no",
"-o", "IdentitiesOnly=yes",
"-o", "IdentityFile="+gwPrivKeyPath,
)
}
proxyOpt := fmt.Sprintf(
// Always force TTY for gateway ssh
"ProxyCommand=ssh -tt -W %%h:%%p -l %s %s %s",
gwUsername,
gwHost,
strings.Join(gwCmdOpts, " "),
)
cmdOpts = append(cmdOpts, "-o", proxyOpt)
}
cmdOpts = append(cmdOpts, r.connOpts.RawOpts...)
return cmdOpts, nil
}
func (r *SessionImpl) Finish() error {
// Make sure to try to delete all files regardless of errors
privKeyErr := r.fs.RemoveAll(r.privKeyFile.Name())
knownHostsErr := r.fs.RemoveAll(r.knownHostsFile.Name())
if privKeyErr != nil {
return privKeyErr
}
if knownHostsErr != nil {
return knownHostsErr
}
return nil
}
func (r SessionImpl) makePrivKeyFile() (boshsys.File, error) {
file, err := r.fs.TempFile("ssh-priv-key")
if err != nil {
return nil, bosherr.WrapErrorf(err, "Creating temp file for SSH private key")
}
_, err = file.Write([]byte(r.connOpts.PrivateKey))
if err != nil {
_ = r.fs.RemoveAll(file.Name())
return nil, bosherr.WrapErrorf(err, "Writing SSH private key")
}
return file, nil
}
func (r SessionImpl) makeKnownHostsFile() (boshsys.File, error) {
file, err := r.fs.TempFile("ssh-known-hosts")
if err != nil {
return nil, bosherr.WrapErrorf(err, "Creating temp file for SSH known hosts")
}
var content string
for _, host := range r.result.Hosts {
if len(host.HostPublicKey) > 0 {
content += fmt.Sprintf("%s %s\n", host.Host, host.HostPublicKey)
}
}
if len(content) > 0 {
_, err := file.Write([]byte(content))
if err != nil {
_ = r.fs.RemoveAll(file.Name())
return nil, bosherr.WrapErrorf(err, "Writing SSH known hosts")
}
}
return file, nil
}
func (r SessionImpl) gwOpts(connOpts ConnectionOpts, result boshdir.SSHResult) (string, string, string) {
if connOpts.GatewayDisable {
return "", "", ""
}
// Take server provided gateway options
username := result.GatewayUsername
host := result.GatewayHost
if len(connOpts.GatewayUsername) > 0 {
username = connOpts.GatewayUsername
}
if len(connOpts.GatewayHost) > 0 {
host = connOpts.GatewayHost
}
privKeyPath := connOpts.GatewayPrivateKeyPath
return username, host, privKeyPath
}