-
Notifications
You must be signed in to change notification settings - Fork 0
/
B2_contracts_deploy.py
executable file
·284 lines (231 loc) · 7.22 KB
/
B2_contracts_deploy.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
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
###
# Copyright (c) 2024 Decentagram
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
###
import argparse
import base64
import json
import logging
import os
import sys
import time
import web3
from web3 import Web3
from web3.contract.contract import Contract
from typing import Tuple
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
ETH_DIR = os.path.abspath(os.path.join(THIS_DIR, 'Ethereum'))
REVOKER_DIR = os.path.abspath(os.path.join(THIS_DIR, 'Revoker'))
PUBSUB_OC_DIR = os.path.abspath(os.path.join(THIS_DIR, 'pubsub-onchain'))
PUBSUB_OC_BUILD_PUBSUB_DIR = os.path.join(PUBSUB_OC_DIR, 'build', 'PubSub')
REVOKER_OC_DIR = os.path.abspath(os.path.join(THIS_DIR, 'revoker-onchain'))
REVOKER_OC_BUILD_ENC_DIR = os.path.join(REVOKER_OC_DIR, 'build', 'EnclaveRevoker')
REVOKER_OC_BUILD_KEY_DIR = os.path.join(REVOKER_OC_DIR, 'build', 'KeyRevoker')
LIBS_DIR = os.path.abspath(os.path.join(THIS_DIR, 'libs'))
RA_OC_DIR = os.path.abspath(os.path.join(LIBS_DIR, 'ra-onchain'))
RA_OC_BUILD_CON_DIR = os.path.join(RA_OC_DIR, 'build', 'contracts')
RA_OC_BUILD_CERT_DIR = os.path.join(RA_OC_DIR, 'tests', 'certs')
PYHELPER2_DIR = os.path.abspath(os.path.join(LIBS_DIR, 'PyEthHelper2'))
sys.path.append(PYHELPER2_DIR)
from PyEthHelper import EthContractHelper
def _PemToDerCert(certPem: str) -> bytes:
# PEM to DER
certPem = certPem.strip()
certPem = certPem.removeprefix('-----BEGIN CERTIFICATE-----')
certPem = certPem.removesuffix('-----END CERTIFICATE-----')
certPem = certPem.replace('\n', '')
certPem = certPem.replace('\r', '')
der = base64.b64decode(certPem)
return der
def LoadIASRootCertDer() -> bytes:
with open(os.path.join(RA_OC_BUILD_CERT_DIR, 'CertIASRoot.pem'), 'r') as f:
certPem = f.read()
return _PemToDerCert(certPem)
def DeployAndLoadContract(
w3: web3.Web3,
privKey: str,
contractTuple: Tuple[str, str],
contractName: str,
arguments: list,
outInfo: dict,
) -> Contract:
contract = EthContractHelper.LoadContract(
w3=w3,
projConf=contractTuple,
contractName=contractName,
release=None, # use locally built contract
address=None, # deploy new contract
)
deployReceipt = EthContractHelper.DeployContract(
w3=w3,
contract=contract,
arguments=arguments,
privKey=privKey,
gas=None, # let web3 estimate
value=0,
confirmPrompt=False, # don't prompt for confirmation
)
contract = EthContractHelper.LoadContract(
w3=w3,
projConf=contractTuple,
contractName=contractName,
release=None, # use locally built contract
address=deployReceipt.contractAddress,
)
outInfo['address'] = deployReceipt.contractAddress
outInfo['blockNum'] = deployReceipt.blockNumber
outInfo['abi'] = contractTuple[0]
outInfo['bin'] = contractTuple[1]
outInfo['name'] = contractName
return contract
def DeployPubSubContract(
w3: web3.Web3,
privKey: str,
outInfo: dict,
) -> None:
outInfo['PubSub'] = {}
DeployAndLoadContract(
w3=w3,
privKey=privKey,
contractTuple=(
os.path.join(PUBSUB_OC_BUILD_PUBSUB_DIR, 'PubSubService' + '.abi'),
os.path.join(PUBSUB_OC_BUILD_PUBSUB_DIR, 'PubSubService' + '.bin'),
),
contractName='PubSubService',
arguments=[ ],
outInfo=outInfo['PubSub'],
)
def DeployIASRootCertMgr(
w3: web3.Web3,
privKey: str,
outInfo: dict,
) -> None:
outInfo['IASRootCertMgr'] = {}
DeployAndLoadContract(
w3=w3,
privKey=privKey,
contractTuple=(
os.path.join(RA_OC_BUILD_CON_DIR, 'IASRootCertMgr' + '.abi'),
os.path.join(RA_OC_BUILD_CON_DIR, 'IASRootCertMgr' + '.bin'),
),
contractName='IASRootCertMgr',
arguments=[ LoadIASRootCertDer() ],
outInfo=outInfo['IASRootCertMgr'],
)
def DeployIASReportCertMgr(
w3: web3.Web3,
privKey: str,
outInfo: dict,
iasRootAddr: str,
) -> None:
outInfo['IASReportCertMgr'] = {}
DeployAndLoadContract(
w3=w3,
privKey=privKey,
contractTuple=(
os.path.join(RA_OC_BUILD_CON_DIR, 'IASReportCertMgr' + '.abi'),
os.path.join(RA_OC_BUILD_CON_DIR, 'IASReportCertMgr' + '.bin'),
),
contractName='IASReportCertMgr',
arguments=[ iasRootAddr ],
outInfo=outInfo['IASReportCertMgr'],
)
def DeployDecentServerCertMgr(
w3: web3.Web3,
privKey: str,
outInfo: dict,
iasReportAddr: str,
) -> None:
outInfo['DecentServerCertMgr'] = {}
DeployAndLoadContract(
w3=w3,
privKey=privKey,
contractTuple=(
os.path.join(RA_OC_BUILD_CON_DIR, 'DecentServerCertMgr' + '.abi'),
os.path.join(RA_OC_BUILD_CON_DIR, 'DecentServerCertMgr' + '.bin'),
),
contractName='DecentServerCertMgr',
arguments=[ iasReportAddr ],
outInfo=outInfo['DecentServerCertMgr'],
)
def DeployEnclaveRevokerMsgContract(
w3: web3.Web3,
privKey: str,
outInfo: dict,
pubsubAddr: str,
decentSvrCertMgrAddr: str,
) -> None:
outInfo['EnclaveRevokerByConflictMsg'] = {}
DeployAndLoadContract(
w3=w3,
privKey=privKey,
contractTuple=(
os.path.join(REVOKER_OC_BUILD_ENC_DIR, 'RevokerByConflictMsg' + '.abi'),
os.path.join(REVOKER_OC_BUILD_ENC_DIR, 'RevokerByConflictMsg' + '.bin'),
),
contractName='RevokerByConflictMsg',
arguments=[ pubsubAddr, decentSvrCertMgrAddr ],
outInfo=outInfo['EnclaveRevokerByConflictMsg'],
)
def DeployEnclaveRevokerKeyContract(
w3: web3.Web3,
privKey: str,
outInfo: dict,
pubsubAddr: str,
decentSvrCertMgrAddr: str,
) -> None:
outInfo['EnclaveRevokerByLeakedKey'] = {}
DeployAndLoadContract(
w3=w3,
privKey=privKey,
contractTuple=(
os.path.join(REVOKER_OC_BUILD_ENC_DIR, 'RevokerByLeakedKey' + '.abi'),
os.path.join(REVOKER_OC_BUILD_ENC_DIR, 'RevokerByLeakedKey' + '.bin'),
),
contractName='RevokerByLeakedKey',
arguments=[ pubsubAddr, decentSvrCertMgrAddr ],
outInfo=outInfo['EnclaveRevokerByLeakedKey'],
)
def main() -> None:
logging.basicConfig(level=logging.INFO)
argParse = argparse.ArgumentParser()
argParse.add_argument(
'--geth-addr', '-g',
type=str, required=True, help='Address to Geth HTTP API',
)
argParse.add_argument(
'--key-file', '-k',
type=str, required=True, help='Path to file containing testnet keys',
)
args = argParse.parse_args()
outInfo = {}
w3 = Web3(Web3.HTTPProvider(args.geth_addr))
while not w3.is_connected():
print('Attempting to connect to Geth Client...')
time.sleep(1)
print('Connected to Geth Client')
privKey = EthContractHelper.SetupSendingAccount(
w3=w3,
account=0, # use account 0
keyJson=args.key_file,
)
DeployPubSubContract(w3=w3, privKey=privKey, outInfo=outInfo)
DeployIASRootCertMgr(w3=w3, privKey=privKey, outInfo=outInfo)
DeployIASReportCertMgr(w3=w3, privKey=privKey, outInfo=outInfo,
iasRootAddr=outInfo['IASRootCertMgr']['address'])
DeployDecentServerCertMgr(w3=w3, privKey=privKey, outInfo=outInfo,
iasReportAddr=outInfo['IASReportCertMgr']['address'])
DeployEnclaveRevokerMsgContract(w3=w3, privKey=privKey, outInfo=outInfo,
pubsubAddr=outInfo['PubSub']['address'],
decentSvrCertMgrAddr=outInfo['DecentServerCertMgr']['address'])
DeployEnclaveRevokerKeyContract(w3=w3, privKey=privKey, outInfo=outInfo,
pubsubAddr=outInfo['PubSub']['address'],
decentSvrCertMgrAddr=outInfo['DecentServerCertMgr']['address'])
with open(os.path.join(THIS_DIR, 'contract_deploy_info.json'), 'w') as outF:
json.dump(outInfo, outF, indent='\t')
if __name__ == '__main__':
exit(main())