-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathensureServiceUser
More file actions
executable file
·427 lines (365 loc) · 12.5 KB
/
ensureServiceUser
File metadata and controls
executable file
·427 lines (365 loc) · 12.5 KB
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
#! /usr/bin/env node
// TODO
// - deduplicate with Vault's seed script at https://github.com/scality/Vault/pull/1627
// - add permission boundaries to user when https://scality.atlassian.net/browse/VAULT-4 is implemented
const fs = require('fs');
const { errors, errorUtils } = require('arsenal');
const { program } = require('commander');
const werelogs = require('werelogs');
const version = require('../package.json').version;
const async = require('async');
const { IAMClient, GetUserCommand, CreateUserCommand, ListPoliciesCommand, CreatePolicyCommand,
ListAttachedUserPoliciesCommand, AttachUserPolicyCommand, GetRoleCommand, CreateRoleCommand,
ListAttachedRolePoliciesCommand, AttachRolePolicyCommand, ListAccessKeysCommand, CreateAccessKeyCommand,
NoSuchEntityException,
} = require('@aws-sdk/client-iam');
const { STSClient, GetCallerIdentityCommand } = require('@aws-sdk/client-sts');
const systemPrefix = '/scality-internal/';
function generateUserAssumeRolePolicyDocument(roleName, targetAccount) {
return {
Version: '2012-10-17',
Statement: {
Effect: 'Allow',
Action: 'sts:AssumeRole',
Resource: `arn:aws:iam::${targetAccount}:role${systemPrefix}${roleName}`,
}
};
}
function generateRoleTrustPolicyDocument(userArn) {
return {
Version: '2012-10-17',
Statement: [
{
Effect: 'Allow',
Principal: {
AWS: userArn,
},
Action: 'sts:AssumeRole',
Condition: {}
}
]
};
}
function createIAMClient(opts) {
return new IAMClient({
endpoint: opts.iamEndpoint,
region: opts.region,
});
}
function createSTSClient(opts) {
return new STSClient({
endpoint: opts.stsEndpoint,
region: opts.region,
});
}
function needsCreation(v) {
if (Array.isArray(v)) {
return !v.length;
}
return !v;
}
class BaseHandler {
constructor(serviceName, iamClient, log, options) {
this.serviceName = serviceName;
this.iamClient = iamClient;
this.log = log;
this.options = options || {};
this.name = this.options.name;
this.resourceTypeSuffix = this.name ? `_${this.name}` : '';
this.resourceNameSuffix = this.name ? `-${this.name}` : '';
this.resourceName = `${this.serviceName}${this.resourceNameSuffix}`;
this.stsClient = this.options.stsClient;
}
get fqResourceType() {
return `${this.resourceType}${this.resourceTypeSuffix}`;
}
applyWaterfall(values, done) {
this.log.debug('applyWaterfall', { values, type: this.fqResourceType });
const v = values[this.fqResourceType];
if (needsCreation(v)) {
this.log.debug('creating', { v, type: this.fqResourceType });
return this.create(values)
.then(res =>
done(null, Object.assign(values, {
[this.fqResourceType]: res,
})))
.catch(done);
}
this.log.debug('conflicts check', { v, type: this.fqResourceType });
if (this.conflicts(v)) {
return done(errors.EntityAlreadyExists.customizeDescription(
`${this.fqResourceType} ${this.serviceName} already exists and conflicts with the expected value.`));
}
this.log.debug('nothing to do', { v, type: this.fqResourceType });
return done(null, values);
}
}
class UserHandler extends BaseHandler {
get resourceType() {
return 'user';
}
async collect() {
const command = new GetUserCommand({
UserName: this.resourceName,
});
const res = await this.iamClient.send(command);
return res.User;
}
async create(allResources) {
const command = new CreateUserCommand({
UserName: this.resourceName,
Path: systemPrefix,
});
const res = await this.iamClient.send(command);
return res.User;
}
conflicts(u) {
return u.Path !== systemPrefix;
}
}
class PolicyHandler extends BaseHandler {
get resourceType() {
return 'policy';
}
async collect() {
const command = new ListPoliciesCommand({
MaxItems: 100,
OnlyAttached: false,
Scope: 'All',
});
const res = await this.iamClient.send(command);
return res.Policies.find(p => p.PolicyName === this.resourceName);
}
async create(allResources) {
let accountId;
if (!this.options.constrainToThisAccount) {
accountId = '*';
} else {
try {
const command = new GetCallerIdentityCommand({});
const res = await this.stsClient.send(command);
accountId = res.Account;
} catch (err) {
this.log.error('failed to get caller identity', {
error: errorUtils.reshapeExceptionError(err),
});
throw err;
}
}
const policyDocument = this.options.policy ||
generateUserAssumeRolePolicyDocument(this.serviceName, accountId);
const command = new CreatePolicyCommand({
PolicyName: this.resourceName,
PolicyDocument: JSON.stringify(policyDocument),
Path: systemPrefix,
});
const res = await this.iamClient.send(command);
return res.Policy;
}
conflicts(p) {
return p.Path !== systemPrefix;
}
}
class RoleHandler extends BaseHandler {
get resourceType() {
return 'role';
}
async collect() {
const command = new GetRoleCommand({
RoleName: this.resourceName,
});
const res = await this.iamClient.send(command);
return res.Role;
}
async create(allResources) {
const trustPolicy = generateRoleTrustPolicyDocument(allResources.user.Arn);
const command = new CreateRoleCommand({
RoleName: this.resourceName,
Path: systemPrefix,
AssumeRolePolicyDocument: JSON.stringify(trustPolicy),
});
const res = await this.iamClient.send(command);
return res.Role;
}
conflicts(p) {
return p.Path !== systemPrefix;
}
}
class PolicyUserAttachmentHandler extends BaseHandler {
get resourceType() {
return 'policyAttachment';
}
async collect() {
const command = new ListAttachedUserPoliciesCommand({
UserName: this.resourceName,
MaxItems: 100,
});
const res = await this.iamClient.send(command);
return res.AttachedPolicies;
}
async create(allResources) {
const command = new AttachUserPolicyCommand({
PolicyArn: allResources.policy_user.Arn,
UserName: this.resourceName,
});
await this.iamClient.send(command);
}
conflicts(p) {
return false;
}
}
class PolicyRoleAttachmentHandler extends BaseHandler {
get resourceType() {
return 'policyRoleAttachment';
}
async collect() {
const command = new ListAttachedRolePoliciesCommand({
RoleName: this.resourceName,
MaxItems: 100,
});
const res = await this.iamClient.send(command);
return res.AttachedPolicies;
}
async create(allResources) {
const command = new AttachRolePolicyCommand({
PolicyArn: allResources.policy_role.Arn,
RoleName: this.resourceName,
});
await this.iamClient.send(command);
}
conflicts(p) {
return false;
}
}
class AccessKeyHandler extends BaseHandler {
get resourceType() {
return 'accessKey';
}
async collect() {
const command = new ListAccessKeysCommand({
UserName: this.resourceName,
MaxItems: 100,
});
const res = await this.iamClient.send(command);
return res.AccessKeyMetadata;
}
async create(allResources) {
const command = new CreateAccessKeyCommand({
UserName: this.resourceName,
});
const res = await this.iamClient.send(command);
return res.AccessKey;
}
conflicts(a) {
return false;
}
}
function collectResource(v, done) {
v.collect()
.then(res => done(null, res))
.catch(err => {
if (err instanceof NoSuchEntityException) {
return done(null, null);
}
done(err);
});
}
function collectResourcesFromHandlers(handlers, cb) {
const tasks = handlers.reduce((acc, v) => ({
[v.fqResourceType]: done => collectResource(v, done),
...acc,
}), {});
async.parallel(tasks, cb);
}
function buildServiceUserForCrossAccountAssumeRoleHandlers(serviceName, client, log) {
return [
new UserHandler(serviceName, client, log),
new PolicyHandler(serviceName, client, log, {
name: 'user',
policy: generateUserAssumeRolePolicyDocument(serviceName, '*'),
}),
new PolicyUserAttachmentHandler(serviceName, client, log),
new AccessKeyHandler(serviceName, client, log),
];
}
function buildServiceUserForInAccountAssumeRoleHandlers(serviceName, policy, iamClient, stsClient, log) {
return [
// try permission policy first so that the waterfall
// fails early if it contains forbidden actions
new PolicyHandler(serviceName, iamClient, log, {
policy,
name: 'role',
}),
new UserHandler(serviceName, iamClient, log),
new PolicyHandler(serviceName, iamClient, log, {
stsClient,
name: 'user',
constrainToThisAccount: true,
}),
new PolicyUserAttachmentHandler(serviceName, iamClient, log),
new RoleHandler(serviceName, iamClient, log),
new PolicyRoleAttachmentHandler(serviceName, iamClient, log),
new AccessKeyHandler(serviceName, iamClient, log),
];
}
function apply(iamClient, stsClient, serviceName, policyFile, log, cb) {
let handlers;
if (policyFile) {
const policyStr = fs.readFileSync(policyFile);
const policy = JSON.parse(policyStr);
handlers = buildServiceUserForInAccountAssumeRoleHandlers(serviceName, policy, iamClient, stsClient, log);
} else {
handlers = buildServiceUserForCrossAccountAssumeRoleHandlers(serviceName, iamClient, log);
}
async.waterfall([
done => collectResourcesFromHandlers(handlers, done),
...handlers.map(h => h.applyWaterfall.bind(h)),
(values, done) => done(null, values.accessKey),
], cb);
}
function wrapAction(actionFunc, serviceName, _, cmd) {
const options = cmd.optsWithGlobals();
werelogs.configure({
level: options.logLevel,
dump: options.logDumpLevel,
});
const log = new werelogs.Logger(process.argv[1]).newRequestLogger();
const iamClient = createIAMClient(options);
const stsClient = createSTSClient(options);
actionFunc(iamClient, stsClient, serviceName, options.policy, log, (err, data) => {
if (err) {
log.error('failed', {
data,
error: errorUtils.reshapeExceptionError(err),
});
if (err.EntityAlreadyExists) {
log.error(`run "${process.argv[1]} purge ${serviceName}" to fix.`);
}
process.exit(1);
}
log.info('success', { data });
process.exit();
});
}
program.version(version);
program
.option('--iam-endpoint <url>', 'IAM endpoint', 'http://localhost:8600')
.option('--sts-endpoint <url>', 'STS endpoint', 'http://localhost:8800')
.option('--region <region>', 'AWS region', 'us-east-1')
.option('--log-level <level>', 'log level', 'info')
.option('--log-dump-level <level>', 'log level that triggers a dump of the debug buffer', 'error');
program
.command('apply <service-name>')
.option('-p, --policy <policy-file.json>', 'Create a policy using the provided document' +
' and attach it to a role that the service user is allowed to assume, instead' +
' of only allowing the user to assume one (seeded) role named <service-name> in all accounts.')
.action(wrapAction.bind(null, apply));
const validCommands = program.commands.map(n => n._name);
// Is the command given invalid or are there too few arguments passed
if (!validCommands.includes(process.argv[2])) {
program.outputHelp();
process.stdout.write('\n');
process.exit(1);
} else {
program.parse(process.argv);
}