-
Notifications
You must be signed in to change notification settings - Fork 7
/
path_checkouts.go
410 lines (377 loc) · 13 KB
/
path_checkouts.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 openldap
import (
"context"
"fmt"
"strings"
"time"
"github.com/armon/go-metrics"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/helper/locksutil"
"github.com/hashicorp/vault/sdk/logical"
)
const checkoutKeyType = "checkout-creds"
func (b *backend) pathSetCheckOut() []*framework.Path {
return []*framework.Path{
{
Pattern: strings.TrimSuffix(libraryPrefix, "/") + genericNameWithForwardSlashRegex("name") + "/check-out$",
DisplayAttrs: &framework.DisplayAttributes{
OperationPrefix: operationPrefixLDAPLibrary,
OperationVerb: "check-out",
},
Fields: map[string]*framework.FieldSchema{
"name": {
Type: framework.TypeLowerCaseString,
Description: "Name of the set",
Required: true,
},
"ttl": {
Type: framework.TypeDurationSecond,
Description: "The length of time before the check-out will expire, in seconds.",
},
},
Operations: map[logical.Operation]framework.OperationHandler{
logical.UpdateOperation: &framework.PathOperation{
Callback: b.operationSetCheckOut,
Summary: "Check a service account out from the library.",
},
},
HelpSynopsis: `Check a service account out from the library.`,
},
}
}
func (b *backend) operationSetCheckOut(ctx context.Context, req *logical.Request, fieldData *framework.FieldData) (*logical.Response, error) {
setName := fieldData.Get("name").(string)
lock := locksutil.LockForKey(b.checkOutLocks, setName)
lock.Lock()
defer lock.Unlock()
ttlPeriodRaw, ttlPeriodSent := fieldData.GetOk("ttl")
if !ttlPeriodSent {
ttlPeriodRaw = 0
}
requestedTTL := time.Duration(ttlPeriodRaw.(int)) * time.Second
set, err := readSet(ctx, req.Storage, setName)
if err != nil {
return nil, err
}
if set == nil {
return logical.ErrorResponse(fmt.Sprintf(`%q doesn't exist`, setName)), nil
}
// Prepare the check-out we'd like to execute.
ttl := set.TTL
if ttlPeriodSent {
switch {
case set.TTL <= 0 && requestedTTL > 0:
// The set's TTL is infinite and the caller requested a finite TTL.
ttl = requestedTTL
case set.TTL > 0 && requestedTTL < set.TTL:
// The set's TTL isn't infinite and the caller requested a shorter TTL.
ttl = requestedTTL
}
}
newCheckOut := &CheckOut{
IsAvailable: false,
BorrowerEntityID: req.EntityID,
BorrowerClientToken: req.ClientToken,
}
// Check out the first service account available.
for _, serviceAccountName := range set.ServiceAccountNames {
if err := b.CheckOut(ctx, req.Storage, serviceAccountName, newCheckOut); err != nil {
if err == errCheckedOut {
continue
}
return nil, err
}
password, err := retrievePassword(ctx, req.Storage, serviceAccountName)
if err != nil {
return nil, err
}
respData := map[string]interface{}{
"service_account_name": serviceAccountName,
"password": password,
}
internalData := map[string]interface{}{
"service_account_name": serviceAccountName,
"set_name": setName,
}
resp := b.Backend.Secret(checkoutKeyType).Response(respData, internalData)
resp.Secret.Renewable = true
resp.Secret.TTL = ttl
resp.Secret.MaxTTL = set.MaxTTL
return resp, nil
}
// If we arrived here, it's because we never had a hit for a service account that was available.
// In case of customer issues, we need to make this easy to see and diagnose.
b.Logger().Debug(fmt.Sprintf(`%q had no check-outs available`, setName))
metrics.IncrCounter([]string{"ldap", "check-out", "unavailable", setName}, 1)
return logical.ErrorResponse("No service accounts available for check-out."), nil
}
func checkoutSecretCreds(b *backend) *framework.Secret {
return &framework.Secret{
Type: checkoutKeyType,
Fields: map[string]*framework.FieldSchema{
"service_account_name": {
Type: framework.TypeString,
Description: "Service account name",
},
"password": {
Type: framework.TypeString,
Description: "Password",
},
},
Renew: b.renewCheckOut,
Revoke: b.endCheckOut,
}
}
func (b *backend) renewCheckOut(ctx context.Context, req *logical.Request, _ *framework.FieldData) (*logical.Response, error) {
setName := req.Secret.InternalData["set_name"].(string)
lock := locksutil.LockForKey(b.checkOutLocks, setName)
lock.RLock()
defer lock.RUnlock()
set, err := readSet(ctx, req.Storage, setName)
if err != nil {
return nil, err
}
if set == nil {
return logical.ErrorResponse(fmt.Sprintf(`%q doesn't exist`, setName)), nil
}
serviceAccountName := req.Secret.InternalData["service_account_name"].(string)
checkOut, err := b.LoadCheckOut(ctx, req.Storage, serviceAccountName)
if err != nil {
return nil, err
}
if checkOut.IsAvailable {
// It's possible that this renewal could be attempted after a check-in occurred either by this entity or by
// another user with access to the "manage check-ins" endpoint that forcibly checked it back in.
return logical.ErrorResponse(fmt.Sprintf("%s is already checked in, please call check-out to regain it", serviceAccountName)), nil
}
resp := &logical.Response{Secret: req.Secret}
resp.Secret.TTL = set.TTL
resp.Secret.MaxTTL = set.MaxTTL
return resp, nil
}
func (b *backend) endCheckOut(ctx context.Context, req *logical.Request, _ *framework.FieldData) (*logical.Response, error) {
setName := req.Secret.InternalData["set_name"].(string)
lock := locksutil.LockForKey(b.checkOutLocks, setName)
lock.Lock()
defer lock.Unlock()
serviceAccountName := req.Secret.InternalData["service_account_name"].(string)
if err := b.CheckIn(ctx, req.Storage, serviceAccountName); err != nil {
return nil, err
}
return nil, nil
}
func (b *backend) pathSetCheckIn() []*framework.Path {
return []*framework.Path{
{
Pattern: strings.TrimSuffix(libraryPrefix, "/") + genericNameWithForwardSlashRegex("name") + "/check-in$",
DisplayAttrs: &framework.DisplayAttributes{
OperationPrefix: operationPrefixLDAPLibrary,
OperationVerb: "check-in",
},
Fields: map[string]*framework.FieldSchema{
"name": {
Type: framework.TypeLowerCaseString,
Description: "Name of the set.",
Required: true,
},
"service_account_names": {
Type: framework.TypeCommaStringSlice,
Description: "The username/logon name for the service accounts to check in.",
},
},
Operations: map[logical.Operation]framework.OperationHandler{
logical.UpdateOperation: &framework.PathOperation{
Callback: b.operationCheckIn(false),
Summary: "Check service accounts in to the library.",
},
},
HelpSynopsis: `Check service accounts in to the library.`,
},
}
}
func (b *backend) pathSetManageCheckIn() []*framework.Path {
return []*framework.Path{
{
Pattern: strings.TrimSuffix(libraryManagePrefix, "/") + genericNameWithForwardSlashRegex("name") + "/check-in$",
DisplayAttrs: &framework.DisplayAttributes{
OperationPrefix: operationPrefixLDAPLibrary,
OperationVerb: "force-check-in",
},
Fields: map[string]*framework.FieldSchema{
"name": {
Type: framework.TypeLowerCaseString,
Description: "Name of the set.",
Required: true,
},
"service_account_names": {
Type: framework.TypeCommaStringSlice,
Description: "The username/logon name for the service accounts to check in.",
},
},
Operations: map[logical.Operation]framework.OperationHandler{
logical.UpdateOperation: &framework.PathOperation{
Callback: b.operationCheckIn(true),
Summary: "Check service accounts in to the library.",
},
},
HelpSynopsis: `Force checking service accounts in to the library.`,
},
}
}
func (b *backend) operationCheckIn(overrideCheckInEnforcement bool) framework.OperationFunc {
return func(ctx context.Context, req *logical.Request, fieldData *framework.FieldData) (*logical.Response, error) {
setName := fieldData.Get("name").(string)
lock := locksutil.LockForKey(b.checkOutLocks, setName)
lock.Lock()
defer lock.Unlock()
serviceAccountNamesRaw, serviceAccountNamesSent := fieldData.GetOk("service_account_names")
var serviceAccountNames []string
if serviceAccountNamesSent {
serviceAccountNames = serviceAccountNamesRaw.([]string)
}
config, err := readConfig(ctx, req.Storage)
if err != nil {
return nil, err
}
if config == nil {
return nil, fmt.Errorf("missing LDAP configuration")
}
set, err := readSet(ctx, req.Storage, setName)
if err != nil {
return nil, err
}
if set == nil {
return logical.ErrorResponse(fmt.Sprintf(`%q doesn't exist`, setName)), nil
}
// If check-in enforcement is overridden or disabled at the set level, we should consider it disabled.
disableCheckInEnforcement := overrideCheckInEnforcement || set.DisableCheckInEnforcement
// Track the service accounts we check in so we can include it in our response.
toCheckIn := make([]string, 0)
// Build and validate a list of service account names that we will be checking in.
if len(serviceAccountNames) == 0 {
// It's okay if the caller doesn't tell us which service accounts they
// want to check in as long as they only have one checked out.
// We'll assume that's the one they want to check in.
for _, setServiceAccount := range set.ServiceAccountNames {
checkOut, err := b.LoadCheckOut(ctx, req.Storage, setServiceAccount)
if err != nil {
return nil, err
}
if checkOut.IsAvailable {
continue
}
if !disableCheckInEnforcement && !checkinAuthorized(req, checkOut) {
continue
}
toCheckIn = append(toCheckIn, setServiceAccount)
}
if len(toCheckIn) > 1 {
return logical.ErrorResponse(`when multiple service accounts are checked out, the "service_account_names" to check in must be provided`), nil
}
} else {
for _, serviceAccountName := range serviceAccountNames {
checkOut, err := b.LoadCheckOut(ctx, req.Storage, serviceAccountName)
if err != nil {
return nil, err
}
// First guard that they should be able to do anything at all.
if !checkOut.IsAvailable && !disableCheckInEnforcement && !checkinAuthorized(req, checkOut) {
return logical.ErrorResponse("%q can't be checked in because it wasn't checked out by the caller", serviceAccountName), nil
}
if checkOut.IsAvailable {
continue
}
toCheckIn = append(toCheckIn, serviceAccountName)
}
}
for _, serviceAccountName := range toCheckIn {
if err := b.CheckIn(ctx, req.Storage, serviceAccountName); err != nil {
return nil, err
}
}
return &logical.Response{
Data: map[string]interface{}{
"check_ins": toCheckIn,
},
}, nil
}
}
func (b *backend) pathSetStatus() []*framework.Path {
return []*framework.Path{
{
Pattern: strings.TrimSuffix(libraryPrefix, "/") + genericNameWithForwardSlashRegex("name") + "/status$",
DisplayAttrs: &framework.DisplayAttributes{
OperationPrefix: operationPrefixLDAPLibrary,
OperationVerb: "check-status",
},
Fields: map[string]*framework.FieldSchema{
"name": {
Type: framework.TypeLowerCaseString,
Description: "Name of the set.",
Required: true,
},
},
Operations: map[logical.Operation]framework.OperationHandler{
logical.ReadOperation: &framework.PathOperation{
Callback: b.operationSetStatus,
Summary: "Check the status of the service accounts in a library set.",
},
},
HelpSynopsis: `Check the status of the service accounts in a library.`,
},
}
}
func (b *backend) operationSetStatus(ctx context.Context, req *logical.Request, fieldData *framework.FieldData) (*logical.Response, error) {
setName := fieldData.Get("name").(string)
lock := locksutil.LockForKey(b.checkOutLocks, setName)
lock.RLock()
defer lock.RUnlock()
set, err := readSet(ctx, req.Storage, setName)
if err != nil {
return nil, err
}
if set == nil {
return logical.ErrorResponse(fmt.Sprintf(`%q doesn't exist`, setName)), nil
}
respData := make(map[string]interface{})
for _, serviceAccountName := range set.ServiceAccountNames {
checkOut, err := b.LoadCheckOut(ctx, req.Storage, serviceAccountName)
if err != nil {
return nil, err
}
status := map[string]interface{}{
"available": checkOut.IsAvailable,
}
if checkOut.IsAvailable {
// We only omit all other fields if the checkout is currently available,
// because they're only relevant to accounts that aren't checked out.
respData[serviceAccountName] = status
continue
}
if checkOut.BorrowerClientToken != "" {
status["borrower_client_token"] = checkOut.BorrowerClientToken
}
if checkOut.BorrowerEntityID != "" {
status["borrower_entity_id"] = checkOut.BorrowerEntityID
}
respData[serviceAccountName] = status
}
return &logical.Response{
Data: respData,
}, nil
}
func checkinAuthorized(req *logical.Request, checkOut *CheckOut) bool {
if checkOut.BorrowerEntityID != "" && req.EntityID != "" {
if checkOut.BorrowerEntityID == req.EntityID {
return true
}
}
if checkOut.BorrowerClientToken != "" && req.ClientToken != "" {
if checkOut.BorrowerClientToken == req.ClientToken {
return true
}
}
return false
}