forked from aws/aws-encryption-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkms_mrk_discovery_keyring.ts
328 lines (306 loc) · 13.2 KB
/
kms_mrk_discovery_keyring.ts
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
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import {
DecryptionMaterial,
EncryptedDataKey,
EncryptionMaterial,
immutableClass,
Keyring,
KeyringTrace,
KeyringTraceFlag,
needs,
readOnlyProperty,
SupportedAlgorithmSuites,
Newable,
Catchable,
} from '@aws-crypto/material-management'
import {
constructArnInOtherRegion,
isMultiRegionAwsKmsArn,
parseAwsKmsKeyArn,
} from './arn_parsing'
import { decrypt, KMS_PROVIDER_ID } from './helpers'
import { AwsEsdkKMSInterface, RequiredDecryptResponse } from './kms_types'
export interface AwsKmsMrkAwareSymmetricDiscoveryKeyringInput<
Client extends AwsEsdkKMSInterface
> {
client: Client
discoveryFilter?: Readonly<{
accountIDs: readonly string[]
partition: string
}>
grantTokens?: string[]
}
export interface IAwsKmsMrkAwareSymmetricDiscoveryKeyring<
S extends SupportedAlgorithmSuites,
Client extends AwsEsdkKMSInterface
> extends Keyring<S> {
client: Client
clientRegion: string
discoveryFilter?: Readonly<{
accountIDs: readonly string[]
partition: string
}>
grantTokens?: string[]
_onEncrypt(material: EncryptionMaterial<S>): Promise<EncryptionMaterial<S>>
_onDecrypt(
material: DecryptionMaterial<S>,
encryptedDataKeys: EncryptedDataKey[]
): Promise<DecryptionMaterial<S>>
}
export interface AwsKmsMrkAwareSymmetricDiscoveryKeyringConstructible<
S extends SupportedAlgorithmSuites,
Client extends AwsEsdkKMSInterface
> {
new (
input: AwsKmsMrkAwareSymmetricDiscoveryKeyringInput<Client>
): IAwsKmsMrkAwareSymmetricDiscoveryKeyring<S, Client>
}
export function AwsKmsMrkAwareSymmetricDiscoveryKeyringClass<
S extends SupportedAlgorithmSuites,
Client extends AwsEsdkKMSInterface
>(
BaseKeyring: Newable<Keyring<S>>
): AwsKmsMrkAwareSymmetricDiscoveryKeyringConstructible<S, Client> {
class AwsKmsMrkAwareSymmetricDiscoveryKeyring
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.5
//# MUST implement that AWS Encryption SDK Keyring interface (../keyring-
//# interface.md#interface)
extends BaseKeyring
implements IAwsKmsMrkAwareSymmetricDiscoveryKeyring<S, Client>
{
public declare client: Client
public declare clientRegion: string
public declare grantTokens?: string[]
public declare discoveryFilter?: Readonly<{
accountIDs: readonly string[]
partition: string
}>
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.6
//# On initialization the caller MUST provide:
constructor({
client,
grantTokens,
discoveryFilter,
}: AwsKmsMrkAwareSymmetricDiscoveryKeyringInput<Client>) {
super()
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.6
//# The keyring MUST know what Region the AWS KMS client is in.
//
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.6
//# It
//# SHOULD obtain this information directly from the client as opposed to
//# having an additional parameter.
//
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.6
//# However if it can not, then it MUST
//# NOT create the client itself.
//
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.6
//# It SHOULD have a Region parameter and
//# SHOULD try to identify mismatched configurations.
//
// @ts-ignore the V3 client has set the config to protected
const clientRegion = client.config.region
needs(clientRegion, 'Client must be configured to a region.')
/* Precondition: The AwsKmsMrkAwareSymmetricDiscoveryKeyring Discovery filter *must* be able to match something.
* I am not going to wait to tell you
* that no CMK can match an empty account list.
* e.g. [], [''], '' are not valid.
*/
needs(
!discoveryFilter ||
(discoveryFilter.accountIDs &&
discoveryFilter.accountIDs.length &&
!!discoveryFilter.partition &&
discoveryFilter.accountIDs.every(
(a) => typeof a === 'string' && !!a
)),
'A discovery filter must be able to match something.'
)
readOnlyProperty(this, 'client', client)
readOnlyProperty(this, 'clientRegion', clientRegion)
readOnlyProperty(this, 'grantTokens', grantTokens)
readOnlyProperty(
this,
'discoveryFilter',
discoveryFilter
? Object.freeze({
...discoveryFilter,
accountIDs: Object.freeze(discoveryFilter.accountIDs),
})
: discoveryFilter
)
}
async _onEncrypt(): Promise<EncryptionMaterial<S>> {
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.7
//# This function MUST fail.
throw new Error(
'AwsKmsMrkAwareSymmetricDiscoveryKeyring cannot be used to encrypt'
)
}
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# OnDecrypt MUST take decryption materials (structures.md#decryption-
//# materials) and a list of encrypted data keys
//# (structures.md#encrypted-data-key) as input.
async _onDecrypt(
material: DecryptionMaterial<S>,
encryptedDataKeys: EncryptedDataKey[]
): Promise<DecryptionMaterial<S>> {
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# If the decryption materials (structures.md#decryption-materials)
//# already contained a valid plaintext data key OnDecrypt MUST
//# immediately return the unmodified decryption materials
//# (structures.md#decryption-materials).
if (material.hasValidKey()) return material
const { client, grantTokens, clientRegion } = this
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# The set of encrypted data keys MUST first be filtered to match this
//# keyring's configuration.
const decryptableEDKs = encryptedDataKeys.filter(filterEDKs(this))
const cmkErrors: Catchable[] = []
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# For each encrypted data key in the filtered set, one at a time, the
//# OnDecrypt MUST attempt to decrypt the data key.
for (const edk of decryptableEDKs) {
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# Otherwise it MUST
//# be the provider info.
let keyId = edk.providerInfo
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * "KeyId": If the provider info's resource type is "key" and its
//# resource is a multi-Region key then a new ARN MUST be created
//# where the region part MUST equal the AWS KMS client region and
//# every other part MUST equal the provider info.
const keyArn = parseAwsKmsKeyArn(edk.providerInfo)
needs(keyArn, 'Unexpected EDK ProviderInfo for AWS KMS EDK')
if (isMultiRegionAwsKmsArn(keyArn)) {
keyId = constructArnInOtherRegion(keyArn, clientRegion)
}
let dataKey: RequiredDecryptResponse | false = false
try {
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# When calling AWS KMS Decrypt
//# (https://docs.aws.amazon.com/kms/latest/APIReference/
//# API_Decrypt.html), the keyring MUST call with a request constructed
//# as follows:
dataKey = await decrypt(
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# To attempt to decrypt a particular encrypted data key
//# (structures.md#encrypted-data-key), OnDecrypt MUST call AWS KMS
//# Decrypt (https://docs.aws.amazon.com/kms/latest/APIReference/
//# API_Decrypt.html) with the configured AWS KMS client.
client,
{
providerId: edk.providerId,
providerInfo: keyId,
encryptedDataKey: edk.encryptedDataKey,
},
material.encryptionContext,
grantTokens
)
/* This should be impossible given that decrypt only returns false if the client supplier does
* or if the providerId is not "aws-kms", which we have already filtered out
*/
if (!dataKey) continue
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * The "KeyId" field in the response MUST equal the requested "KeyId"
needs(
dataKey.KeyId === keyId,
'KMS Decryption key does not match the requested key id.'
)
const flags =
KeyringTraceFlag.WRAPPING_KEY_DECRYPTED_DATA_KEY |
KeyringTraceFlag.WRAPPING_KEY_VERIFIED_ENC_CTX
const trace: KeyringTrace = {
keyNamespace: KMS_PROVIDER_ID,
keyName: dataKey.KeyId,
flags,
}
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * The length of the response's "Plaintext" MUST equal the key
//# derivation input length (algorithm-suites.md#key-derivation-input-
//# length) specified by the algorithm suite (algorithm-suites.md)
//# included in the input decryption materials
//# (structures.md#decryption-materials).
//
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# Since the response does satisfies these requirements then OnDecrypt
//# MUST do the following with the response:
//
// setUnencryptedDataKey will throw if the plaintext does not match the algorithm suite requirements.
material.setUnencryptedDataKey(dataKey.Plaintext, trace)
return material
} catch (e) {
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# If the response does not satisfies these requirements then an error
//# is collected and the next encrypted data key in the filtered set MUST
//# be attempted.
cmkErrors.push({ errPlus: e })
}
}
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# If OnDecrypt fails to successfully decrypt any encrypted data key
//# (structures.md#encrypted-data-key), then it MUST yield an error that
//# includes all collected errors.
needs(
material.hasValidKey(),
[
`Unable to decrypt data key${
!decryptableEDKs.length ? ': No EDKs supplied' : ''
}.`,
...cmkErrors.map((e, i) => `Error #${i + 1} \n${e.errPlus.stack}`),
].join('\n')
)
return material
}
}
immutableClass(AwsKmsMrkAwareSymmetricDiscoveryKeyring)
return AwsKmsMrkAwareSymmetricDiscoveryKeyring
}
function filterEDKs<
S extends SupportedAlgorithmSuites,
Client extends AwsEsdkKMSInterface
>({
discoveryFilter,
clientRegion,
}: IAwsKmsMrkAwareSymmetricDiscoveryKeyring<S, Client>) {
return function filter({ providerId, providerInfo }: EncryptedDataKey) {
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * Its provider ID MUST exactly match the value "aws-kms".
if (providerId !== KMS_PROVIDER_ID) return false
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * The provider info MUST be a valid AWS KMS ARN (aws-kms-key-
//# arn.md#a-valid-aws-kms-arn) with a resource type of "key" or
//# OnDecrypt MUST fail.
const edkArn = parseAwsKmsKeyArn(providerInfo)
needs(
edkArn && edkArn.ResourceType === 'key',
'Unexpected EDK ProviderInfo for AWS KMS EDK'
)
const {
AccountId: account,
Partition: partition,
Region: edkRegion,
} = edkArn
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * If the provider info is not identified as a multi-Region key (aws-
//# kms-key-arn.md#identifying-an-aws-kms-multi-region-key), then the
//# provider info's Region MUST match the AWS KMS client region.
if (!isMultiRegionAwsKmsArn(edkArn) && clientRegion !== edkRegion) {
return false
}
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * If a discovery filter is configured, its partition and the
//# provider info partition MUST match.
//
//= compliance/framework/aws-kms/aws-kms-mrk-aware-symmetric-region-discovery-keyring.txt#2.8
//# * If a discovery filter is configured, its set of accounts MUST
//# contain the provider info account.
return (
!discoveryFilter ||
(discoveryFilter.partition === partition &&
discoveryFilter.accountIDs.includes(account))
)
}
}