forked from Fantom-foundation/substate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubstate.go
More file actions
437 lines (369 loc) · 9.76 KB
/
Copy pathsubstate.go
File metadata and controls
437 lines (369 loc) · 9.76 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
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
package substate
import (
"bytes"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
)
// SubstateAccount is modification of GenesisAccount in core/genesis.go
// Deprecated: This type is getting deleted, use Account instead
type SubstateAccount struct {
Nonce uint64
Balance *big.Int
Storage map[common.Hash]common.Hash
Code []byte
}
// Deprecated: This type is getting deleted, use NewAccount instead
func NewSubstateAccount(nonce uint64, balance *big.Int, code []byte) *SubstateAccount {
return &SubstateAccount{
Nonce: nonce,
Balance: new(big.Int).Set(balance),
Storage: make(map[common.Hash]common.Hash),
Code: code,
}
}
// Deprecated: Use NewAccount
// This type is getting deleted, please check Account
func (x *SubstateAccount) Equal(y *SubstateAccount) bool {
if x == y {
return true
}
if (x == nil || y == nil) && x != y {
return false
}
equal := (x.Nonce == y.Nonce &&
x.Balance.Cmp(y.Balance) == 0 &&
bytes.Equal(x.Code, y.Code) &&
len(x.Storage) == len(y.Storage))
if !equal {
return false
}
for k, xv := range x.Storage {
yv, exist := y.Storage[k]
if !(exist && xv == yv) {
return false
}
}
return true
}
// Deprecated: Use NewAccount
// This type is getting deleted, please check Account
func (sa *SubstateAccount) Copy() *SubstateAccount {
saCopy := NewSubstateAccount(sa.Nonce, sa.Balance, sa.Code)
for key, value := range sa.Storage {
saCopy.Storage[key] = value
}
return saCopy
}
func (sa *SubstateAccount) CodeHash() common.Hash {
return crypto.Keccak256Hash(sa.Code)
}
type SubstateAlloc map[common.Address]*SubstateAccount
// EstinateIncrementalSize returns estimated substate size increase after merge
func (x SubstateAlloc) EstimateIncrementalSize(y SubstateAlloc) uint64 {
var (
size uint64 = 0
sizeOfAddress uint64 = 20
sizeOfHash uint64 = 32
sizeOfNonce uint64 = 8
)
for addr, account := range y {
if xaccount, found := x[addr]; found {
// skip if no diff
if xaccount.Equal(account) {
continue
}
// update storage by y
for key, _ := range account.Storage {
// only add new storage keys
if _, found := x[addr].Storage[key]; !found {
size += sizeOfHash // add sizeof(common.Hash)
}
}
} else {
// add size of new accounts
// address + nonce + balance + codehash
size += sizeOfAddress + sizeOfNonce + uint64(len(account.Balance.Bytes())) + sizeOfHash
// storage slots * sizeof(common.Hash)
size += uint64(len(account.Storage)) * sizeOfHash
}
}
return size
}
func (x SubstateAlloc) Merge(y SubstateAlloc) {
for addr, account := range y {
if xaccount, found := x[addr]; found {
if xaccount.Equal(account) {
continue
}
// overwrite account details in x by y
x[addr].Nonce = account.Nonce
x[addr].Balance = new(big.Int).Set(account.Balance)
x[addr].Code = make([]byte, len(account.Code))
copy(x[addr].Code, account.Code)
} else {
// create new account details in x
x[addr] = NewSubstateAccount(account.Nonce, account.Balance, account.Code)
}
// update storage by y
for key, value := range account.Storage {
x[addr].Storage[key] = value
}
}
}
// Diff computes the difference set between two substate alloc (z = x\y).
// Note: Zero value and non-existing value are considered equal.
func (x SubstateAlloc) Diff(y SubstateAlloc) SubstateAlloc {
z := make(SubstateAlloc)
for addr, account := range x {
if yaccount, found := y[addr]; !found {
z[addr] = account.Copy()
} else {
if yaccount.Equal(account) {
continue
} else {
// check nonce, balance and code
equal := (account.Nonce == yaccount.Nonce &&
account.Balance.Cmp(yaccount.Balance) == 0 &&
bytes.Equal(account.Code, yaccount.Code))
if !equal {
z[addr] = NewSubstateAccount(account.Nonce, account.Balance, account.Code)
}
// check storage
for key, value := range account.Storage {
if yvalue, found := y[addr].Storage[key]; (!found && value != common.Hash{}) || yvalue != value {
// initialize if not exists.
if _, found := z[addr]; !found {
z[addr] = NewSubstateAccount(account.Nonce, account.Balance, account.Code)
}
z[addr].Storage[key] = value
}
}
}
}
}
return z
}
func (x SubstateAlloc) Equal(y SubstateAlloc) bool {
if len(x) != len(y) {
return false
}
for k, xv := range x {
yv, exist := y[k]
if !(exist && xv.Equal(yv)) {
return false
}
}
return true
}
type SubstateEnv struct {
Coinbase common.Address
Difficulty *big.Int
GasLimit uint64
Number uint64
Timestamp uint64
BlockHashes map[uint64]common.Hash
// London hard fork, EIP-1559
BaseFee *big.Int // nil if EIP-1559 is not activated
}
func NewSubstateEnv(b *types.Block, blockHashes map[uint64]common.Hash) *SubstateEnv {
var env = &SubstateEnv{}
env.Coinbase = b.Coinbase()
env.Difficulty = new(big.Int).Set(b.Difficulty())
env.GasLimit = b.GasLimit()
env.Number = b.NumberU64()
env.Timestamp = b.Time()
env.BlockHashes = make(map[uint64]common.Hash)
for num64, bhash := range blockHashes {
env.BlockHashes[num64] = bhash
}
env.BaseFee = b.BaseFee()
return env
}
func (x *SubstateEnv) Equal(y *SubstateEnv) bool {
if x == y {
return true
}
if (x == nil || y == nil) && x != y {
return false
}
equal := (x.Coinbase == y.Coinbase &&
x.Difficulty.Cmp(y.Difficulty) == 0 &&
x.GasLimit == y.GasLimit &&
x.Number == y.Number &&
x.Timestamp == y.Timestamp &&
len(x.BlockHashes) == len(y.BlockHashes) &&
x.BaseFee.Cmp(y.BaseFee) == 0)
if !equal {
return false
}
for k, xv := range x.BlockHashes {
yv, exist := y.BlockHashes[k]
if !(exist && xv == yv) {
return false
}
}
return true
}
type SubstateMessage struct {
Nonce uint64
CheckNonce bool // inversion of IsFake
GasPrice *big.Int
Gas uint64
From common.Address
To *common.Address // nil means contract creation
Value *big.Int
Data []byte
// for memoization
dataHash *common.Hash
// Berlin hard fork, EIP-2930: Optional access lists
AccessList types.AccessList // nil if EIP-2930 is not activated
// London hard fork, EIP-1559: Fee market
GasFeeCap *big.Int // GasPrice if EIP-1559 is not activated
GasTipCap *big.Int // GasPrice if EIP-1559 is not activated
}
func NewSubstateMessage(msg *types.Message) *SubstateMessage {
var smsg = &SubstateMessage{}
smsg.Nonce = msg.Nonce()
smsg.CheckNonce = !msg.IsFake()
smsg.GasPrice = msg.GasPrice()
smsg.Gas = msg.Gas()
smsg.From = msg.From()
smsg.To = msg.To()
smsg.Value = msg.Value()
smsg.Data = msg.Data()
smsg.AccessList = msg.AccessList()
smsg.GasFeeCap = msg.GasFeeCap()
smsg.GasTipCap = msg.GasTipCap()
return smsg
}
func (x *SubstateMessage) Equal(y *SubstateMessage) bool {
if x == y {
return true
}
if (x == nil || y == nil) && x != y {
return false
}
equal := (x.Nonce == y.Nonce &&
x.CheckNonce == y.CheckNonce &&
x.GasPrice.Cmp(y.GasPrice) == 0 &&
x.Gas == y.Gas &&
x.From == y.From &&
(x.To == y.To || (x.To != nil && y.To != nil && *x.To == *y.To)) &&
x.Value.Cmp(y.Value) == 0 &&
bytes.Equal(x.Data, y.Data) &&
len(x.AccessList) == len(y.AccessList) &&
x.GasFeeCap.Cmp(y.GasFeeCap) == 0 &&
x.GasTipCap.Cmp(y.GasTipCap) == 0)
if !equal {
return false
}
for i, xa := range x.AccessList {
ya := y.AccessList[i]
equal := (xa.Address == ya.Address &&
len(xa.StorageKeys) == len(ya.StorageKeys))
if !equal {
return false
}
for j, xk := range xa.StorageKeys {
yk := ya.StorageKeys[j]
if xk != yk {
return false
}
}
}
return true
}
func (msg *SubstateMessage) DataHash() common.Hash {
if msg.dataHash == nil {
dataHash := crypto.Keccak256Hash(msg.Data)
msg.dataHash = &dataHash
}
return *msg.dataHash
}
func (msg *SubstateMessage) AsMessage() types.Message {
return types.NewMessage(
msg.From, msg.To, msg.Nonce, msg.Value,
msg.Gas, msg.GasPrice, msg.GasFeeCap, msg.GasTipCap,
msg.Data, msg.AccessList, !msg.CheckNonce)
}
// modification of types.Receipt
type SubstateResult struct {
Status uint64
Bloom types.Bloom
Logs []*types.Log
ContractAddress common.Address
GasUsed uint64
}
func NewSubstateResult(receipt *types.Receipt) *SubstateResult {
var sr = &SubstateResult{}
sr.Status = receipt.Status
sr.Bloom = receipt.Bloom
sr.Logs = receipt.Logs
sr.ContractAddress = receipt.ContractAddress
sr.GasUsed = receipt.GasUsed
return sr
}
func (x *SubstateResult) Equal(y *SubstateResult) bool {
if x == y {
return true
}
if (x == nil || y == nil) && x != y {
return false
}
equal := (x.Status == y.Status &&
x.Bloom == y.Bloom &&
len(x.Logs) == len(y.Logs) &&
x.ContractAddress == y.ContractAddress &&
x.GasUsed == y.GasUsed)
if !equal {
return false
}
for i, xl := range x.Logs {
yl := y.Logs[i]
equal := (xl.Address == yl.Address &&
len(xl.Topics) == len(yl.Topics) &&
bytes.Equal(xl.Data, yl.Data))
if !equal {
return false
}
for i, xt := range xl.Topics {
yt := yl.Topics[i]
if xt != yt {
return false
}
}
}
return true
}
type Substate struct {
InputAlloc SubstateAlloc
OutputAlloc SubstateAlloc
Env *SubstateEnv
Message *SubstateMessage
Result *SubstateResult
}
func NewSubstate(inputAlloc SubstateAlloc, outputAlloc SubstateAlloc, env *SubstateEnv, message *SubstateMessage, result *SubstateResult) *Substate {
return &Substate{
InputAlloc: inputAlloc,
OutputAlloc: outputAlloc,
Env: env,
Message: message,
Result: result,
}
}
func (x *Substate) Equal(y *Substate) bool {
if x == y {
return true
}
if (x == nil || y == nil) && x != y {
return false
}
equal := (x.InputAlloc.Equal(y.InputAlloc) &&
x.OutputAlloc.Equal(y.OutputAlloc) &&
x.Env.Equal(y.Env) &&
x.Message.Equal(y.Message) &&
x.Result.Equal(y.Result))
return equal
}