-
Notifications
You must be signed in to change notification settings - Fork 1
/
connect.go
410 lines (348 loc) · 13.3 KB
/
connect.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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package vaulthcplib
import (
"errors"
"flag"
"fmt"
"net/http"
"strings"
"github.com/hashicorp/cli"
hcpis "github.com/hashicorp/hcp-sdk-go/clients/cloud-iam/stable/2019-12-10/client/iam_service"
hcprmo "github.com/hashicorp/hcp-sdk-go/clients/cloud-resource-manager/stable/2019-12-10/client/organization_service"
hcprmp "github.com/hashicorp/hcp-sdk-go/clients/cloud-resource-manager/stable/2019-12-10/client/project_service"
hcprmm "github.com/hashicorp/hcp-sdk-go/clients/cloud-resource-manager/stable/2019-12-10/models"
hcpvs "github.com/hashicorp/hcp-sdk-go/clients/cloud-vault-service/stable/2020-11-25/client/vault_service"
hcpvsm "github.com/hashicorp/hcp-sdk-go/clients/cloud-vault-service/stable/2020-11-25/models"
"github.com/hashicorp/hcp-sdk-go/config"
"github.com/hashicorp/hcp-sdk-go/httpclient"
"github.com/mitchellh/go-homedir"
)
var (
_ cli.Command = (*HCPConnectCommand)(nil)
ErrorProxyDisabled = fmt.Errorf("proxy is disabled")
)
type HCPConnectCommand struct {
Ui cli.Ui
flagClientID string
flagSecretID string
flagOrganizationID string
flagProjectID string
flagClusterID string
// for testing
rmOrgClient hcprmo.ClientService
vsClient hcpvs.ClientService
rmProjClient hcprmp.ClientService
iamClient hcpis.ClientService
}
func (c *HCPConnectCommand) Help() string {
helpText := `
Usage: vault hcp connect [options]
Authenticates users or machines to HCP using either provided arguments or retrieved token through
browser login. A successful authentication results in an HCP token and an HCP Vault address being
locally cached.
The default authentication method is an interactive one, redirecting users to the HCP login browser.
If a set of service principal credential is supplied, which is generated through the HCP portal with
the necessary capabilities to access the organization, project, and HCP Vault cluster chosen.
$ vault hcp connect -client-id=client-id-value -secret-id=secret-id-value
Additionally, the organization identification, project identification, and cluster name can be passed in to
directly connect to a specific HCP Vault cluster without interacting with the CLI.
$ vault hcp connect -client-id=client-id-value -secret-id=secret-id-value -organization-id=org-UUID -project-id=proj-UUID -cluster-id=cluster-name
`
return strings.TrimSpace(helpText)
}
func (c *HCPConnectCommand) Run(args []string) int {
f := c.Flags()
if err := f.Parse(args); err != nil {
c.Ui.Error(err.Error())
return 1
}
err := c.setupClients()
if err != nil {
c.Ui.Error(err.Error())
return 1
}
proxyAddr, err := c.getProxyAddr()
if err != nil {
if errors.Is(err, ErrorProxyDisabled) {
c.Ui.Error("\nFailed to connect to HCP Vault Cluster: HTTP proxy feature not enabled.")
return 1
}
c.Ui.Error(fmt.Sprintf("\n%s", err.Error()))
return 1
}
path, err := homedir.Dir()
if err != nil {
c.Ui.Error(fmt.Sprintf("\nFailed to find home directory: %s", err))
return 1
}
err = writeConfig(proxyAddr, c.flagClientID, c.flagSecretID, path)
if err != nil {
c.Ui.Error(fmt.Sprintf("\nFailed to connect to HCP Vault Cluster: %s", err))
return 1
}
c.Ui.Info("\nConnected to cluster via HCP proxy. Login with 'vault login' or export a VAULT_TOKEN to access this Vault cluster.")
return 0
}
func (c *HCPConnectCommand) setupClients() error {
opts := []config.HCPConfigOption{config.FromEnv()}
if c.flagClientID != "" && c.flagSecretID == "" {
return fmt.Errorf("secret-id is required when client-id is provided")
} else if c.flagSecretID != "" && c.flagClientID == "" {
return fmt.Errorf("client-id is required when secret-id is provided")
} else if c.flagClientID != "" && c.flagSecretID != "" {
opts = append(opts, config.WithClientCredentials(c.flagClientID, c.flagSecretID))
opts = append(opts, config.WithoutBrowserLogin())
}
cfg, err := config.NewHCPConfig(opts...)
if err != nil {
return fmt.Errorf("failed to connect to HCP: %w", err)
}
hcpHttpClient, err := httpclient.New(httpclient.Config{HCPConfig: cfg})
if err != nil {
return fmt.Errorf("failed to connect to HCP: %w", err)
}
// client should only be pre-populated for testing
if c.iamClient == nil {
c.iamClient = hcpis.New(hcpHttpClient, nil)
}
// verify token is valid
resp, err := c.iamClient.IamServiceGetCallerIdentity(hcpis.NewIamServiceGetCallerIdentityParams().WithDefaults(), nil)
if err != nil {
if identErr, ok := err.(*hcpis.IamServiceGetCallerIdentityDefault); ok && !identErr.IsCode(http.StatusUnauthorized) {
return fmt.Errorf("failed to get HCP caller identity: %w", err)
}
}
// force re-auth in case where cached token is invalid
if resp == nil || resp.Payload == nil || resp.Payload.Principal == nil {
err = cfg.Logout()
if err != nil {
return fmt.Errorf("failed to erase HCP credentials cache: %w", err)
}
cfg, err = config.NewHCPConfig(opts...)
if err != nil {
return fmt.Errorf("failed to connect to HCP: %w", err)
}
hcpHttpClient, err = httpclient.New(httpclient.Config{HCPConfig: cfg})
if err != nil {
return fmt.Errorf("failed to connect to HCP: %w", err)
}
}
// clients should only be pre-populated for testing
if c.iamClient == nil {
c.iamClient = hcpis.New(hcpHttpClient, nil)
}
if c.rmOrgClient == nil {
c.rmOrgClient = hcprmo.New(hcpHttpClient, nil)
}
if c.vsClient == nil {
c.vsClient = hcpvs.New(hcpHttpClient, nil)
}
if c.rmProjClient == nil {
c.rmProjClient = hcprmp.New(hcpHttpClient, nil)
}
return nil
}
func (c *HCPConnectCommand) getProxyAddr() (string, error) {
var err error
var organizationID string
if c.flagOrganizationID != "" {
organizationID = c.flagOrganizationID
} else {
organizationID, err = c.getOrganization()
if err != nil {
return "", fmt.Errorf("failed to get HCP organization information: %w", err)
}
}
var projectID string
if c.flagProjectID != "" {
projectID = c.flagProjectID
} else {
projectID, err = c.getProject(organizationID)
if err != nil {
return "", fmt.Errorf("failed to get HCP project information: %w", err)
}
}
proxyAddr, err := c.getCluster(organizationID, projectID, c.flagClusterID)
if err != nil {
return "", err
}
return proxyAddr, nil
}
func (c *HCPConnectCommand) Synopsis() string {
return "Connect to an HCP Vault Cluster"
}
func (c *HCPConnectCommand) Flags() *flag.FlagSet {
mainSet := flag.NewFlagSet("", flag.ContinueOnError)
mainSet.StringVar(&c.flagClientID, "client-id", "", "")
mainSet.StringVar(&c.flagSecretID, "secret-id", "", "")
mainSet.StringVar(&c.flagOrganizationID, "organization-id", "", "")
mainSet.StringVar(&c.flagProjectID, "project-id", "", "")
mainSet.StringVar(&c.flagClusterID, "cluster-id", "", "")
return mainSet
}
func (c *HCPConnectCommand) getOrganization() (organizationID string, err error) {
organizationsResp, err := c.rmOrgClient.OrganizationServiceList(hcprmo.NewOrganizationServiceListParams().WithDefaults(), nil)
switch {
case err != nil:
return "", err
case organizationsResp.GetPayload() == nil:
return "", fmt.Errorf("payload is nil")
case len(organizationsResp.GetPayload().Organizations) < 1:
return "", fmt.Errorf("no organizations available")
case len(organizationsResp.GetPayload().Organizations) > 1:
title := "Available organizations:"
u := strings.Repeat("-", len(title))
c.Ui.Info(fmt.Sprintf("%s\n%s\n", u, title))
orgs := make(map[string]*hcprmm.HashicorpCloudResourcemanagerOrganization, len(organizationsResp.GetPayload().Organizations))
for _, org := range organizationsResp.GetPayload().Organizations {
if *org.State == hcprmm.HashicorpCloudResourcemanagerOrganizationOrganizationStateACTIVE {
c.Ui.Info(fmt.Sprintf("Organization name: %s", org.Name))
orgs[org.Name] = org
}
}
userInput, err := c.Ui.Ask(fmt.Sprintf("\nChoose a organization: "))
if err != nil {
return "", err
}
chosenOrg, ok := orgs[userInput]
if !ok {
return "", fmt.Errorf("invalid HCP organization: %s", userInput)
}
return chosenOrg.ID, nil
default:
organization := organizationsResp.GetPayload().Organizations[0]
if *organization.State != hcprmm.HashicorpCloudResourcemanagerOrganizationOrganizationStateACTIVE {
return "", fmt.Errorf("organization is not active")
}
return organization.ID, nil
}
}
func (c *HCPConnectCommand) getProject(organizationID string) (projectID string, err error) {
scopeType := "ORGANIZATION"
projectListReq := hcprmp.
NewProjectServiceListParams().
WithDefaults().
WithScopeType(&scopeType).
WithScopeID(&organizationID)
projectResp, err := c.rmProjClient.ProjectServiceList(projectListReq, nil)
switch {
case err != nil:
return "", err
case projectResp.GetPayload() == nil:
return "", fmt.Errorf("payload is nil")
case len(projectResp.GetPayload().Projects) < 1:
return "", fmt.Errorf("no projects available")
case len(projectResp.GetPayload().Projects) > 1:
title := "Available projects:"
u := strings.Repeat("-", len(title))
c.Ui.Info(fmt.Sprintf("%s\n%s\n", u, title))
projs := make(map[string]*hcprmm.HashicorpCloudResourcemanagerProject, len(projectResp.GetPayload().Projects))
for _, proj := range projectResp.GetPayload().Projects {
if *proj.State == hcprmm.HashicorpCloudResourcemanagerProjectProjectStateACTIVE {
c.Ui.Info(fmt.Sprintf("Project name: %s", proj.Name))
projs[proj.Name] = proj
}
}
userInput, err := c.Ui.Ask(fmt.Sprintf("\nChoose a project: "))
if err != nil {
return "", err
}
chosenProj, ok := projs[userInput]
if !ok {
return "", fmt.Errorf("invalid HCP project: %s", userInput)
}
return chosenProj.ID, nil
default:
project := projectResp.GetPayload().Projects[0]
if *project.State != hcprmm.HashicorpCloudResourcemanagerProjectProjectStateACTIVE {
return "", fmt.Errorf("project is not active")
}
return project.ID, nil
}
}
func (c *HCPConnectCommand) getCluster(organizationID string, projectID string, clusterID string) (proxyAddr string, err error) {
if clusterID == "" {
return c.listClusters(organizationID, projectID)
}
clusterGetReq := hcpvs.NewGetParams().
WithDefaults().
WithLocationOrganizationID(organizationID).
WithLocationProjectID(projectID).
WithClusterID(clusterID)
clusterResp, err := c.vsClient.Get(clusterGetReq, nil)
switch {
case err != nil:
return "", fmt.Errorf("failed to get cluster %s: %s", clusterID, err)
case clusterResp.GetPayload() == nil:
return "", fmt.Errorf("payload is nil")
default:
cluster := clusterResp.GetPayload().Cluster
if *cluster.Config.NetworkConfig.HTTPProxyOption == hcpvsm.HashicorpCloudVault20201125HTTPProxyOptionDISABLED {
return "", ErrorProxyDisabled
}
title := "HCP Vault Cluster:"
u := strings.Repeat("-", len(title))
c.Ui.Info(fmt.Sprintf("%s\n%s: %s\n", u, title, cluster.ID))
proxyAddr = "https://" + cluster.DNSNames.Proxy
return proxyAddr, nil
}
}
func (c *HCPConnectCommand) listClusters(organizationID string, projectID string) (proxyAddr string, err error) {
clusterListReq := hcpvs.NewListParams().
WithDefaults().
WithLocationOrganizationID(organizationID).
WithLocationProjectID(projectID)
// Purposely calling List instead of ListAll because we are only interested in HVD clusters.
clustersResp, err := c.vsClient.List(clusterListReq, nil)
switch {
case err != nil:
return "", err
case clustersResp.GetPayload() == nil:
return "", fmt.Errorf("payload is nil")
case len(clustersResp.GetPayload().Clusters) < 1:
return "", fmt.Errorf("no clusters available")
case len(clustersResp.GetPayload().Clusters) > 1:
title := "Available clusters:"
u := strings.Repeat("-", len(title))
c.Ui.Info(fmt.Sprintf("%s\n%s\n", u, title))
clusters := make(map[string]*hcpvsm.HashicorpCloudVault20201125Cluster, len(clustersResp.GetPayload().Clusters))
for _, cluster := range clustersResp.GetPayload().Clusters {
if *cluster.State == hcpvsm.HashicorpCloudVault20201125ClusterStateRUNNING {
c.Ui.Info(fmt.Sprintf("Cluster identification: %s", cluster.ID))
clusters[cluster.ID] = cluster
}
}
userInput, err := c.Ui.Ask("\nChoose a cluster:")
if err != nil {
c.Ui.Error(fmt.Sprintf("Failed to get cluster information: %s", err))
return "", err
}
// set the cluster
cluster, ok := clusters[userInput]
if !ok {
return "", fmt.Errorf("invalid cluster: %s", userInput)
}
if *cluster.Config.NetworkConfig.HTTPProxyOption == hcpvsm.HashicorpCloudVault20201125HTTPProxyOptionDISABLED {
return "", ErrorProxyDisabled
}
proxyAddr = "https://" + cluster.DNSNames.Proxy
return proxyAddr, nil
default:
cluster := clustersResp.GetPayload().Clusters[0]
clusterState := *cluster.State
if clusterState == hcpvsm.HashicorpCloudVault20201125ClusterStateLOCKED || clusterState == hcpvsm.HashicorpCloudVault20201125ClusterStateLOCKING {
return "", fmt.Errorf("cluster is locked")
} else if clusterState == hcpvsm.HashicorpCloudVault20201125ClusterStateCREATING {
return "", fmt.Errorf("cluster is still being created")
} else if clusterState != hcpvsm.HashicorpCloudVault20201125ClusterStateRUNNING {
return "", fmt.Errorf("cluster is not running")
}
if *cluster.Config.NetworkConfig.HTTPProxyOption == hcpvsm.HashicorpCloudVault20201125HTTPProxyOptionDISABLED {
return "", ErrorProxyDisabled
}
c.Ui.Info(fmt.Sprintf("HCP Vault Cluster: %s", cluster.ID))
proxyAddr = "https://" + cluster.DNSNames.Proxy
return proxyAddr, nil
}
}