forked from ten-protocol/go-ten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mgmt_contract_lib.go
454 lines (384 loc) · 14.1 KB
/
mgmt_contract_lib.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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
package mgmtcontractlib
import (
"encoding/base64"
"fmt"
"math/big"
"strings"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ten-protocol/go-ten/contracts/generated/ManagementContract"
"github.com/ten-protocol/go-ten/contracts/generated/MessageBus"
"github.com/ten-protocol/go-ten/go/common"
"github.com/ten-protocol/go-ten/go/common/log"
"github.com/ten-protocol/go-ten/go/ethadapter"
gethcommon "github.com/ethereum/go-ethereum/common"
gethlog "github.com/ethereum/go-ethereum/log"
)
const methodBytesLen = 4
// MgmtContractLib provides methods for creating ethereum transactions by providing an L1Transaction, creating call
// messages for call requests, and converting ethereum transactions into L1Transactions.
type MgmtContractLib interface {
IsMock() bool
CreateRollup(t *ethadapter.L1RollupTx) types.TxData
CreateRequestSecret(tx *ethadapter.L1RequestSecretTx) types.TxData
CreateRespondSecret(tx *ethadapter.L1RespondSecretTx, verifyAttester bool) types.TxData
CreateInitializeSecret(tx *ethadapter.L1InitializeSecretTx) types.TxData
// DecodeTx receives a *types.Transaction and converts it to an common.L1Transaction
DecodeTx(tx *types.Transaction) ethadapter.L1Transaction
GetContractAddr() *gethcommon.Address
// The methods below are used to create call messages for mgmt contract data and unpack the responses
GetHostAddressesMsg() (ethereum.CallMsg, error)
DecodeHostAddressesResponse(callResponse []byte) ([]string, error)
SetImportantContractMsg(key string, address gethcommon.Address) (ethereum.CallMsg, error)
GetImportantContractKeysMsg() (ethereum.CallMsg, error)
DecodeImportantContractKeysResponse(callResponse []byte) ([]string, error)
GetImportantAddressCallMsg(key string) (ethereum.CallMsg, error)
DecodeImportantAddressResponse(callResponse []byte) (gethcommon.Address, error)
}
type contractLibImpl struct {
addr *gethcommon.Address
contractABI abi.ABI
logger gethlog.Logger
}
func NewMgmtContractLib(addr *gethcommon.Address, logger gethlog.Logger) MgmtContractLib {
contractABI, err := abi.JSON(strings.NewReader(MgmtContractABI))
if err != nil {
panic(err)
}
return &contractLibImpl{
addr: addr,
contractABI: contractABI,
logger: logger,
}
}
func (c *contractLibImpl) IsMock() bool {
return false
}
func (c *contractLibImpl) GetContractAddr() *gethcommon.Address {
return c.addr
}
func (c *contractLibImpl) DecodeTx(tx *types.Transaction) ethadapter.L1Transaction {
if tx.To() == nil || tx.To().Hex() != c.addr.Hex() || len(tx.Data()) == 0 {
return nil
}
method, err := c.contractABI.MethodById(tx.Data()[:methodBytesLen])
if err != nil {
panic(err)
}
contractCallData := map[string]interface{}{}
switch method.Name {
case AddRollupMethod:
if err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[4:]); err != nil {
panic(err)
}
callData, found := contractCallData["_rollupData"]
if !found {
panic("call data not found for rollupData")
}
rollup := Base64DecodeFromString(callData.(string))
return ðadapter.L1RollupTx{
Rollup: rollup,
}
case RespondSecretMethod:
return c.unpackRespondSecretTx(tx, method, contractCallData)
case RequestSecretMethod:
return c.unpackRequestSecretTx(tx, method, contractCallData)
case InitializeSecretMethod:
return c.unpackInitSecretTx(tx, method, contractCallData)
case SetImportantContractsMethod:
tx, err := c.unpackSetImportantContractsTx(tx, method, contractCallData)
if err != nil {
c.logger.Warn("could not unpack set important contracts tx", log.ErrKey, err)
return nil
}
return tx
}
return nil
}
func (c *contractLibImpl) CreateRollup(t *ethadapter.L1RollupTx) types.TxData {
decodedRollup, err := common.DecodeRollup(t.Rollup)
if err != nil {
panic(err)
}
encRollupData := base64EncodeToString(t.Rollup)
metaRollup := ManagementContract.StructsMetaRollup{
Hash: decodedRollup.Hash(),
Signature: decodedRollup.Header.Signature,
LastSequenceNumber: big.NewInt(int64(decodedRollup.Header.LastBatchSeqNo)),
}
crossChain := ManagementContract.StructsHeaderCrossChainData{
Messages: convertCrossChainMessages(decodedRollup.Header.CrossChainMessages),
}
data, err := c.contractABI.Pack(
AddRollupMethod,
metaRollup,
encRollupData,
crossChain,
)
if err != nil {
panic(err)
}
return &types.LegacyTx{
To: c.addr,
Data: data,
}
}
func (c *contractLibImpl) CreateRequestSecret(tx *ethadapter.L1RequestSecretTx) types.TxData {
data, err := c.contractABI.Pack(RequestSecretMethod, base64EncodeToString(tx.Attestation))
if err != nil {
panic(err)
}
return &types.LegacyTx{
To: c.addr,
Data: data,
}
}
func (c *contractLibImpl) CreateRespondSecret(tx *ethadapter.L1RespondSecretTx, verifyAttester bool) types.TxData {
data, err := c.contractABI.Pack(
RespondSecretMethod,
tx.AttesterID,
tx.RequesterID,
tx.AttesterSig,
tx.Secret,
verifyAttester,
)
if err != nil {
panic(err)
}
return &types.LegacyTx{
To: c.addr,
Data: data,
}
}
func (c *contractLibImpl) CreateInitializeSecret(tx *ethadapter.L1InitializeSecretTx) types.TxData {
data, err := c.contractABI.Pack(
InitializeSecretMethod,
tx.EnclaveID,
tx.InitialSecret,
base64EncodeToString(tx.Attestation),
)
if err != nil {
panic(err)
}
return &types.LegacyTx{
To: c.addr,
Data: data,
}
}
func (c *contractLibImpl) GetHostAddressesMsg() (ethereum.CallMsg, error) {
data, err := c.contractABI.Pack(GetHostAddressesMethod)
if err != nil {
return ethereum.CallMsg{}, fmt.Errorf("could not pack the call data. Cause: %w", err)
}
return ethereum.CallMsg{To: c.addr, Data: data}, nil
}
func (c *contractLibImpl) DecodeHostAddressesResponse(callResponse []byte) ([]string, error) {
unpackedResponse, err := c.contractABI.Unpack(GetHostAddressesMethod, callResponse)
if err != nil {
return nil, fmt.Errorf("could not unpack call response. Cause: %w", err)
}
// We expect the response to be a list containing one element, that element is a list of address strings
if len(unpackedResponse) != 1 {
return nil, fmt.Errorf("unexpected number of results (%d) returned from call, response: %s", len(unpackedResponse), unpackedResponse)
}
addresses, ok := unpackedResponse[0].([]string)
if !ok {
return nil, fmt.Errorf("could not convert element in call response to list of strings")
}
return addresses, nil
}
func (c *contractLibImpl) GetContractNamesMsg() (ethereum.CallMsg, error) {
data, err := c.contractABI.Pack(GetImportantContractKeysMethod)
if err != nil {
return ethereum.CallMsg{}, fmt.Errorf("could not pack the call data. Cause: %w", err)
}
return ethereum.CallMsg{To: c.addr, Data: data}, nil
}
func (c *contractLibImpl) DecodeContractNamesResponse(callResponse []byte) ([]string, error) {
unpackedResponse, err := c.contractABI.Unpack(GetImportantContractKeysMethod, callResponse)
if err != nil {
return nil, fmt.Errorf("could not unpack call response. Cause: %w", err)
}
// We expect the response to be a list containing one element, that element is a list of address strings
if len(unpackedResponse) != 1 {
return nil, fmt.Errorf("unexpected number of results (%d) returned from call, response: %s", len(unpackedResponse), unpackedResponse)
}
contractNames, ok := unpackedResponse[0].([]string)
if !ok {
return nil, fmt.Errorf("could not convert element in call response to list of strings")
}
return contractNames, nil
}
func (c *contractLibImpl) SetImportantContractMsg(key string, address gethcommon.Address) (ethereum.CallMsg, error) {
data, err := c.contractABI.Pack(SetImportantContractsMethod, key, address)
if err != nil {
return ethereum.CallMsg{}, fmt.Errorf("could not pack the call data. Cause: %w", err)
}
return ethereum.CallMsg{To: c.addr, Data: data}, nil
}
func (c *contractLibImpl) GetImportantContractKeysMsg() (ethereum.CallMsg, error) {
data, err := c.contractABI.Pack(GetImportantContractKeysMethod)
if err != nil {
return ethereum.CallMsg{}, fmt.Errorf("could not pack the call data. Cause: %w", err)
}
return ethereum.CallMsg{To: c.addr, Data: data}, nil
}
func (c *contractLibImpl) DecodeImportantContractKeysResponse(callResponse []byte) ([]string, error) {
unpackedResponse, err := c.contractABI.Unpack(GetImportantContractKeysMethod, callResponse)
if err != nil {
return nil, fmt.Errorf("could not unpack call response. Cause: %w", err)
}
// We expect the response to be a list containing one element, that element is a list of address strings
if len(unpackedResponse) != 1 {
return nil, fmt.Errorf("unexpected number of results (%d) returned from call, response: %s", len(unpackedResponse), unpackedResponse)
}
contractNames, ok := unpackedResponse[0].([]string)
if !ok {
return nil, fmt.Errorf("could not convert element in call response to list of strings")
}
return contractNames, nil
}
func (c *contractLibImpl) GetImportantAddressCallMsg(key string) (ethereum.CallMsg, error) {
data, err := c.contractABI.Pack(GetImportantAddressMethod, key)
if err != nil {
return ethereum.CallMsg{}, fmt.Errorf("could not pack the call data. Cause: %w", err)
}
return ethereum.CallMsg{To: c.addr, Data: data}, nil
}
func (c *contractLibImpl) DecodeImportantAddressResponse(callResponse []byte) (gethcommon.Address, error) {
unpackedResponse, err := c.contractABI.Unpack(GetImportantAddressMethod, callResponse)
if err != nil {
return gethcommon.Address{}, fmt.Errorf("could not unpack call response. Cause: %w", err)
}
// We expect the response to be a list containing one element, that element is a list of address strings
if len(unpackedResponse) != 1 {
return gethcommon.Address{}, fmt.Errorf("unexpected number of results (%d) returned from call, response: %s", len(unpackedResponse), unpackedResponse)
}
address, ok := unpackedResponse[0].(gethcommon.Address)
if !ok {
return gethcommon.Address{}, fmt.Errorf("could not convert element in call response to list of strings")
}
return address, nil
}
func (c *contractLibImpl) unpackInitSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *ethadapter.L1InitializeSecretTx {
err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:])
if err != nil {
panic(err)
}
callData, found := contractCallData["_genesisAttestation"]
if !found {
panic("call data not found for requestReport")
}
att := Base64DecodeFromString(callData.(string))
if err != nil {
c.logger.Crit("could not decode genesis attestation request.", log.ErrKey, err)
}
// todo (#1275) - add the other fields
return ðadapter.L1InitializeSecretTx{
Attestation: att,
}
}
func (c *contractLibImpl) unpackRequestSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *ethadapter.L1RequestSecretTx {
err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:])
if err != nil {
panic(err)
}
callData, found := contractCallData["requestReport"]
if !found {
panic("call data not found for requestReport")
}
att := Base64DecodeFromString(callData.(string))
if err != nil {
c.logger.Crit("could not decode attestation request.", log.ErrKey, err)
}
return ðadapter.L1RequestSecretTx{
Attestation: att,
}
}
func (c *contractLibImpl) unpackRespondSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *ethadapter.L1RespondSecretTx {
err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:])
if err != nil {
c.logger.Crit("could not unpack transaction.", log.ErrKey, err)
}
requesterData, found := contractCallData["requesterID"]
if !found {
c.logger.Crit("call data not found for requesterID")
}
requesterAddr, ok := requesterData.(gethcommon.Address)
if !ok {
c.logger.Crit("could not decode requester data")
}
attesterData, found := contractCallData["attesterID"]
if !found {
c.logger.Crit("call data not found for attesterID")
}
attesterAddr, ok := attesterData.(gethcommon.Address)
if !ok {
c.logger.Crit("could not decode attester data")
}
responseSecretData, found := contractCallData["responseSecret"]
if !found {
c.logger.Crit("call data not found for responseSecret")
}
responseSecretBytes, ok := responseSecretData.([]uint8)
if !ok {
c.logger.Crit("could not decode responseSecret data")
}
return ðadapter.L1RespondSecretTx{
AttesterID: attesterAddr,
RequesterID: requesterAddr,
Secret: responseSecretBytes[:],
}
}
func (c *contractLibImpl) unpackSetImportantContractsTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) (*ethadapter.L1SetImportantContractsTx, error) {
err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:])
if err != nil {
return nil, fmt.Errorf("could not unpack transaction. Cause: %w", err)
}
keyData, found := contractCallData["key"]
if !found {
return nil, fmt.Errorf("call data not found for key")
}
keyString, ok := keyData.(string)
if !ok {
return nil, fmt.Errorf("could not decode key data")
}
contractAddressData, found := contractCallData["newAddress"]
if !found {
return nil, fmt.Errorf("call data not found for newAddress")
}
contractAddress, ok := contractAddressData.(gethcommon.Address)
if !ok {
return nil, fmt.Errorf("could not decode newAddress data")
}
return ðadapter.L1SetImportantContractsTx{
Key: keyString,
NewAddress: contractAddress,
}, nil
}
// base64EncodeToString encodes a byte array to a string
func base64EncodeToString(bytes []byte) string {
return base64.StdEncoding.EncodeToString(bytes)
}
// Base64DecodeFromString decodes a string to a byte array
func Base64DecodeFromString(in string) []byte {
bytesStr, err := base64.StdEncoding.DecodeString(in)
if err != nil {
panic(err)
}
return bytesStr
}
func convertCrossChainMessages(messages []MessageBus.StructsCrossChainMessage) []ManagementContract.StructsCrossChainMessage {
msgs := make([]ManagementContract.StructsCrossChainMessage, 0)
for _, message := range messages {
msgs = append(msgs, ManagementContract.StructsCrossChainMessage{
Sender: message.Sender,
Sequence: message.Sequence,
Nonce: message.Nonce,
Topic: message.Topic,
Payload: message.Payload,
})
}
return msgs
}