-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiam_helper.go
374 lines (317 loc) · 11.4 KB
/
iam_helper.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
package ibmcloudauth
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"strings"
"sync"
"time"
"github.com/coreos/go-oidc/v3/oidc"
"github.com/hashicorp/errwrap"
"github.com/hashicorp/go-cleanhttp"
"github.com/hashicorp/vault/sdk/logical"
)
// IAM API paths
const (
accessGroupMembershipCheck = "/v2/groups/%s/members/%s"
serviceIDDetails = "/v1/serviceids/%s"
getUserProfile = "/v2/accounts/%s/users/%s"
identityToken = "/identity/token"
identity = "/identity"
v1APIKeys = "/v1/apikeys"
v1APIKeysID = v1APIKeys + "/%s"
v1APIKeyDetails = "/v1/apikeys/details"
// IAM OIDC provider paths
authorizationEndpoint = "/identity/authorize"
jwksURI = "/identity/keys"
)
// A struct to contain information from IBM Cloud tokens that we want to include in Vault token metadata
type tokenInfo struct {
IAMid string
Identifier string
Subject string
SubjectType string
Expiry time.Time
}
type iamAccessTokenClaims struct {
IAMID string `json:"iam_id"`
SubjectType string `json:"sub_type"`
Identifier string `json:"identifier"`
// Other access token claims that we do not currently use
//ID string `json:"id"`
//RealmID string `json:"realmid"`
//GivenName string `json:"given_name"`
//FamilyName string `json:"family_name"`
//Name string `json:"name"`
//Email string `json:"email"`
//Account Account `json:"account"`
//GrantType string `json:"grant_type"`
//Scope string `json:"scope"`
//ClientID string `json:"client_id"`
//ACR int `json:"acr"`
//AMR []string `json:"amr"`
}
type serviceIDDetail struct {
Account string `json:"account_id"`
}
type APIKeyV1Response struct {
APIKey string `json:"apikey"`
ID string `json:"id"`
}
type APIKeyDetailsResponse struct {
ID string `json:"id"`
IAMID string `json:"iam_id"`
AccountID string `json:"account_id"`
}
type iamHelper interface {
ObtainToken(apiKey string) (string, error)
VerifyToken(ctx context.Context, token string) (*tokenInfo, *logical.Response)
CheckServiceIDAccount(iamToken, identifier, accountID string) error
CheckUserIDAccount(iamToken, iamID, accountID string) error
CheckGroupMembership(groupID, iamID, iamToken string) error
CreateAPIKey(iamToken, IAMid, accountID, name, description string) (*APIKeyV1Response, error)
DeleteAPIKey(iamToken, apiKeyID string) error
GetAPIKeyDetails(iamToken, apiKeyValue string) (*APIKeyDetailsResponse, error)
Init(iamEndpoint, userManagementEndpoint string)
Cleanup()
}
type ibmCloudHelper struct {
providerLock sync.RWMutex
provider *oidc.Provider
providerCtx context.Context
providerCtxCancel context.CancelFunc
httpClient *http.Client
iamEndpoint string
userManagementEndpoint string
}
func (h *ibmCloudHelper) Init(iamEndpoint, userManagementEndpoint string) {
h.providerCtx, h.providerCtxCancel = context.WithCancel(context.Background())
h.httpClient = cleanhttp.DefaultPooledClient()
h.iamEndpoint = iamEndpoint
h.userManagementEndpoint = userManagementEndpoint
}
func (h *ibmCloudHelper) Cleanup() {
h.providerLock.Lock()
if h.providerCtxCancel != nil {
h.providerCtxCancel()
}
h.providerLock.Unlock()
}
func (h *ibmCloudHelper) getProvider() *oidc.Provider {
h.providerLock.RLock()
unlockFunc := h.providerLock.RUnlock
defer func() { unlockFunc() }()
if h.provider != nil {
return h.provider
}
h.providerLock.RUnlock()
h.providerLock.Lock()
unlockFunc = h.providerLock.Unlock
if h.provider != nil {
return h.provider
}
providerCtx := h.providerCtx
providerConfig := oidc.ProviderConfig{
IssuerURL: openIDIssuer,
AuthURL: h.getIAMURL(authorizationEndpoint),
TokenURL: h.getIAMURL(identityToken),
JWKSURL: h.getIAMURL(jwksURI),
}
provider := providerConfig.NewProvider(providerCtx)
h.provider = provider
return provider
}
func (h *ibmCloudHelper) CheckGroupMembership(groupID, iamID, iamToken string) error {
r, err := http.NewRequest(http.MethodHead, h.getIAMURL(accessGroupMembershipCheck, groupID, iamID), nil)
if err != nil {
return errwrap.Wrapf("failed creating http request for creating policy: {{err}}", err)
}
r.Header.Set("Authorization", iamToken)
r.Header.Set("Content-Type", "application/json")
r.Header.Set("Accept", "application/json")
_, err = httpRequestCheckStatus(h.httpClient, r, http.StatusNoContent)
return err
}
/**
Obtain an IAM token by way of an API Key
*/
func (h *ibmCloudHelper) ObtainToken(apiKey string) (string, error) {
data := url.Values{}
data.Set("grant_type", "urn:ibm:params:oauth:grant-type:apikey")
data.Set("apikey", apiKey)
data.Set("response_type", "cloud_iam")
req, err := http.NewRequest(http.MethodPost, h.getIAMURL(identityToken), strings.NewReader(data.Encode()))
if err != nil {
return "", errwrap.Wrapf("Error creating obtain token request: {{err}}", err)
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("Accept", "application/json")
resp, err := h.httpClient.Do(req)
if err != nil {
return "", errwrap.Wrapf("Error obtaining token: {{err}}", err)
}
defer closeResponse(resp)
var result map[string]interface{}
err = json.NewDecoder(resp.Body).Decode(&result)
if err != nil {
return "", errwrap.Wrapf("Error decoding the obtained token: {{err}}", err)
} else if _, ok := result["errorMessage"]; ok {
return "", fmt.Errorf("error message obtaining token: %s", result["errorMessage"])
}
return result["access_token"].(string), nil
}
/**
Verifies an IBM Cloud IAM token. If successful, it will return a tokenInfo
with relevant items contained in the token.
*/
func (h *ibmCloudHelper) VerifyToken(ctx context.Context, token string) (*tokenInfo, *logical.Response) {
// verify the token
provider := h.getProvider()
oidcConfig := &oidc.Config{
SkipClientIDCheck: true,
}
verifier := provider.Verifier(oidcConfig)
idToken, err := verifier.Verify(ctx, token)
if err != nil {
return nil, logical.ErrorResponse("an error occurred verifying the token %s", err)
}
// Get the IAM access token claims we are interested in
iamAccessTokenClaims := iamAccessTokenClaims{}
if err := idToken.Claims(&iamAccessTokenClaims); err != nil {
return nil, logical.ErrorResponse("unable to successfully parse all claims from token: %s", err)
}
return &tokenInfo{
IAMid: iamAccessTokenClaims.IAMID,
Identifier: iamAccessTokenClaims.Identifier,
SubjectType: iamAccessTokenClaims.SubjectType,
Subject: idToken.Subject,
Expiry: idToken.Expiry,
}, nil
}
func (h *ibmCloudHelper) CheckServiceIDAccount(iamToken, identifier, accountID string) error {
r, err := http.NewRequest(http.MethodGet, h.getIAMURL(serviceIDDetails, identifier), nil)
if err != nil {
return errwrap.Wrapf("failed creating http request for creating policy: {{err}}", err)
}
r.Header.Set("Authorization", "Bearer "+iamToken)
r.Header.Set("Content-Type", "application/json")
r.Header.Set("Accept", "application/json")
body, httpStatus, err := httpRequest(h.httpClient, r)
if err != nil {
return err
}
if httpStatus != 200 {
return fmt.Errorf("unexpected http status code: %v with response %v", httpStatus, string(body))
}
idInfo := new(serviceIDDetail)
if err := json.Unmarshal(body, &idInfo); err != nil {
return err
}
if accountID != idInfo.Account {
return fmt.Errorf("service ID account %s does not match the configured account %s", idInfo.Account, accountID)
}
return nil
}
func (h *ibmCloudHelper) CheckUserIDAccount(iamToken, iamID, accountID string) error {
r, err := http.NewRequest(http.MethodGet, h.getUserManagementURL(getUserProfile, accountID, iamID), nil)
if err != nil {
return errwrap.Wrapf("failed creating http request for creating policy: {{err}}", err)
}
r.Header.Set("Authorization", iamToken)
r.Header.Set("Content-Type", "application/json")
r.Header.Set("Accept", "application/json")
_, err = httpRequestCheckStatus(h.httpClient, r, http.StatusOK)
return err
}
func (h *ibmCloudHelper) CreateAPIKey(iamToken, IAMid, accountID, name, description string) (*APIKeyV1Response, error) {
requestBody, err := json.Marshal(map[string]interface{}{
"name": name,
"iam_id": IAMid,
"account_id": accountID,
"description": description,
"store_value": false,
})
if err != nil {
return nil, errwrap.Wrapf("failed marshalling the request for creating a service ID: {{err}}", err)
}
r, err := http.NewRequest(http.MethodPost, h.getIAMURL(v1APIKeys), bytes.NewBuffer(requestBody))
if err != nil {
return nil, errwrap.Wrapf("failed creating http request: {{err}}", err)
}
r.Header.Set("Authorization", "Bearer "+iamToken)
r.Header.Set("Content-Type", "application/json")
r.Header.Set("Accept", "application/json")
body, httpStatus, err := httpRequest(h.httpClient, r)
if err != nil {
return nil, err
}
if httpStatus != 201 {
return nil, fmt.Errorf("unexpected http status code: %v with response %v", httpStatus, string(body))
}
keyInfo := new(APIKeyV1Response)
if err := json.Unmarshal(body, &keyInfo); err != nil {
return nil, err
}
if len(keyInfo.APIKey) == 0 {
return nil, fmt.Errorf("an empty API key was returned with code %v and response %v", httpStatus, string(body))
}
if len(keyInfo.ID) == 0 {
return nil, fmt.Errorf("API key with an empty ID was returned with code %v and response %v", httpStatus, string(body))
}
return keyInfo, nil
}
func (h *ibmCloudHelper) DeleteAPIKey(iamToken, apiKeyID string) error {
r, err := http.NewRequest(http.MethodDelete, h.getIAMURL(v1APIKeysID, apiKeyID), nil)
if err != nil {
return errwrap.Wrapf("failed creating http request: {{err}}", err)
}
r.Header.Set("Authorization", "Bearer "+iamToken)
r.Header.Set("Content-Type", "application/json")
r.Header.Set("Accept", "application/json")
body, httpStatus, err := httpRequest(h.httpClient, r)
if err != nil {
return err
}
if httpStatus != 204 {
return fmt.Errorf("unexpected http status code: %v with response %v", httpStatus, string(body))
}
return nil
}
func (h *ibmCloudHelper) GetAPIKeyDetails(iamToken, apiKeyValue string) (*APIKeyDetailsResponse, error) {
r, err := http.NewRequest(http.MethodGet, h.getIAMURL(v1APIKeyDetails), nil)
if err != nil {
return nil, errwrap.Wrapf("failed creating http request: {{err}}", err)
}
r.Header.Set("Authorization", "Bearer "+iamToken)
r.Header.Set("IAM-Apikey", apiKeyValue)
r.Header.Set("Content-Type", "application/json")
r.Header.Set("Accept", "application/json")
body, httpStatus, err := httpRequest(h.httpClient, r)
if err != nil {
return nil, err
}
keyDetails := new(APIKeyDetailsResponse)
if err := json.Unmarshal(body, &keyDetails); err != nil {
return nil, err
}
if httpStatus != 200 {
return nil, fmt.Errorf("unexpected http status code: %v with response %v", httpStatus, string(body))
}
return keyDetails, nil
}
func (h *ibmCloudHelper) getURL(endpoint, path string, pathReplacements ...string) string {
pathSubs := make([]interface{}, len(pathReplacements))
for i, v := range pathReplacements {
pathSubs[i] = v
}
return fmt.Sprintf("%s%s", endpoint, fmt.Sprintf(path, pathSubs...))
}
func (h *ibmCloudHelper) getIAMURL(path string, pathReplacements ...string) string {
return h.getURL(h.iamEndpoint, path, pathReplacements...)
}
func (h *ibmCloudHelper) getUserManagementURL(path string, pathReplacements ...string) string {
return h.getURL(h.userManagementEndpoint, path, pathReplacements...)
}