-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy pathblock_processor.go
542 lines (471 loc) · 18.9 KB
/
block_processor.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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
// Copyright 2021-2024, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
package arbos
import (
"encoding/binary"
"errors"
"fmt"
"math"
"math/big"
"github.com/ethereum/go-ethereum/arbitrum_types"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/trie"
"github.com/offchainlabs/nitro/arbos/arbosState"
"github.com/offchainlabs/nitro/arbos/arbostypes"
"github.com/offchainlabs/nitro/arbos/l2pricing"
"github.com/offchainlabs/nitro/arbos/util"
"github.com/offchainlabs/nitro/util/arbmath"
)
// set by the precompile module, to avoid a package dependence cycle
var ArbRetryableTxAddress common.Address
var ArbSysAddress common.Address
var InternalTxStartBlockMethodID [4]byte
var InternalTxBatchPostingReportMethodID [4]byte
var RedeemScheduledEventID common.Hash
var L2ToL1TransactionEventID common.Hash
var L2ToL1TxEventID common.Hash
var EmitReedeemScheduledEvent func(*vm.EVM, uint64, uint64, [32]byte, [32]byte, common.Address, *big.Int, *big.Int) error
var EmitTicketCreatedEvent func(*vm.EVM, [32]byte) error
// A helper struct that implements String() by marshalling to JSON.
// This is useful for logging because it's lazy, so if the log level is too high to print the transaction,
// it doesn't waste compute marshalling the transaction when the result wouldn't be used.
type printTxAsJson struct {
tx *types.Transaction
}
func (p printTxAsJson) String() string {
json, err := p.tx.MarshalJSON()
if err != nil {
return fmt.Sprintf("[error marshalling tx: %v]", err)
}
return string(json)
}
type L1Info struct {
poster common.Address
l1BlockNumber uint64
l1Timestamp uint64
}
func (info *L1Info) Equals(o *L1Info) bool {
return info.poster == o.poster && info.l1BlockNumber == o.l1BlockNumber && info.l1Timestamp == o.l1Timestamp
}
func (info *L1Info) L1BlockNumber() uint64 {
return info.l1BlockNumber
}
func createNewHeader(prevHeader *types.Header, l1info *L1Info, state *arbosState.ArbosState, chainConfig *params.ChainConfig) *types.Header {
l2Pricing := state.L2PricingState()
baseFee, err := l2Pricing.BaseFeeWei()
state.Restrict(err)
var lastBlockHash common.Hash
blockNumber := big.NewInt(0)
timestamp := uint64(0)
coinbase := common.Address{}
if l1info != nil {
timestamp = l1info.l1Timestamp
coinbase = l1info.poster
}
extra := common.Hash{}.Bytes()
mixDigest := common.Hash{}
if prevHeader != nil {
lastBlockHash = prevHeader.Hash()
blockNumber.Add(prevHeader.Number, big.NewInt(1))
if timestamp < prevHeader.Time {
timestamp = prevHeader.Time
}
copy(extra, prevHeader.Extra)
mixDigest = prevHeader.MixDigest
}
header := &types.Header{
ParentHash: lastBlockHash,
UncleHash: types.EmptyUncleHash, // Post-merge Ethereum will require this to be types.EmptyUncleHash
Coinbase: coinbase,
Root: [32]byte{}, // Filled in later
TxHash: [32]byte{}, // Filled in later
ReceiptHash: [32]byte{}, // Filled in later
Bloom: [256]byte{}, // Filled in later
Difficulty: big.NewInt(1), // Eventually, Ethereum plans to require this to be zero
Number: blockNumber,
GasLimit: l2pricing.GethBlockGasLimit,
GasUsed: 0,
Time: timestamp,
Extra: extra, // used by NewEVMBlockContext
MixDigest: mixDigest, // used by NewEVMBlockContext
Nonce: [8]byte{}, // Filled in later; post-merge Ethereum will require this to be zero
BaseFee: baseFee,
}
return header
}
type ConditionalOptionsForTx []*arbitrum_types.ConditionalOptions
type SequencingHooks struct {
TxErrors []error // This can be unset
DiscardInvalidTxsEarly bool // This can be unset
PreTxFilter func(*params.ChainConfig, *types.Header, *state.StateDB, *arbosState.ArbosState, *types.Transaction, *arbitrum_types.ConditionalOptions, common.Address, *L1Info) error // This has to be set
PostTxFilter func(*types.Header, *state.StateDB, *arbosState.ArbosState, *types.Transaction, common.Address, uint64, *core.ExecutionResult) error // This has to be set
BlockFilter func(*types.Header, *state.StateDB, types.Transactions, types.Receipts) error // This can be unset
ConditionalOptionsForTx []*arbitrum_types.ConditionalOptions // This can be unset
}
func NoopSequencingHooks() *SequencingHooks {
return &SequencingHooks{
[]error{},
false,
func(*params.ChainConfig, *types.Header, *state.StateDB, *arbosState.ArbosState, *types.Transaction, *arbitrum_types.ConditionalOptions, common.Address, *L1Info) error {
return nil
},
func(*types.Header, *state.StateDB, *arbosState.ArbosState, *types.Transaction, common.Address, uint64, *core.ExecutionResult) error {
return nil
},
nil,
nil,
}
}
func ProduceBlock(
message *arbostypes.L1IncomingMessage,
delayedMessagesRead uint64,
lastBlockHeader *types.Header,
statedb *state.StateDB,
chainContext core.ChainContext,
isMsgForPrefetch bool,
runMode core.MessageRunMode,
) (*types.Block, types.Receipts, error) {
chainConfig := chainContext.Config()
txes, err := ParseL2Transactions(message, chainConfig.ChainID)
if err != nil {
log.Warn("error parsing incoming message", "err", err)
txes = types.Transactions{}
}
hooks := NoopSequencingHooks()
return ProduceBlockAdvanced(
message.Header, txes, delayedMessagesRead, lastBlockHeader, statedb, chainContext, hooks, isMsgForPrefetch, runMode,
)
}
// A bit more flexible than ProduceBlock for use in the sequencer.
func ProduceBlockAdvanced(
l1Header *arbostypes.L1IncomingMessageHeader,
txes types.Transactions,
delayedMessagesRead uint64,
lastBlockHeader *types.Header,
statedb *state.StateDB,
chainContext core.ChainContext,
sequencingHooks *SequencingHooks,
isMsgForPrefetch bool,
runMode core.MessageRunMode,
) (*types.Block, types.Receipts, error) {
arbState, err := arbosState.OpenSystemArbosState(statedb, nil, true)
if err != nil {
return nil, nil, err
}
if statedb.GetUnexpectedBalanceDelta().BitLen() != 0 {
return nil, nil, errors.New("ProduceBlock called with dirty StateDB (non-zero unexpected balance delta)")
}
poster := l1Header.Poster
l1Info := &L1Info{
poster: poster,
l1BlockNumber: l1Header.BlockNumber,
l1Timestamp: l1Header.Timestamp,
}
chainConfig := chainContext.Config()
header := createNewHeader(lastBlockHeader, l1Info, arbState, chainConfig)
// Note: blockGasLeft will diverge from the actual gas left during execution in the event of invalid txs,
// but it's only used as block-local representation limiting the amount of work done in a block.
blockGasLeft, _ := arbState.L2PricingState().PerBlockGasLimit()
l1BlockNum := l1Info.l1BlockNumber
// Prepend a tx before all others to touch up the state (update the L1 block num, pricing pools, etc)
startTx := InternalTxStartBlock(chainConfig.ChainID, l1Header.L1BaseFee, l1BlockNum, header, lastBlockHeader)
txes = append(types.Transactions{types.NewTx(startTx)}, txes...)
complete := types.Transactions{}
receipts := types.Receipts{}
basefee := header.BaseFee
time := header.Time
expectedBalanceDelta := new(big.Int)
redeems := types.Transactions{}
userTxsProcessed := 0
// We'll check that the block can fit each message, so this pool is set to not run out
gethGas := core.GasPool(l2pricing.GethBlockGasLimit)
for len(txes) > 0 || len(redeems) > 0 {
// repeatedly process the next tx, doing redeems created along the way in FIFO order
var tx *types.Transaction
var options *arbitrum_types.ConditionalOptions
hooks := NoopSequencingHooks()
isUserTx := false
if len(redeems) > 0 {
tx = redeems[0]
redeems = redeems[1:]
retry, ok := (tx.GetInner()).(*types.ArbitrumRetryTx)
if !ok {
return nil, nil, errors.New("retryable tx is somehow not a retryable")
}
retryable, _ := arbState.RetryableState().OpenRetryable(retry.TicketId, time)
if retryable == nil {
// retryable was already deleted
continue
}
} else {
tx = txes[0]
txes = txes[1:]
if tx.Type() != types.ArbitrumInternalTxType {
hooks = sequencingHooks // the sequencer has the ability to drop this tx
isUserTx = true
if len(hooks.ConditionalOptionsForTx) > 0 {
options = hooks.ConditionalOptionsForTx[0]
hooks.ConditionalOptionsForTx = hooks.ConditionalOptionsForTx[1:]
}
}
}
startRefund := statedb.GetRefund()
if startRefund != 0 {
return nil, nil, fmt.Errorf("at beginning of tx statedb has non-zero refund %v", startRefund)
}
var sender common.Address
var dataGas uint64 = 0
preTxHeaderGasUsed := header.GasUsed
signer := types.VersionedArbitrumSigner(chainConfig, header.Number, header.Time, arbState.ArbOSVersion())
receipt, result, err := (func() (*types.Receipt, *core.ExecutionResult, error) {
// If we've done too much work in this block, discard the tx as early as possible
if blockGasLeft < params.TxGas && isUserTx {
return nil, nil, core.ErrGasLimitReached
}
sender, err = signer.Sender(tx)
if err != nil {
return nil, nil, err
}
if err = hooks.PreTxFilter(chainConfig, header, statedb, arbState, tx, options, sender, l1Info); err != nil {
return nil, nil, err
}
// Additional pre-transaction validity check
if err = extraPreTxFilter(chainConfig, header, statedb, arbState, tx, options, sender, l1Info); err != nil {
return nil, nil, err
}
if basefee.Sign() > 0 {
dataGas = math.MaxUint64
brotliCompressionLevel, err := arbState.BrotliCompressionLevel()
if err != nil {
return nil, nil, fmt.Errorf("failed to get brotli compression level: %w", err)
}
posterCost, _ := arbState.L1PricingState().GetPosterInfo(tx, poster, brotliCompressionLevel)
posterCostInL2Gas := arbmath.BigDiv(posterCost, basefee)
if posterCostInL2Gas.IsUint64() {
dataGas = posterCostInL2Gas.Uint64()
} else {
log.Error("Could not get poster cost in L2 terms", "posterCost", posterCost, "basefee", basefee)
}
}
if dataGas > tx.Gas() {
// this txn is going to be rejected later
dataGas = tx.Gas()
}
computeGas := tx.Gas() - dataGas
if computeGas < params.TxGas {
if hooks.DiscardInvalidTxsEarly {
return nil, nil, core.ErrIntrinsicGas
}
// ensure at least TxGas is left in the pool before trying a state transition
computeGas = params.TxGas
}
if computeGas > blockGasLeft && isUserTx && userTxsProcessed > 0 {
return nil, nil, core.ErrGasLimitReached
}
snap := statedb.Snapshot()
statedb.SetTxContext(tx.Hash(), len(receipts)) // the number of successful state transitions
gasPool := gethGas
blockContext := core.NewEVMBlockContext(header, chainContext, &header.Coinbase)
evm := vm.NewEVM(blockContext, statedb, chainConfig, vm.Config{})
receipt, result, err := core.ApplyTransactionWithResultFilter(
evm,
&gasPool,
statedb,
header,
tx,
&header.GasUsed,
runMode,
func(result *core.ExecutionResult) error {
return hooks.PostTxFilter(header, statedb, arbState, tx, sender, dataGas, result)
},
)
if err != nil {
// Ignore this transaction if it's invalid under the state transition function
statedb.RevertToSnapshot(snap)
statedb.ClearTxFilter()
return nil, nil, err
}
// Additional post-transaction validity check
if err = extraPostTxFilter(chainConfig, header, statedb, arbState, tx, options, sender, l1Info, result); err != nil {
statedb.RevertToSnapshot(snap)
statedb.ClearTxFilter()
return nil, nil, err
}
return receipt, result, nil
})()
// append the err, even if it is nil
hooks.TxErrors = append(hooks.TxErrors, err)
if err != nil {
logLevel := log.Debug
if chainConfig.DebugMode() {
logLevel = log.Warn
}
if !isMsgForPrefetch {
logLevel("error applying transaction", "tx", printTxAsJson{tx}, "err", err)
}
if !hooks.DiscardInvalidTxsEarly {
// we'll still deduct a TxGas's worth from the block-local rate limiter even if the tx was invalid
blockGasLeft = arbmath.SaturatingUSub(blockGasLeft, params.TxGas)
if isUserTx {
userTxsProcessed++
}
}
continue
}
if tx.Type() == types.ArbitrumInternalTxType {
// ArbOS might have upgraded to a new version, so we need to refresh our state
arbState, err = arbosState.OpenSystemArbosState(statedb, nil, true)
if err != nil {
return nil, nil, err
}
// Update the ArbOS version in the header (if it changed)
extraInfo := types.DeserializeHeaderExtraInformation(header)
extraInfo.ArbOSFormatVersion = arbState.ArbOSVersion()
extraInfo.UpdateHeaderWithInfo(header)
}
if tx.Type() == types.ArbitrumInternalTxType && result.Err != nil {
return nil, nil, fmt.Errorf("failed to apply internal transaction: %w", result.Err)
}
if preTxHeaderGasUsed > header.GasUsed {
return nil, nil, fmt.Errorf("ApplyTransaction() used -%v gas", preTxHeaderGasUsed-header.GasUsed)
}
txGasUsed := header.GasUsed - preTxHeaderGasUsed
arbosVer := types.DeserializeHeaderExtraInformation(header).ArbOSFormatVersion
if arbosVer >= params.ArbosVersion_FixRedeemGas {
// subtract gas burned for future use
for _, scheduledTx := range result.ScheduledTxes {
switch inner := scheduledTx.GetInner().(type) {
case *types.ArbitrumRetryTx:
txGasUsed = arbmath.SaturatingUSub(txGasUsed, inner.Gas)
default:
log.Warn("Unexpected type of scheduled tx", "type", scheduledTx.Type())
}
}
}
// Update expectedTotalBalanceDelta (also done in logs loop)
switch txInner := tx.GetInner().(type) {
case *types.ArbitrumDepositTx:
// L1->L2 deposits add eth to the system
expectedBalanceDelta.Add(expectedBalanceDelta, txInner.Value)
case *types.ArbitrumSubmitRetryableTx:
// Retryable submission can include a deposit which adds eth to the system
expectedBalanceDelta.Add(expectedBalanceDelta, txInner.DepositValue)
}
computeUsed := txGasUsed - dataGas
if txGasUsed < dataGas {
log.Error("ApplyTransaction() used less gas than it should have", "delta", dataGas-txGasUsed)
computeUsed = params.TxGas
} else if computeUsed < params.TxGas {
computeUsed = params.TxGas
}
if txGasUsed > tx.Gas() {
return nil, nil, fmt.Errorf("ApplyTransaction() used %v more gas than it should have", txGasUsed-tx.Gas())
}
// append any scheduled redeems
redeems = append(redeems, result.ScheduledTxes...)
for _, txLog := range receipt.Logs {
if txLog.Address == ArbSysAddress {
// L2ToL1TransactionEventID is deprecated in upgrade 4, but it should to safe to make this code handle
// both events ignoring the version.
// TODO: Remove L2ToL1Transaction handling on next chain reset
// L2->L1 withdrawals remove eth from the system
switch txLog.Topics[0] {
case L2ToL1TransactionEventID:
event, err := util.ParseL2ToL1TransactionLog(txLog)
if err != nil {
log.Error("Failed to parse L2ToL1Transaction log", "err", err)
} else {
expectedBalanceDelta.Sub(expectedBalanceDelta, event.Callvalue)
}
case L2ToL1TxEventID:
event, err := util.ParseL2ToL1TxLog(txLog)
if err != nil {
log.Error("Failed to parse L2ToL1Tx log", "err", err)
} else {
expectedBalanceDelta.Sub(expectedBalanceDelta, event.Callvalue)
}
}
}
}
blockGasLeft = arbmath.SaturatingUSub(blockGasLeft, computeUsed)
complete = append(complete, tx)
receipts = append(receipts, receipt)
if isUserTx {
userTxsProcessed++
}
}
if statedb.IsTxFiltered() {
return nil, nil, state.ErrArbTxFilter
}
if sequencingHooks.BlockFilter != nil {
if err = sequencingHooks.BlockFilter(header, statedb, complete, receipts); err != nil {
return nil, nil, err
}
}
binary.BigEndian.PutUint64(header.Nonce[:], delayedMessagesRead)
FinalizeBlock(header, complete, statedb, chainConfig)
// Touch up the block hashes in receipts
tmpBlock := types.NewBlock(header, &types.Body{Transactions: complete}, receipts, trie.NewStackTrie(nil))
blockHash := tmpBlock.Hash()
for _, receipt := range receipts {
receipt.BlockHash = blockHash
for _, txLog := range receipt.Logs {
txLog.BlockHash = blockHash
}
}
block := types.NewBlock(header, &types.Body{Transactions: complete}, receipts, trie.NewStackTrie(nil))
if len(block.Transactions()) != len(receipts) {
return nil, nil, fmt.Errorf("block has %d txes but %d receipts", len(block.Transactions()), len(receipts))
}
balanceDelta := statedb.GetUnexpectedBalanceDelta()
if !arbmath.BigEquals(balanceDelta, expectedBalanceDelta) {
// Fail if funds have been minted or debug mode is enabled (i.e. this is a test)
if balanceDelta.Cmp(expectedBalanceDelta) > 0 || chainConfig.DebugMode() {
return nil, nil, fmt.Errorf("unexpected total balance delta %v (expected %v)", balanceDelta, expectedBalanceDelta)
}
// This is a real chain and funds were burnt, not minted, so only log an error and don't panic
log.Error("Unexpected total balance delta", "delta", balanceDelta, "expected", expectedBalanceDelta)
}
return block, receipts, nil
}
// Also sets header.Root
func FinalizeBlock(header *types.Header, txs types.Transactions, statedb vm.StateDB, chainConfig *params.ChainConfig) {
if header != nil {
if header.Number.Uint64() < chainConfig.ArbitrumChainParams.GenesisBlockNum {
panic("cannot finalize blocks before genesis")
}
var sendRoot common.Hash
var sendCount uint64
var nextL1BlockNumber uint64
var arbosVersion uint64
if header.Number.Uint64() == chainConfig.ArbitrumChainParams.GenesisBlockNum {
arbosVersion = chainConfig.ArbitrumChainParams.InitialArbOSVersion
} else {
state, err := arbosState.OpenSystemArbosState(statedb, nil, true)
if err != nil {
newErr := fmt.Errorf("%w while opening arbos state. Block: %d root: %v", err, header.Number, header.Root)
panic(newErr)
}
// Add outbox info to the header for client-side proving
acc := state.SendMerkleAccumulator()
sendRoot, _ = acc.Root()
sendCount, _ = acc.Size()
nextL1BlockNumber, _ = state.Blockhashes().L1BlockNumber()
arbosVersion = state.ArbOSVersion()
}
arbitrumHeader := types.HeaderInfo{
SendRoot: sendRoot,
SendCount: sendCount,
L1BlockNumber: nextL1BlockNumber,
ArbOSFormatVersion: arbosVersion,
}
arbitrumHeader.UpdateHeaderWithInfo(header)
header.Root = statedb.IntermediateRoot(true)
}
}