-
Notifications
You must be signed in to change notification settings - Fork 17
/
provision_kms_keys.py
290 lines (242 loc) · 8.6 KB
/
provision_kms_keys.py
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
#! /usr/bin/python3
# This script will provision required keys for Nomad Agents.
# If keys have already been provisioned, it will fetch their details.
#
# Keys will be provisioned for each configured environment, currently staging and production.
#
# It requires the following dependencies:
# pip3 install boto3 tabulate asn1tools web3
#
# It requires AWS Credentials to be set in a way that is compatible with the AWS SDK:
# https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html
#
# The User must have access to the following APIs:
# kms:CreateAlias
# kms:CreateKey
# kms:DescribeKey
# kms:GetPublicKey
# kms:ListAliases
import boto3
import json
import logging
from tabulate import tabulate
import asn1tools
from web3.auto import w3
# Logging Config
logging.basicConfig(level=logging.DEBUG)
logging.getLogger('botocore').setLevel(logging.CRITICAL)
logging.getLogger('urllib3').setLevel(logging.CRITICAL)
logger = logging.getLogger("kms_provisioner")
logger.setLevel(logging.DEBUG)
# Agent Keys
agent_keys = {
"development": [
"watcher-signer",
"watcher-attestation",
"updater-signer",
"updater-attestation",
"processor-signer",
"relayer-signer",
"kathy-signer"
],
"staging": [
"watcher-signer",
"watcher-attestation",
"updater-signer",
"updater-attestation",
"processor-signer",
"relayer-signer",
"kathy-signer"
],
"production": [
"watcher-signer",
"watcher-attestation",
"updater-signer",
"updater-attestation",
"processor-signer",
"relayer-signer",
]
}
networks = {
"production": [
"ethereum",
"moonbeam",
"evmos",
"milkomeda-c1",
"xdai",
"polygonPOS",
"avalanche",
"binanceSmartChain",
"optimism",
"harmony",
"arbitrum",
"fantom",
"bobaL2",
"cronos",
"godwoken",
"moonriver",
"fuse",
"gather"
],
"development": [
"rinkeby",
"goerli",
"xdai",
"evmostestnet",
"neontestnet",
"optimism-kovan",
"arbitrum-rinkeby"
],
"staging": [
"rinkeby",
"goerli",
"xdai",
"evmostestnet",
"neontestnet",
"optimism-goerli",
"arbitrum-rinkeby",
"polygon-mumbai",
"bsc-testnet",
"arbitrum-testnet",
"optimism-testnet"
]
}
# nAgentKeys * nEnvironments
environments = [
#"development",
#"staging"
"production"
]
# AWS Region where we should provison keys
region = "us-west-2"
def get_kms_public_key(key_id: str) -> bytes:
client = boto3.client('kms', region_name=region)
logger.info(f"Fetching Public key for {key_id}")
response = client.get_public_key(
KeyId=key_id
)
return response['PublicKey']
def get_all_kms_aliases() -> list:
kms = boto3.client('kms', region_name=region)
truncated = True
aliases = list()
kwargs = { 'Limit': 100 }
while truncated:
response = kms.list_aliases(**kwargs)
aliases = aliases + response['Aliases']
truncated = response['Truncated']
kwargs['Marker'] = response['NextMarker'] if truncated else ""
return aliases
def calc_eth_address(pub_key) -> str:
SUBJECT_ASN = '''
Key DEFINITIONS ::= BEGIN
SubjectPublicKeyInfo ::= SEQUENCE {
algorithm AlgorithmIdentifier,
subjectPublicKey BIT STRING
}
AlgorithmIdentifier ::= SEQUENCE {
algorithm OBJECT IDENTIFIER,
parameters ANY DEFINED BY algorithm OPTIONAL
}
END
'''
key = asn1tools.compile_string(SUBJECT_ASN)
key_decoded = key.decode('SubjectPublicKeyInfo', pub_key)
pub_key_raw = key_decoded['subjectPublicKey'][0]
pub_key = pub_key_raw[1:len(pub_key_raw)]
# https://www.oreilly.com/library/view/mastering-ethereum/9781491971932/ch04.html
hex_address = w3.keccak(bytes(pub_key)).hex()
eth_address = '0x{}'.format(hex_address[-40:])
eth_checksum_addr = w3.toChecksumAddress(eth_address)
return eth_checksum_addr
def generate_kms_key(key_alias, description, environment, kms = boto3.client('kms', region_name=region)):
logger.info(f"No existing alias found for {key_alias}, creating new key")
key_response = kms.create_key(
Description=f'{description}',
KeyUsage='SIGN_VERIFY',
Origin='AWS_KMS',
BypassPolicyLockoutSafetyCheck=False,
CustomerMasterKeySpec="ECC_SECG_P256K1",
Tags=[
{
'TagKey': 'environment',
'TagValue': environment
},]
)
alias_response = kms.create_alias(
# The alias to create. Aliases must begin with 'alias/'.
AliasName=key_alias,
# The identifier of the CMK whose alias you are creating. You can use the key ID or the Amazon Resource Name (ARN) of the CMK.
TargetKeyId=key_response["KeyMetadata"]["KeyId"],
)
logger.debug(json.dumps(key_response, indent=2, default=str))
logger.debug(json.dumps(alias_response, indent=2, default=str))
key_id = key_response["KeyMetadata"]["KeyId"]
key_arn = key_response["KeyMetadata"]["Arn"]
key_description = key_response["KeyMetadata"]["Description"]
return {
"id": key_id,
"arn": key_arn,
"description": key_description
}
def fetch_kms_key(key_alias, kms = boto3.client('kms', region_name=region)):
key_response = kms.describe_key(
KeyId=key_alias,
)
key_id = key_response["KeyMetadata"]["KeyId"]
key_arn = key_response["KeyMetadata"]["Arn"]
key_description = key_response["KeyMetadata"]["Description"]
return {
"id": key_id,
"arn": key_arn,
"description": key_description
}
def main():
data_headers = ["Alias Name", "Region", "Key ID", "ARN", "Key Description", "Ethereum Address"]
data_rows = []
current_aliases = get_all_kms_aliases()
logger.debug(f"Fetched {len(current_aliases)} aliases from KMS")
logger.debug(json.dumps(current_aliases, indent=2, default=str))
for environment in environments:
# Generate Bank Keys
key_name = f"{environment}-bank"
key_alias = f"alias/{key_name}"
key_description = "{environment} bank"
existing_alias = next((alias for alias in current_aliases if alias["AliasName"] == key_alias), None)
metadata = None
if existing_alias == None:
metadata = generate_kms_key(key_alias, key_description, environment)
else:
logger.info(f"Existing alias for {key_name}, fetching key.")
metadata = fetch_kms_key(existing_alias["TargetKeyId"])
logger.debug(f"Key Id: {metadata['id']}")
logger.debug(f"Key Arn: {metadata['arn']}")
logger.debug(f"Key Description: {metadata['description']}")
# Get the Ethereum Address from the KMS CMK
public_key = get_kms_public_key(metadata['id'])
ethereum_address = calc_eth_address(public_key)
data_rows.append([f'alias/{key_name}', region, metadata['id'], metadata['arn'], key_description, ethereum_address])
# Generate Agent Keys
for network in networks[environment]:
for key in agent_keys[environment]:
key_name = f"{environment}-{network}-{key}"
key_alias = f"alias/{key_name}"
key_description = f"{environment} {network} {key}"
existing_alias = next((alias for alias in current_aliases if alias["AliasName"] == key_alias), None)
metadata = None
if existing_alias == None:
metadata = generate_kms_key(key_alias, key_description, environment)
else:
logger.info(f"Existing alias for {key_name}, fetching key.")
metadata = fetch_kms_key(existing_alias["TargetKeyId"])
logger.debug(f"Key Id: {metadata['id']}")
logger.debug(f"Key Arn: {metadata['arn']}")
logger.debug(f"Key Description: {metadata['description']}")
# Get the Ethereum Address from the KMS CMK
public_key = get_kms_public_key(metadata['id'])
ethereum_address = calc_eth_address(public_key)
data_rows.append([f'alias/{key_name}', region, metadata['id'], metadata['arn'], key_description, ethereum_address])
# Print out the results of the operation
print(tabulate(data_rows, data_headers, tablefmt="fancy_grid"))
if __name__ == '__main__':
main()