-
Notifications
You must be signed in to change notification settings - Fork 529
/
Copy pathexecutionengine.go
1101 lines (988 loc) · 34.6 KB
/
executionengine.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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2022-2024, Offchain Labs, Inc.
// For license information, see https://github.com/OffchainLabs/nitro/blob/master/LICENSE
//go:build !wasm
// +build !wasm
package gethexec
/*
#cgo CFLAGS: -g -I../../target/include/
#cgo LDFLAGS: ${SRCDIR}/../../target/lib/libstylus.a -ldl -lm
#include "arbitrator.h"
*/
import "C"
import (
"bytes"
"context"
"encoding/binary"
"errors"
"fmt"
"os"
"path"
"runtime/pprof"
"runtime/trace"
"sync"
"testing"
"time"
"github.com/google/uuid"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/rawdb"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/stateless"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/metrics"
"github.com/offchainlabs/nitro/arbos"
"github.com/offchainlabs/nitro/arbos/arbosState"
"github.com/offchainlabs/nitro/arbos/arbostypes"
"github.com/offchainlabs/nitro/arbos/l1pricing"
"github.com/offchainlabs/nitro/arbos/programs"
"github.com/offchainlabs/nitro/arbutil"
"github.com/offchainlabs/nitro/cmd/chaininfo"
"github.com/offchainlabs/nitro/execution"
"github.com/offchainlabs/nitro/util/arbmath"
"github.com/offchainlabs/nitro/util/sharedmetrics"
"github.com/offchainlabs/nitro/util/stopwaiter"
)
var (
l1GasPriceEstimateGauge = metrics.NewRegisteredGauge("arb/l1gasprice/estimate", nil)
baseFeeGauge = metrics.NewRegisteredGauge("arb/block/basefee", nil)
blockGasUsedHistogram = metrics.NewRegisteredHistogram("arb/block/gasused", nil, metrics.NewBoundedHistogramSample())
txCountHistogram = metrics.NewRegisteredHistogram("arb/block/transactions/count", nil, metrics.NewBoundedHistogramSample())
txGasUsedHistogram = metrics.NewRegisteredHistogram("arb/block/transactions/gasused", nil, metrics.NewBoundedHistogramSample())
gasUsedSinceStartupCounter = metrics.NewRegisteredCounter("arb/gas_used", nil)
blockExecutionTimer = metrics.NewRegisteredTimer("arb/block/execution", nil)
blockWriteToDbTimer = metrics.NewRegisteredTimer("arb/block/writetodb", nil)
)
type L1PriceDataOfMsg struct {
callDataUnits uint64
cummulativeCallDataUnits uint64
l1GasCharged uint64
cummulativeL1GasCharged uint64
}
type L1PriceData struct {
mutex sync.RWMutex
startOfL1PriceDataCache arbutil.MessageIndex
endOfL1PriceDataCache arbutil.MessageIndex
msgToL1PriceData []L1PriceDataOfMsg
}
type ExecutionEngine struct {
stopwaiter.StopWaiter
bc *core.BlockChain
consensus execution.FullConsensusClient
recorder *BlockRecorder
resequenceChan chan []*arbostypes.MessageWithMetadata
createBlocksMutex sync.Mutex
newBlockNotifier chan struct{}
reorgEventsNotifier chan struct{}
latestBlockMutex sync.Mutex
latestBlock *types.Block
nextScheduledVersionCheck time.Time // protected by the createBlocksMutex
reorgSequencing bool
disableStylusCacheMetricsCollection bool
prefetchBlock bool
cachedL1PriceData *L1PriceData
}
func NewL1PriceData() *L1PriceData {
return &L1PriceData{
msgToL1PriceData: []L1PriceDataOfMsg{},
}
}
func NewExecutionEngine(bc *core.BlockChain) (*ExecutionEngine, error) {
return &ExecutionEngine{
bc: bc,
resequenceChan: make(chan []*arbostypes.MessageWithMetadata),
newBlockNotifier: make(chan struct{}, 1),
cachedL1PriceData: NewL1PriceData(),
}, nil
}
func (s *ExecutionEngine) backlogCallDataUnits() uint64 {
s.cachedL1PriceData.mutex.RLock()
defer s.cachedL1PriceData.mutex.RUnlock()
size := len(s.cachedL1PriceData.msgToL1PriceData)
if size == 0 {
return 0
}
return (s.cachedL1PriceData.msgToL1PriceData[size-1].cummulativeCallDataUnits -
s.cachedL1PriceData.msgToL1PriceData[0].cummulativeCallDataUnits +
s.cachedL1PriceData.msgToL1PriceData[0].callDataUnits)
}
func (s *ExecutionEngine) backlogL1GasCharged() uint64 {
s.cachedL1PriceData.mutex.RLock()
defer s.cachedL1PriceData.mutex.RUnlock()
size := len(s.cachedL1PriceData.msgToL1PriceData)
if size == 0 {
return 0
}
return (s.cachedL1PriceData.msgToL1PriceData[size-1].cummulativeL1GasCharged -
s.cachedL1PriceData.msgToL1PriceData[0].cummulativeL1GasCharged +
s.cachedL1PriceData.msgToL1PriceData[0].l1GasCharged)
}
func (s *ExecutionEngine) MarkFeedStart(to arbutil.MessageIndex) {
s.cachedL1PriceData.mutex.Lock()
defer s.cachedL1PriceData.mutex.Unlock()
if to < s.cachedL1PriceData.startOfL1PriceDataCache {
log.Debug("trying to trim older L1 price data cache which doesnt exist anymore")
} else if to >= s.cachedL1PriceData.endOfL1PriceDataCache {
s.cachedL1PriceData.startOfL1PriceDataCache = 0
s.cachedL1PriceData.endOfL1PriceDataCache = 0
s.cachedL1PriceData.msgToL1PriceData = []L1PriceDataOfMsg{}
} else {
newStart := to - s.cachedL1PriceData.startOfL1PriceDataCache + 1
s.cachedL1PriceData.msgToL1PriceData = s.cachedL1PriceData.msgToL1PriceData[newStart:]
s.cachedL1PriceData.startOfL1PriceDataCache = to + 1
}
}
func PopulateStylusTargetCache(targetConfig *StylusTargetConfig) error {
localTarget := rawdb.LocalTarget()
targets := targetConfig.WasmTargets()
var nativeSet bool
for _, target := range targets {
var effectiveStylusTarget string
switch target {
case rawdb.TargetWavm:
// skip wavm target
continue
case rawdb.TargetArm64:
effectiveStylusTarget = targetConfig.Arm64
case rawdb.TargetAmd64:
effectiveStylusTarget = targetConfig.Amd64
case rawdb.TargetHost:
effectiveStylusTarget = targetConfig.Host
default:
return fmt.Errorf("unsupported stylus target: %v", target)
}
isNative := target == localTarget
err := programs.SetTarget(target, effectiveStylusTarget, isNative)
if err != nil {
return fmt.Errorf("failed to set stylus target: %w", err)
}
nativeSet = nativeSet || isNative
}
if !nativeSet {
return fmt.Errorf("local target %v missing in list of archs %v", localTarget, targets)
}
return nil
}
func (s *ExecutionEngine) Initialize(rustCacheCapacityMB uint32, targetConfig *StylusTargetConfig) error {
if rustCacheCapacityMB != 0 {
programs.SetWasmLruCacheCapacity(arbmath.SaturatingUMul(uint64(rustCacheCapacityMB), 1024*1024))
}
if err := PopulateStylusTargetCache(targetConfig); err != nil {
return fmt.Errorf("error populating stylus target cache: %w", err)
}
return nil
}
func (s *ExecutionEngine) SetRecorder(recorder *BlockRecorder) {
if s.Started() {
panic("trying to set recorder after start")
}
if s.recorder != nil {
panic("trying to set recorder policy when already set")
}
s.recorder = recorder
}
func (s *ExecutionEngine) SetReorgEventsNotifier(reorgEventsNotifier chan struct{}) {
if s.Started() {
panic("trying to set reorg events notifier after start")
}
if s.reorgEventsNotifier != nil {
panic("trying to set reorg events notifier when already set")
}
s.reorgEventsNotifier = reorgEventsNotifier
}
func (s *ExecutionEngine) EnableReorgSequencing() {
if s.Started() {
panic("trying to enable reorg sequencing after start")
}
if s.reorgSequencing {
panic("trying to enable reorg sequencing when already set")
}
s.reorgSequencing = true
}
func (s *ExecutionEngine) DisableStylusCacheMetricsCollection() {
if s.Started() {
panic("trying to disable stylus cache metrics collection after start")
}
if s.disableStylusCacheMetricsCollection {
panic("trying to disable stylus cache metrics collection when already set")
}
s.disableStylusCacheMetricsCollection = true
}
func (s *ExecutionEngine) EnablePrefetchBlock() {
if s.Started() {
panic("trying to enable prefetch block after start")
}
if s.prefetchBlock {
panic("trying to enable prefetch block when already set")
}
s.prefetchBlock = true
}
func (s *ExecutionEngine) SetConsensus(consensus execution.FullConsensusClient) {
if s.Started() {
panic("trying to set transaction consensus after start")
}
if s.consensus != nil {
panic("trying to set transaction consensus when already set")
}
s.consensus = consensus
}
func (s *ExecutionEngine) BlockMetadataAtCount(count arbutil.MessageIndex) (common.BlockMetadata, error) {
if s.consensus != nil {
return s.consensus.BlockMetadataAtCount(count)
}
return nil, errors.New("FullConsensusClient is not accessible to execution")
}
func (s *ExecutionEngine) GetBatchFetcher() execution.BatchFetcher {
return s.consensus
}
func (s *ExecutionEngine) Reorg(count arbutil.MessageIndex, newMessages []arbostypes.MessageWithMetadataAndBlockInfo, oldMessages []*arbostypes.MessageWithMetadata) ([]*execution.MessageResult, error) {
if count == 0 {
return nil, errors.New("cannot reorg out genesis")
}
s.createBlocksMutex.Lock()
resequencing := false
defer func() {
// if we are resequencing old messages - don't release the lock
// lock will be released by thread listening to resequenceChan
if !resequencing {
s.createBlocksMutex.Unlock()
}
}()
blockNum := s.MessageIndexToBlockNumber(count - 1)
// We can safely cast blockNum to a uint64 as it comes from MessageCountToBlockNumber
targetBlock := s.bc.GetBlockByNumber(uint64(blockNum))
if targetBlock == nil {
log.Warn("reorg target block not found", "block", blockNum)
return nil, nil
}
tag := s.bc.StateCache().WasmCacheTag()
// reorg Rust-side VM state
C.stylus_reorg_vm(C.uint64_t(blockNum), C.uint32_t(tag))
err := s.bc.ReorgToOldBlock(targetBlock)
if err != nil {
return nil, err
}
if s.reorgEventsNotifier != nil {
select {
case s.reorgEventsNotifier <- struct{}{}:
default:
}
}
newMessagesResults := make([]*execution.MessageResult, 0, len(oldMessages))
for i := range newMessages {
var msgForPrefetch *arbostypes.MessageWithMetadata
if i < len(newMessages)-1 {
msgForPrefetch = &newMessages[i].MessageWithMeta
}
msgResult, err := s.digestMessageWithBlockMutex(count+arbutil.MessageIndex(i), &newMessages[i].MessageWithMeta, msgForPrefetch)
if err != nil {
return nil, err
}
newMessagesResults = append(newMessagesResults, msgResult)
}
if s.recorder != nil {
s.recorder.ReorgTo(targetBlock.Header())
}
if len(oldMessages) > 0 {
s.resequenceChan <- oldMessages
resequencing = true
}
return newMessagesResults, nil
}
func (s *ExecutionEngine) getCurrentHeader() (*types.Header, error) {
currentBlock := s.bc.CurrentBlock()
if currentBlock == nil {
return nil, errors.New("failed to get current block")
}
return currentBlock, nil
}
func (s *ExecutionEngine) HeadMessageNumber() (arbutil.MessageIndex, error) {
currentHeader, err := s.getCurrentHeader()
if err != nil {
return 0, err
}
return s.BlockNumberToMessageIndex(currentHeader.Number.Uint64())
}
func (s *ExecutionEngine) HeadMessageNumberSync(t *testing.T) (arbutil.MessageIndex, error) {
s.createBlocksMutex.Lock()
defer s.createBlocksMutex.Unlock()
return s.HeadMessageNumber()
}
func (s *ExecutionEngine) NextDelayedMessageNumber() (uint64, error) {
currentHeader, err := s.getCurrentHeader()
if err != nil {
return 0, err
}
return currentHeader.Nonce.Uint64(), nil
}
func MessageFromTxes(header *arbostypes.L1IncomingMessageHeader, txes types.Transactions, txErrors []error) (*arbostypes.L1IncomingMessage, error) {
var l2Message []byte
if len(txes) == 1 && txErrors[0] == nil {
txBytes, err := txes[0].MarshalBinary()
if err != nil {
return nil, err
}
l2Message = append(l2Message, arbos.L2MessageKind_SignedTx)
l2Message = append(l2Message, txBytes...)
} else {
l2Message = append(l2Message, arbos.L2MessageKind_Batch)
sizeBuf := make([]byte, 8)
for i, tx := range txes {
if txErrors[i] != nil {
continue
}
txBytes, err := tx.MarshalBinary()
if err != nil {
return nil, err
}
binary.BigEndian.PutUint64(sizeBuf, uint64(len(txBytes)+1))
l2Message = append(l2Message, sizeBuf...)
l2Message = append(l2Message, arbos.L2MessageKind_SignedTx)
l2Message = append(l2Message, txBytes...)
}
}
if len(l2Message) > arbostypes.MaxL2MessageSize {
return nil, errors.New("l2message too long")
}
return &arbostypes.L1IncomingMessage{
Header: header,
L2msg: l2Message,
}, nil
}
// The caller must hold the createBlocksMutex
func (s *ExecutionEngine) resequenceReorgedMessages(messages []*arbostypes.MessageWithMetadata) {
if !s.reorgSequencing {
return
}
log.Info("Trying to resequence messages", "number", len(messages))
lastBlockHeader, err := s.getCurrentHeader()
if err != nil {
log.Error("block header not found during resequence", "err", err)
return
}
nextDelayedSeqNum := lastBlockHeader.Nonce.Uint64()
for _, msg := range messages {
// Check if the message is non-nil just to be safe
if msg == nil || msg.Message == nil || msg.Message.Header == nil {
continue
}
header := msg.Message.Header
if header.RequestId != nil {
delayedSeqNum := header.RequestId.Big().Uint64()
if delayedSeqNum != nextDelayedSeqNum {
log.Info("not resequencing delayed message due to unexpected index", "expected", nextDelayedSeqNum, "found", delayedSeqNum)
continue
}
_, err := s.sequenceDelayedMessageWithBlockMutex(msg.Message, delayedSeqNum)
if err != nil {
log.Error("failed to re-sequence old delayed message removed by reorg", "err", err)
}
nextDelayedSeqNum += 1
continue
}
if header.Kind != arbostypes.L1MessageType_L2Message || header.Poster != l1pricing.BatchPosterAddress {
// This shouldn't exist?
log.Warn("skipping non-standard sequencer message found from reorg", "header", header)
continue
}
txes, err := arbos.ParseL2Transactions(msg.Message, s.bc.Config().ChainID)
if err != nil {
log.Warn("failed to parse sequencer message found from reorg", "err", err)
continue
}
hooks := arbos.NoopSequencingHooks()
hooks.DiscardInvalidTxsEarly = true
_, err = s.sequenceTransactionsWithBlockMutex(msg.Message.Header, txes, hooks, nil)
if err != nil {
log.Error("failed to re-sequence old user message removed by reorg", "err", err)
return
}
}
}
func (s *ExecutionEngine) sequencerWrapper(sequencerFunc func() (*types.Block, error)) (*types.Block, error) {
attempts := 0
for {
s.createBlocksMutex.Lock()
block, err := sequencerFunc()
s.createBlocksMutex.Unlock()
if !errors.Is(err, execution.ErrSequencerInsertLockTaken) {
return block, err
}
// We got SequencerInsertLockTaken
// option 1: there was a race, we are no longer main sequencer
chosenErr := s.consensus.ExpectChosenSequencer()
if chosenErr != nil {
return nil, chosenErr
}
// option 2: we are in a test without very orderly sequencer coordination
if !s.bc.Config().ArbitrumChainParams.AllowDebugPrecompiles {
// option 3: something weird. send warning
log.Warn("sequence transactions: insert lock takent", "attempts", attempts)
}
// options 2/3 fail after too many attempts
attempts++
if attempts > 20 {
return nil, err
}
<-time.After(time.Millisecond * 100)
}
}
func (s *ExecutionEngine) SequenceTransactions(header *arbostypes.L1IncomingMessageHeader, txes types.Transactions, hooks *arbos.SequencingHooks, timeboostedTxs map[common.Hash]struct{}) (*types.Block, error) {
return s.sequencerWrapper(func() (*types.Block, error) {
hooks.TxErrors = nil
return s.sequenceTransactionsWithBlockMutex(header, txes, hooks, timeboostedTxs)
})
}
// SequenceTransactionsWithProfiling runs SequenceTransactions with tracing and
// CPU profiling enabled. If the block creation takes longer than 2 seconds, it
// keeps both and prints out filenames in an error log line.
func (s *ExecutionEngine) SequenceTransactionsWithProfiling(header *arbostypes.L1IncomingMessageHeader, txes types.Transactions, hooks *arbos.SequencingHooks, timeboostedTxs map[common.Hash]struct{}) (*types.Block, error) {
pprofBuf, traceBuf := bytes.NewBuffer(nil), bytes.NewBuffer(nil)
if err := pprof.StartCPUProfile(pprofBuf); err != nil {
log.Error("Starting CPU profiling", "error", err)
}
if err := trace.Start(traceBuf); err != nil {
log.Error("Starting tracing", "error", err)
}
start := time.Now()
res, err := s.SequenceTransactions(header, txes, hooks, timeboostedTxs)
elapsed := time.Since(start)
pprof.StopCPUProfile()
trace.Stop()
if elapsed > 2*time.Second {
writeAndLog(pprofBuf, traceBuf)
return res, err
}
return res, err
}
func writeAndLog(pprof, trace *bytes.Buffer) {
id := uuid.NewString()
pprofFile := path.Join(os.TempDir(), id+".pprof")
if err := os.WriteFile(pprofFile, pprof.Bytes(), 0o600); err != nil {
log.Error("Creating temporary file for pprof", "fileName", pprofFile, "error", err)
return
}
traceFile := path.Join(os.TempDir(), id+".trace")
if err := os.WriteFile(traceFile, trace.Bytes(), 0o600); err != nil {
log.Error("Creating temporary file for trace", "fileName", traceFile, "error", err)
return
}
log.Info("Transactions sequencing took longer than 2 seconds, created pprof and trace files", "pprof", pprofFile, "traceFile", traceFile)
}
func (s *ExecutionEngine) sequenceTransactionsWithBlockMutex(header *arbostypes.L1IncomingMessageHeader, txes types.Transactions, hooks *arbos.SequencingHooks, timeboostedTxs map[common.Hash]struct{}) (*types.Block, error) {
lastBlockHeader, err := s.getCurrentHeader()
if err != nil {
return nil, err
}
statedb, err := s.bc.StateAt(lastBlockHeader.Root)
if err != nil {
return nil, err
}
lastBlock := s.bc.GetBlock(lastBlockHeader.Hash(), lastBlockHeader.Number.Uint64())
if lastBlock == nil {
return nil, errors.New("can't find block for current header")
}
var witness *stateless.Witness
if s.bc.GetVMConfig().EnableWitnessCollection {
witness, err = stateless.NewWitness(s.bc, lastBlock)
if err != nil {
return nil, err
}
}
statedb.StartPrefetcher("Sequencer", witness)
defer statedb.StopPrefetcher()
delayedMessagesRead := lastBlockHeader.Nonce.Uint64()
startTime := time.Now()
block, receipts, err := arbos.ProduceBlockAdvanced(
header,
txes,
delayedMessagesRead,
lastBlockHeader,
statedb,
s.bc,
s.bc.Config(),
hooks,
false,
core.MessageCommitMode,
)
if err != nil {
return nil, err
}
blockCalcTime := time.Since(startTime)
blockExecutionTimer.Update(blockCalcTime)
if len(hooks.TxErrors) != len(txes) {
return nil, fmt.Errorf("unexpected number of error results: %v vs number of txes %v", len(hooks.TxErrors), len(txes))
}
if len(receipts) == 0 {
return nil, nil
}
allTxsErrored := true
for _, err := range hooks.TxErrors {
if err == nil {
allTxsErrored = false
break
}
}
if allTxsErrored {
return nil, nil
}
msg, err := MessageFromTxes(header, txes, hooks.TxErrors)
if err != nil {
return nil, err
}
pos, err := s.BlockNumberToMessageIndex(lastBlockHeader.Number.Uint64() + 1)
if err != nil {
return nil, err
}
msgWithMeta := arbostypes.MessageWithMetadata{
Message: msg,
DelayedMessagesRead: delayedMessagesRead,
}
msgResult, err := s.resultFromHeader(block.Header())
if err != nil {
return nil, err
}
blockMetadata := s.blockMetadataFromBlock(block, timeboostedTxs)
err = s.consensus.WriteMessageFromSequencer(pos, msgWithMeta, *msgResult, blockMetadata)
if err != nil {
return nil, err
}
// Only write the block after we've written the messages, so if the node dies in the middle of this,
// it will naturally recover on startup by regenerating the missing block.
err = s.appendBlock(block, statedb, receipts, blockCalcTime)
if err != nil {
return nil, err
}
s.cacheL1PriceDataOfMsg(pos, receipts, block, false)
return block, nil
}
// blockMetadataFromBlock returns timeboosted byte array which says whether a transaction in the block was timeboosted
// or not. The first byte of blockMetadata byte array is reserved to indicate the version,
// starting from the second byte, (N)th bit would represent if (N)th tx is timeboosted or not, 1 means yes and 0 means no
// blockMetadata[index / 8 + 1] & (1 << (index % 8)) != 0; where index = (N - 1), implies whether (N)th tx in a block is timeboosted
// note that number of txs in a block will always lag behind (len(blockMetadata) - 1) * 8 but it wont lag more than a value of 7
func (s *ExecutionEngine) blockMetadataFromBlock(block *types.Block, timeboostedTxs map[common.Hash]struct{}) common.BlockMetadata {
bits := make(common.BlockMetadata, 1+arbmath.DivCeil(uint64(len(block.Transactions())), 8))
if len(timeboostedTxs) == 0 {
return bits
}
for i, tx := range block.Transactions() {
if _, ok := timeboostedTxs[tx.Hash()]; ok {
bits[1+i/8] |= 1 << (i % 8)
}
}
return bits
}
func (s *ExecutionEngine) SequenceDelayedMessage(message *arbostypes.L1IncomingMessage, delayedSeqNum uint64) error {
_, err := s.sequencerWrapper(func() (*types.Block, error) {
return s.sequenceDelayedMessageWithBlockMutex(message, delayedSeqNum)
})
return err
}
func (s *ExecutionEngine) sequenceDelayedMessageWithBlockMutex(message *arbostypes.L1IncomingMessage, delayedSeqNum uint64) (*types.Block, error) {
currentHeader, err := s.getCurrentHeader()
if err != nil {
return nil, err
}
expectedDelayed := currentHeader.Nonce.Uint64()
pos, err := s.BlockNumberToMessageIndex(currentHeader.Number.Uint64() + 1)
if err != nil {
return nil, err
}
if expectedDelayed != delayedSeqNum {
return nil, fmt.Errorf("wrong delayed message sequenced got %d expected %d", delayedSeqNum, expectedDelayed)
}
messageWithMeta := arbostypes.MessageWithMetadata{
Message: message,
DelayedMessagesRead: delayedSeqNum + 1,
}
startTime := time.Now()
block, statedb, receipts, err := s.createBlockFromNextMessage(&messageWithMeta, false)
if err != nil {
return nil, err
}
blockCalcTime := time.Since(startTime)
blockExecutionTimer.Update(blockCalcTime)
msgResult, err := s.resultFromHeader(block.Header())
if err != nil {
return nil, err
}
err = s.consensus.WriteMessageFromSequencer(pos, messageWithMeta, *msgResult, s.blockMetadataFromBlock(block, nil))
if err != nil {
return nil, err
}
err = s.appendBlock(block, statedb, receipts, blockCalcTime)
if err != nil {
return nil, err
}
s.cacheL1PriceDataOfMsg(pos, receipts, block, true)
log.Info("ExecutionEngine: Added DelayedMessages", "pos", pos, "delayed", delayedSeqNum, "block-header", block.Header())
return block, nil
}
func (s *ExecutionEngine) GetGenesisBlockNumber() uint64 {
return s.bc.Config().ArbitrumChainParams.GenesisBlockNum
}
func (s *ExecutionEngine) BlockNumberToMessageIndex(blockNum uint64) (arbutil.MessageIndex, error) {
genesis := s.GetGenesisBlockNumber()
if blockNum < genesis {
return 0, fmt.Errorf("blockNum %d < genesis %d", blockNum, genesis)
}
return arbutil.MessageIndex(blockNum - genesis), nil
}
func (s *ExecutionEngine) MessageIndexToBlockNumber(messageNum arbutil.MessageIndex) uint64 {
return uint64(messageNum) + s.GetGenesisBlockNumber()
}
// must hold createBlockMutex
func (s *ExecutionEngine) createBlockFromNextMessage(msg *arbostypes.MessageWithMetadata, isMsgForPrefetch bool) (*types.Block, *state.StateDB, types.Receipts, error) {
currentHeader := s.bc.CurrentBlock()
if currentHeader == nil {
return nil, nil, nil, errors.New("failed to get current block header")
}
currentBlock := s.bc.GetBlock(currentHeader.Hash(), currentHeader.Number.Uint64())
if currentBlock == nil {
return nil, nil, nil, errors.New("can't find block for current header")
}
err := s.bc.RecoverState(currentBlock)
if err != nil {
return nil, nil, nil, fmt.Errorf("failed to recover block %v state: %w", currentBlock.Number(), err)
}
statedb, err := s.bc.StateAt(currentHeader.Root)
if err != nil {
return nil, nil, nil, err
}
var witness *stateless.Witness
if s.bc.GetVMConfig().EnableWitnessCollection {
witness, err = stateless.NewWitness(s.bc, currentBlock)
if err != nil {
return nil, nil, nil, err
}
}
statedb.StartPrefetcher("TransactionStreamer", witness)
defer statedb.StopPrefetcher()
runMode := core.MessageCommitMode
if isMsgForPrefetch {
runMode = core.MessageReplayMode
}
block, receipts, err := arbos.ProduceBlock(
msg.Message,
msg.DelayedMessagesRead,
currentHeader,
statedb,
s.bc,
s.bc.Config(),
isMsgForPrefetch,
runMode,
)
return block, statedb, receipts, err
}
// must hold createBlockMutex
func (s *ExecutionEngine) appendBlock(block *types.Block, statedb *state.StateDB, receipts types.Receipts, duration time.Duration) error {
var logs []*types.Log
for _, receipt := range receipts {
logs = append(logs, receipt.Logs...)
}
startTime := time.Now()
status, err := s.bc.WriteBlockAndSetHeadWithTime(block, receipts, logs, statedb, true, duration)
if err != nil {
return err
}
if status == core.SideStatTy {
return errors.New("geth rejected block as non-canonical")
}
blockWriteToDbTimer.Update(time.Since(startTime))
baseFeeGauge.Update(block.BaseFee().Int64())
txCountHistogram.Update(int64(len(block.Transactions()) - 1))
var blockGasused uint64
for i := 1; i < len(receipts); i++ {
val := arbmath.SaturatingUSub(receipts[i].GasUsed, receipts[i].GasUsedForL1)
txGasUsedHistogram.Update(int64(val))
blockGasused += val
}
blockGasUsedHistogram.Update(int64(blockGasused))
gasUsedSinceStartupCounter.Inc(int64(blockGasused))
s.updateL1GasPriceEstimateMetric()
return nil
}
func (s *ExecutionEngine) resultFromHeader(header *types.Header) (*execution.MessageResult, error) {
if header == nil {
return nil, fmt.Errorf("result not found")
}
info := types.DeserializeHeaderExtraInformation(header)
return &execution.MessageResult{
BlockHash: header.Hash(),
SendRoot: info.SendRoot,
}, nil
}
func (s *ExecutionEngine) ResultAtPos(pos arbutil.MessageIndex) (*execution.MessageResult, error) {
return s.resultFromHeader(s.bc.GetHeaderByNumber(s.MessageIndexToBlockNumber(pos)))
}
func (s *ExecutionEngine) updateL1GasPriceEstimateMetric() {
bc := s.bc
latestHeader := bc.CurrentBlock()
latestState, err := bc.StateAt(latestHeader.Root)
if err != nil {
log.Error("error getting latest statedb while fetching l2 Estimate of L1 GasPrice")
return
}
arbState, err := arbosState.OpenSystemArbosState(latestState, nil, true)
if err != nil {
log.Error("error opening system arbos state while fetching l2 Estimate of L1 GasPrice")
return
}
l2EstimateL1GasPrice, err := arbState.L1PricingState().PricePerUnit()
if err != nil {
log.Error("error fetching l2 Estimate of L1 GasPrice")
return
}
l1GasPriceEstimateGauge.Update(l2EstimateL1GasPrice.Int64())
}
func (s *ExecutionEngine) getL1PricingSurplus() (int64, error) {
bc := s.bc
latestHeader := bc.CurrentBlock()
latestState, err := bc.StateAt(latestHeader.Root)
if err != nil {
return 0, errors.New("error getting latest statedb while fetching current L1 pricing surplus")
}
arbState, err := arbosState.OpenSystemArbosState(latestState, nil, true)
if err != nil {
return 0, errors.New("error opening system arbos state while fetching current L1 pricing surplus")
}
surplus, err := arbState.L1PricingState().GetL1PricingSurplus()
if err != nil {
return 0, errors.New("error fetching current L1 pricing surplus")
}
return surplus.Int64(), nil
}
func (s *ExecutionEngine) cacheL1PriceDataOfMsg(seqNum arbutil.MessageIndex, receipts types.Receipts, block *types.Block, blockBuiltUsingDelayedMessage bool) {
var gasUsedForL1 uint64
var callDataUnits uint64
if !blockBuiltUsingDelayedMessage {
// s.cachedL1PriceData tracks L1 price data for messages posted by Nitro,
// so delayed messages should not update cummulative values kept on it.
// First transaction in every block is an Arbitrum internal transaction,
// so we skip it here.
for i := 1; i < len(receipts); i++ {
gasUsedForL1 += receipts[i].GasUsedForL1
}
for _, tx := range block.Transactions() {
_, cachedUnits := tx.GetRawCachedCalldataUnits()
callDataUnits += cachedUnits
}
}
l1GasCharged := gasUsedForL1 * block.BaseFee().Uint64()
s.cachedL1PriceData.mutex.Lock()
defer s.cachedL1PriceData.mutex.Unlock()
resetCache := func() {
s.cachedL1PriceData.startOfL1PriceDataCache = seqNum
s.cachedL1PriceData.endOfL1PriceDataCache = seqNum
s.cachedL1PriceData.msgToL1PriceData = []L1PriceDataOfMsg{{
callDataUnits: callDataUnits,
cummulativeCallDataUnits: callDataUnits,
l1GasCharged: l1GasCharged,
cummulativeL1GasCharged: l1GasCharged,
}}
}
size := len(s.cachedL1PriceData.msgToL1PriceData)
if size == 0 ||
s.cachedL1PriceData.startOfL1PriceDataCache == 0 ||
s.cachedL1PriceData.endOfL1PriceDataCache == 0 ||
arbutil.MessageIndex(size) != s.cachedL1PriceData.endOfL1PriceDataCache-s.cachedL1PriceData.startOfL1PriceDataCache+1 {
resetCache()
return
}
if seqNum != s.cachedL1PriceData.endOfL1PriceDataCache+1 {
if seqNum > s.cachedL1PriceData.endOfL1PriceDataCache+1 {
log.Info("message position higher then current end of l1 price data cache, resetting cache to this message")
resetCache()
} else if seqNum < s.cachedL1PriceData.startOfL1PriceDataCache {
log.Info("message position lower than start of l1 price data cache, ignoring")
} else {
log.Info("message position already seen in l1 price data cache, ignoring")
}
} else {
cummulativeCallDataUnits := s.cachedL1PriceData.msgToL1PriceData[size-1].cummulativeCallDataUnits
cummulativeL1GasCharged := s.cachedL1PriceData.msgToL1PriceData[size-1].cummulativeL1GasCharged
s.cachedL1PriceData.msgToL1PriceData = append(s.cachedL1PriceData.msgToL1PriceData, L1PriceDataOfMsg{
callDataUnits: callDataUnits,
cummulativeCallDataUnits: cummulativeCallDataUnits + callDataUnits,
l1GasCharged: l1GasCharged,
cummulativeL1GasCharged: cummulativeL1GasCharged + l1GasCharged,
})
s.cachedL1PriceData.endOfL1PriceDataCache = seqNum
}
}
// DigestMessage is used to create a block by executing msg against the latest state and storing it.
// Also, while creating a block by executing msg against the latest state,
// in parallel, creates a block by executing msgForPrefetch (msg+1) against the latest state
// but does not store the block.
// This helps in filling the cache, so that the next block creation is faster.
func (s *ExecutionEngine) DigestMessage(num arbutil.MessageIndex, msg *arbostypes.MessageWithMetadata, msgForPrefetch *arbostypes.MessageWithMetadata) (*execution.MessageResult, error) {
if !s.createBlocksMutex.TryLock() {
return nil, errors.New("createBlock mutex held")
}
defer s.createBlocksMutex.Unlock()
return s.digestMessageWithBlockMutex(num, msg, msgForPrefetch)
}
func (s *ExecutionEngine) digestMessageWithBlockMutex(num arbutil.MessageIndex, msg *arbostypes.MessageWithMetadata, msgForPrefetch *arbostypes.MessageWithMetadata) (*execution.MessageResult, error) {
currentHeader, err := s.getCurrentHeader()
if err != nil {
return nil, err
}
curMsg, err := s.BlockNumberToMessageIndex(currentHeader.Number.Uint64())
if err != nil {
return nil, err
}
if curMsg+1 != num {
return nil, fmt.Errorf("wrong message number in digest got %d expected %d", num, curMsg+1)
}
startTime := time.Now()
if s.prefetchBlock && msgForPrefetch != nil {
go func() {
_, _, _, err := s.createBlockFromNextMessage(msgForPrefetch, true)
if err != nil {
return
}
}()
}
block, statedb, receipts, err := s.createBlockFromNextMessage(msg, false)
if err != nil {
return nil, err
}
blockCalcTime := time.Since(startTime)
blockExecutionTimer.Update(blockCalcTime)
err = s.appendBlock(block, statedb, receipts, blockCalcTime)
if err != nil {
return nil, err
}
s.cacheL1PriceDataOfMsg(num, receipts, block, false)
if time.Now().After(s.nextScheduledVersionCheck) {
s.nextScheduledVersionCheck = time.Now().Add(time.Minute)
arbState, err := arbosState.OpenSystemArbosState(statedb, nil, true)
if err != nil {
return nil, err
}
version, timestampInt, err := arbState.GetScheduledUpgrade()
if err != nil {
return nil, err
}
var timeUntilUpgrade time.Duration
var timestamp time.Time
if timestampInt == 0 {
// This upgrade will take effect in the next block
timestamp = time.Now()
} else {
// This upgrade is scheduled for the future
timestamp = time.Unix(int64(timestampInt), 0)
timeUntilUpgrade = time.Until(timestamp)
}
maxSupportedVersion := chaininfo.ArbitrumDevTestChainConfig().ArbitrumChainParams.InitialArbOSVersion
logLevel := log.Warn
if timeUntilUpgrade < time.Hour*24 {
logLevel = log.Error
}
if version > maxSupportedVersion {
logLevel(
"you need to update your node to the latest version before this scheduled ArbOS upgrade",
"timeUntilUpgrade", timeUntilUpgrade,
"upgradeScheduledFor", timestamp,
"maxSupportedArbosVersion", maxSupportedVersion,
"pendingArbosUpgradeVersion", version,
)
}
}
sharedmetrics.UpdateSequenceNumberInBlockGauge(num)
s.latestBlockMutex.Lock()
s.latestBlock = block