generated from brevdev/seed
-
Notifications
You must be signed in to change notification settings - Fork 16
/
sshconfigurer.go
499 lines (427 loc) · 12 KB
/
sshconfigurer.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
493
494
495
496
497
498
499
package ssh
import (
"bytes"
"encoding/xml"
"errors"
"fmt"
"log"
"strings"
"text/template"
"github.com/brevdev/brev-cli/pkg/autostartconf"
"github.com/brevdev/brev-cli/pkg/entity"
breverrors "github.com/brevdev/brev-cli/pkg/errors"
"github.com/brevdev/brev-cli/pkg/tasks"
"github.com/hashicorp/go-multierror"
)
type ConfigUpdaterStore interface {
autostartconf.AutoStartStore
GetContextWorkspaces() ([]entity.Workspace, error)
WritePrivateKey(pem string) error
}
type Config interface {
Update(workspaces []entity.Workspace) error
}
type ConfigUpdater struct {
Store ConfigUpdaterStore
Configs []Config
PrivateKey string
}
func NewConfigUpdater(store ConfigUpdaterStore, configs []Config, privateKey string) *ConfigUpdater {
return &ConfigUpdater{
Store: store,
Configs: configs,
PrivateKey: privateKey,
}
}
var _ tasks.Task = ConfigUpdater{}
func (c ConfigUpdater) Run() error {
err := c.Store.WritePrivateKey(c.PrivateKey)
if err != nil {
return breverrors.WrapAndTrace(err)
}
workspaces, err := c.Store.GetContextWorkspaces()
if err != nil {
return breverrors.WrapAndTrace(err)
}
var runningWorkspaces []entity.Workspace
for _, workspace := range workspaces {
if workspace.Status == entity.Running {
runningWorkspaces = append(runningWorkspaces, workspace)
}
}
var res error
for _, c := range c.Configs {
err := c.Update(runningWorkspaces)
if err != nil {
res = multierror.Append(res, err)
}
}
if res != nil {
return breverrors.WrapAndTrace(res)
}
return nil
}
func (c ConfigUpdater) GetTaskSpec() tasks.TaskSpec {
return tasks.TaskSpec{RunCronImmediately: true, Cron: "@every 3s"}
}
func (c ConfigUpdater) Configure() error {
return nil
}
// ConfigUpaterFactoryStore prob a better way to do this
type ConfigUpaterFactoryStore interface {
ConfigUpdaterStore
SSHConfigurerV2Store
}
// SSHConfigurerV2 speciallizes in configuring ssh config with ProxyCommand
type SSHConfigurerV2 struct {
store SSHConfigurerV2Store
runRemoteCMD bool
}
type SSHConfigurerV2Store interface {
WriteBrevSSHConfig(config string) error
GetUserSSHConfig() (string, error)
WriteUserSSHConfig(config string) error
GetPrivateKeyPath() (string, error)
GetUserSSHConfigPath() (string, error)
GetBrevSSHConfigPath() (string, error)
GetJetBrainsConfigPath() (string, error)
GetJetBrainsConfig() (string, error)
WriteJetBrainsConfig(config string) error
DoesJetbrainsFilePathExist() (bool, error)
}
var _ Config = SSHConfigurerV2{}
func NewSSHConfigurerV2(store SSHConfigurerV2Store, runRemoteCMD bool) *SSHConfigurerV2 {
return &SSHConfigurerV2{
store: store,
runRemoteCMD: runRemoteCMD,
}
}
func (s SSHConfigurerV2) Update(workspaces []entity.Workspace) error {
newConfig, err := s.CreateNewSSHConfig(workspaces)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.store.WriteBrevSSHConfig(newConfig)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.EnsureConfigHasInclude()
if err != nil {
return breverrors.WrapAndTrace(err)
}
return nil
}
func (s SSHConfigurerV2) CreateNewSSHConfig(workspaces []entity.Workspace) (string, error) {
configPath, err := s.store.GetUserSSHConfigPath()
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
sshConfig := fmt.Sprintf("# included in %s\n", configPath)
for _, w := range workspaces {
pk, err := s.store.GetPrivateKeyPath()
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
entry, err := makeSSHConfigEntryV2(w, pk, s.runRemoteCMD)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
sshConfig += entry
}
return sshConfig, nil
}
const SSHConfigEntryTemplateV2 = `Host {{ .Alias }}
IdentityFile {{ .IdentityFile }}
User {{ .User }}
ProxyCommand {{ .ProxyCommand }}
ServerAliveInterval 30
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
RequestTTY yes
{{ if .RunRemoteCMD }}
RemoteCommand cd {{ .Dir }}; $SHELL
{{ end }}
`
const SSHConfigEntryTemplateV3 = `Host {{ .Alias }}
Hostname {{ .HostName }}
IdentityFile {{ .IdentityFile }}
User {{ .User }}
ServerAliveInterval 30
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
RequestTTY yes
{{ if .RunRemoteCMD }}
RemoteCommand cd {{ .Dir }}; $SHELL
{{ end }}
`
type SSHConfigEntryV2 struct {
Alias string
IdentityFile string
User string
ProxyCommand string
Dir string
RunRemoteCMD bool
HostName string
}
func MapContainsKey[K comparable, V any](m map[K]V, key K) bool {
_, ok := m[key]
return ok
}
func makeSSHConfigEntryV2(workspace entity.Workspace, privateKeyPath string, runRemoteCMD bool) (string, error) {
alias := workspace.Name
var entry SSHConfigEntryV2
var tmpl *template.Template
var err error
if MapContainsKey(entity.LegacyWorkspaceGroups, workspace.WorkspaceGroupID) {
proxyCommand := makeProxyCommand(workspace.ID)
entry = SSHConfigEntryV2{
Alias: alias,
IdentityFile: privateKeyPath,
User: "brev", // todo param-user
ProxyCommand: proxyCommand,
Dir: workspace.GetProjectFolderPath(),
RunRemoteCMD: runRemoteCMD,
}
tmpl, err = template.New(alias).Parse(SSHConfigEntryTemplateV2)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
} else {
entry = SSHConfigEntryV2{
Alias: alias,
IdentityFile: privateKeyPath,
User: "ubuntu", // todo param-user
Dir: workspace.GetProjectFolderPath(),
RunRemoteCMD: runRemoteCMD,
HostName: workspace.DNS,
}
tmpl, err = template.New(alias).Parse(SSHConfigEntryTemplateV3)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
}
buf := &bytes.Buffer{}
err = tmpl.Execute(buf, entry)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
return buf.String(), nil
}
func makeProxyCommand(workspaceID string) string {
huproxyExec := "brev proxy"
return fmt.Sprintf("%s %s", huproxyExec, workspaceID)
}
func (s SSHConfigurerV2) EnsureConfigHasInclude() error {
// openssh-7.3
brevConfigPath, err := s.store.GetBrevSSHConfigPath()
if err != nil {
return breverrors.WrapAndTrace(err)
}
conf, err := s.store.GetUserSSHConfig()
if err != nil {
return breverrors.WrapAndTrace(err)
}
if !doesUserSSHConfigIncludeBrevConfig(conf, brevConfigPath) {
newConf, err := AddIncludeToUserConfig(conf, brevConfigPath)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.store.WriteUserSSHConfig(newConf)
if err != nil {
return breverrors.WrapAndTrace(err)
}
}
return nil
}
func AddIncludeToUserConfig(conf string, brevConfigPath string) (string, error) {
newConf := makeIncludeBrevStr(brevConfigPath) + conf
return newConf, nil
}
func makeIncludeBrevStr(brevSSHConfigPath string) string {
return fmt.Sprintf("Include %s\n", brevSSHConfigPath)
}
func doesUserSSHConfigIncludeBrevConfig(conf string, brevConfigPath string) bool {
return strings.Contains(conf, makeIncludeBrevStr(brevConfigPath))
}
type SSHConfigurerServiceMesh struct {
store SSHConfigurerV2Store
}
var _ Config = SSHConfigurerServiceMesh{}
func NewSSHConfigurerServiceMesh(store SSHConfigurerV2Store) *SSHConfigurerServiceMesh {
return &SSHConfigurerServiceMesh{
store: store,
}
}
func (s SSHConfigurerServiceMesh) Update(workspaces []entity.Workspace) error {
newConfig, err := s.CreateNewSSHConfig(workspaces)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.store.WriteBrevSSHConfig(newConfig)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.EnsureConfigHasInclude()
if err != nil {
return breverrors.WrapAndTrace(err)
}
return nil
}
func (s SSHConfigurerServiceMesh) EnsureConfigHasInclude() error {
// openssh-7.3
brevConfigPath, err := s.store.GetBrevSSHConfigPath()
if err != nil {
return breverrors.WrapAndTrace(err)
}
conf, err := s.store.GetUserSSHConfig()
if err != nil {
return breverrors.WrapAndTrace(err)
}
if !doesUserSSHConfigIncludeBrevConfig(conf, brevConfigPath) {
newConf, err := AddIncludeToUserConfig(conf, brevConfigPath)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.store.WriteUserSSHConfig(newConf)
if err != nil {
return breverrors.WrapAndTrace(err)
}
}
return nil
}
func (s SSHConfigurerServiceMesh) CreateNewSSHConfig(workspaces []entity.Workspace) (string, error) {
log.Print("creating new service mesh ssh config")
configPath, err := s.store.GetUserSSHConfigPath()
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
sshConfig := fmt.Sprintf("# included in %s\n", configPath)
for _, w := range workspaces {
pk, err := s.store.GetPrivateKeyPath()
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
entry, err := makeSSHConfigServiceMeshEntry(string(w.GetLocalIdentifier()), w.GetNodeIdentifierForVPN(), pk)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
sshConfig += entry
}
return sshConfig, nil
}
const SSHConfigEntryTemplateServiceMesh = `Host {{ .Alias }}
HostName {{ .Host }}
IdentityFile {{ .IdentityFile }}
User {{ .User }}
Port {{ .Port }}
ServerAliveInterval 30
`
type SSHConfigEntryServiceMesh struct {
Alias string
Host string
IdentityFile string
User string
Port string
}
func makeSSHConfigServiceMeshEntry(alias string, host string, privateKeyPath string) (string, error) {
entry := SSHConfigEntryServiceMesh{
Alias: alias,
Host: host,
IdentityFile: privateKeyPath,
User: "brev",
Port: "22",
}
tmpl, err := template.New(host).Parse(SSHConfigEntryTemplateServiceMesh)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
buf := &bytes.Buffer{}
err = tmpl.Execute(buf, entry)
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
return buf.String(), nil
}
type SSHConfigurerJetBrains struct {
store SSHConfigurerV2Store
}
var _ Config = SSHConfigurerJetBrains{}
func NewSSHConfigurerJetBrains(store SSHConfigurerV2Store) (*SSHConfigurerJetBrains, error) {
doesJbPathExist, err := store.DoesJetbrainsFilePathExist()
if err != nil {
return nil, breverrors.WrapAndTrace(err)
}
if !doesJbPathExist {
return nil, errors.New("jetgbrains dne")
}
return &SSHConfigurerJetBrains{
store: store,
}, nil
}
func (s SSHConfigurerJetBrains) Update(workspaces []entity.Workspace) error {
newConfig, err := s.CreateNewSSHConfig(workspaces)
if err != nil {
return breverrors.WrapAndTrace(err)
}
err = s.store.WriteJetBrainsConfig(newConfig)
if err != nil {
return breverrors.WrapAndTrace(err)
}
return nil
}
func (s SSHConfigurerJetBrains) CreateNewSSHConfig(workspaces []entity.Workspace) (string, error) {
log.Print("creating new ssh config")
config := &JetbrainsGatewayConfigXML{
Component: JetbrainsGatewayConfigXMLComponent{
Name: "SshConfigs",
},
}
for _, w := range workspaces {
pk, errother := s.store.GetPrivateKeyPath()
if errother != nil {
return "", breverrors.WrapAndTrace(errother)
}
nodeID := w.GetNodeIdentifierForVPN()
entry := makeJetbrainsConfigEntry(nodeID, pk)
config.Component.Configs.SSHConfigs = append(config.Component.Configs.SSHConfigs, entry)
}
output, err := xml.MarshalIndent(config, "", " ")
if err != nil {
return "", breverrors.WrapAndTrace(err)
}
return string(output), nil
}
// <application>
// <component name="SshConfigs">
// <configs>
// <sshConfig host="hn"
// id="ee9d8d15-d6cb-43ae-a96b-250caa33c407"
// keyPath="$USER_HOME$/.brev/brev.pem"
// port="22"
// customName="brev@hn"
// nameFormat="CUSTOM"
// username="brev"
// useOpenSSHConfig="true">
// <option name="customName" value="brev@hn" />
// </sshConfig>
// </configs>
// </component>
// </application>
func makeJetbrainsConfigEntry(host, keypath string) JetbrainsGatewayConfigXMLSSHConfig {
return JetbrainsGatewayConfigXMLSSHConfig{
Host: host,
Port: "22",
KeyPath: keypath,
Username: "brev",
CustomName: entity.WorkspaceLocalID(host),
NameFormat: "CUSTOM",
Options: []JetbrainsGatewayConfigXMLSSHOption{
{
Name: "CustomName",
Value: host,
},
},
}
}