forked from 0xPolygon/polygon-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprecompiles.go
More file actions
241 lines (203 loc) · 7.34 KB
/
precompiles.go
File metadata and controls
241 lines (203 loc) · 7.34 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
package tester
import (
"crypto/ecdsa"
"encoding/binary"
"encoding/hex"
"fmt"
"math/big"
"math/rand"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
ethtypes "github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/rs/zerolog/log"
)
func GenerateECRecoverInput(privateKey *ecdsa.PrivateKey) []byte {
message := []byte("Test ecRecover")
messageHash := crypto.Keccak256Hash(message)
signature, err := crypto.Sign(messageHash.Bytes(), privateKey)
if err != nil {
panic(err)
}
// Prepare input data for ecRecover precompiled contract
inputData := make([]byte, 128)
copy(inputData[0:32], messageHash.Bytes())
copy(inputData[32:64], common.LeftPadBytes(signature[64:65], 32))
copy(inputData[64:96], common.LeftPadBytes(signature[0:32], 32))
copy(inputData[96:128], common.LeftPadBytes(signature[32:64], 32))
return inputData
}
func GenerateSHA256Input() []byte {
inputData := []byte("Test")
paddedInput := common.RightPadBytes(inputData, 32) // pad input to 32 bytes
return paddedInput
}
func GenerateRIPEMD160Input() []byte {
inputData := []byte("Test")
return inputData
}
func GenerateIdentityInput() []byte {
inputData := []byte("Test")
return inputData
}
func GenerateModExpInput() []byte {
base := big.NewInt(8)
exponent := big.NewInt(9)
modulus := big.NewInt(10)
bSize := len(base.Bytes())
eSize := len(exponent.Bytes())
mSize := len(modulus.Bytes())
inputData := append(
common.LeftPadBytes(big.NewInt(int64(bSize)).Bytes(), 32),
append(
common.LeftPadBytes(big.NewInt(int64(eSize)).Bytes(), 32),
append(
common.LeftPadBytes(big.NewInt(int64(mSize)).Bytes(), 32),
append(
common.LeftPadBytes(base.Bytes(), bSize),
append(
common.LeftPadBytes(exponent.Bytes(), eSize),
common.LeftPadBytes(modulus.Bytes(), mSize)...,
)...,
)...,
)...,
)...,
)
return inputData
}
func GenerateECAddInput() []byte {
x1 := big.NewInt(1)
y1 := big.NewInt(2)
x2 := big.NewInt(1)
y2 := big.NewInt(2)
// Convert the x and y coordinates to 32-byte arrays in big-endian format
x1Bytes := math.PaddedBigBytes(x1, 32)
y1Bytes := math.PaddedBigBytes(y1, 32)
x2Bytes := math.PaddedBigBytes(x2, 32)
y2Bytes := math.PaddedBigBytes(y2, 32)
inputData := append(append(append(x1Bytes, y1Bytes...), x2Bytes...), y2Bytes...)
return inputData
}
func GenerateECMulInput() []byte {
x1 := big.NewInt(1)
y1 := big.NewInt(2)
s := big.NewInt(2)
// Convert the x and y coordinates to 32-byte arrays in big-endian format
x1Bytes := math.PaddedBigBytes(x1, 32)
y1Bytes := math.PaddedBigBytes(y1, 32)
sBytes := math.PaddedBigBytes(s, 32)
inputData := append(append(x1Bytes, y1Bytes...), sBytes...)
return inputData
}
func GenerateECPairingInput() []byte {
x1 := "2cf44499d5d27bb186308b7af7af02ac5bc9eeb6a3d147c186b21fb1b76e18da"
y1 := "2c0f001f52110ccfe69108924926e45f0b0c868df0e7bde1fe16d3242dc715f6"
x2 := "1fb19bb476f6b9e44e2a32234da8212f61cd63919354bc06aef31e3cfaff3ebc"
y2 := "22606845ff186793914e03e21df544c34ffe2f2f3504de8a79d9159eca2d98d9"
x3 := "2bd368e28381e8eccb5fa81fc26cf3f048eea9abfdd85d7ed3ab3698d63e4f90"
y3 := "2fe02e47887507adf0ff1743cbac6ba291e66f59be6bd763950bb16041a0a85e"
x4 := "0000000000000000000000000000000000000000000000000000000000000001"
y4 := "30644e72e131a029b85045b68181585d97816a916871ca8d3c208c16d87cfd45"
x5 := "1971ff0471b09fa93caaf13cbf443c1aede09cc4328f5a62aad45f40ec133eb4"
y5 := "091058a3141822985733cbdddfed0fd8d6c104e9e9eff40bf5abfef9ab163bc7"
x6 := "2a23af9a5ce2ba2796c1f4e453a370eb0af8c212d9dc9acd8fc02c2e907baea2"
y6 := "23a8eb0b0996252cb548a4487da97b02422ebc0e834613f954de6c7e0afdc1fc"
inputHex := x1 + y1 + x2 + y2 + x3 + y3 + x4 + y4 + x5 + y5 + x6 + y6
inputData, err := hex.DecodeString(inputHex)
if err != nil {
panic(err)
}
return inputData
}
func GenerateBlake2FInput() []byte {
rounds := uint32(12)
h := [8]uint64{1, 2, 3, 4, 5, 6, 7, 8}
m := [16]uint64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}
t := [2]uint64{1, 2}
f := byte(1)
inputData := make([]byte, 213)
binary.BigEndian.PutUint32(inputData[0:4], rounds)
for i := 0; i < 8; i++ {
binary.LittleEndian.PutUint64(inputData[4+(i*8):4+((i+1)*8)], h[i])
}
for i := 0; i < 16; i++ {
binary.LittleEndian.PutUint64(inputData[68+(i*8):68+((i+1)*8)], m[i])
}
for i := 0; i < 2; i++ {
binary.LittleEndian.PutUint64(inputData[196+(i*8):196+((i+1)*8)], t[i])
}
inputData[212] = f
return inputData
}
func GenerateP256VerifyInput() []byte {
// Ethereum benchmark input for P256Verify
// https://github.com/ethereum/go-ethereum/pull/30043/files#diff-b8e213cc8b44bc7d5d5e727524d63e19dd0f21312713ce2471948d1f64db212cR404
ethBenchmarkInput := "4cee90eb86eaa050036147a12d49004b6b9c72bd725d39d4785011fe190f0b4da73bd4903f0ce3b639bbbf6e8e80d16931ff4bcf5993d58468e8fb19086e8cac36dbcd03009df8c59286b162af3bd7fcc0450c9aa81be5d10d312af6c66b1d604aebd3099c618202fcfe16ae7770b0c49ab5eadf74b754204a3bb6060e44eff37618b065f9832de4ca6ca971a7a1adc826d0f7c00181a5fb2ddf79ae00b4e10e"
inputData, err := hex.DecodeString(ethBenchmarkInput)
if err != nil {
panic(err)
}
return inputData
}
func CallPrecompiledContracts(address int, lt *LoadTester, opts *bind.TransactOpts, iterations uint64, privateKey *ecdsa.PrivateKey) (*ethtypes.Transaction, error) {
var inputData []byte
switch address {
case 1:
log.Trace().Str("method", "TestECRecover").Msg("Executing contract method")
inputData = GenerateECRecoverInput(privateKey)
return lt.TestECRecover(opts, inputData)
case 2:
log.Trace().Str("method", "TestSHA256").Msg("Executing contract method")
inputData = GenerateSHA256Input()
return lt.TestSHA256(opts, inputData)
case 3:
log.Trace().Str("method", "TestRipemd160").Msg("Executing contract method")
inputData = GenerateRIPEMD160Input()
return lt.TestRipemd160(opts, inputData)
case 4:
log.Trace().Str("method", "TestIdentity").Msg("Executing contract method")
inputData = GenerateIdentityInput()
return lt.TestIdentity(opts, inputData)
case 5:
log.Trace().Str("method", "TestModExp").Msg("Executing contract method")
inputData = GenerateModExpInput()
return lt.TestModExp(opts, inputData)
case 6:
log.Trace().Str("method", "TestECAdd").Msg("Executing contract method")
inputData = GenerateECAddInput()
return lt.TestECAdd(opts, inputData)
case 7:
log.Trace().Str("method", "TestECMul").Msg("Executing contract method")
inputData = GenerateECMulInput()
return lt.TestECMul(opts, inputData)
case 8:
log.Trace().Str("method", "TestECPairing").Msg("Executing contract method")
inputData = GenerateECPairingInput()
return lt.TestECPairing(opts, inputData)
case 9:
log.Trace().Str("method", "TestBlake2f").Msg("Executing contract method")
inputData = GenerateECPairingInput()
return lt.TestBlake2f(opts, inputData)
case 100:
log.Trace().Str("method", "TestP256Verify").Msg("Executing contract method")
inputData = GenerateP256VerifyInput()
return lt.TestP256Verify(opts, inputData)
}
return nil, fmt.Errorf("unrecognized precompiled address %d", address)
}
func GetRandomPrecompiledContractAddress() int {
codes := []int{
1,
2,
3,
4,
5,
// 6, // NOTE: ecAdd requires a lot of gas and buggy
// 7, // NOTE: ecMul requires a lot of gas and buggy
8,
9,
// 100, // P256Verify haven't been implemented on Ethereum yet
}
return codes[rand.Intn(len(codes))]
}