-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathcomputer.go
More file actions
557 lines (485 loc) · 13.9 KB
/
computer.go
File metadata and controls
557 lines (485 loc) · 13.9 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
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
package computer
import (
"context"
"fmt"
"sync"
"github.com/rs/zerolog"
"go.opentelemetry.io/otel/attribute"
otelTrace "go.opentelemetry.io/otel/trace"
"github.com/onflow/flow-go/crypto/hash"
"github.com/onflow/flow-go/engine/execution"
"github.com/onflow/flow-go/engine/execution/computation/result"
"github.com/onflow/flow-go/engine/execution/utils"
"github.com/onflow/flow-go/fvm"
"github.com/onflow/flow-go/fvm/blueprints"
"github.com/onflow/flow-go/fvm/storage/derived"
"github.com/onflow/flow-go/fvm/storage/errors"
"github.com/onflow/flow-go/fvm/storage/logical"
"github.com/onflow/flow-go/fvm/storage/snapshot"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/module"
"github.com/onflow/flow-go/module/executiondatasync/provider"
"github.com/onflow/flow-go/module/mempool/entity"
"github.com/onflow/flow-go/module/trace"
"github.com/onflow/flow-go/state/protocol"
"github.com/onflow/flow-go/utils/logging"
)
const (
SystemChunkEventCollectionMaxSize = 256_000_000 // ~256MB
)
type collectionInfo struct {
blockId flow.Identifier
blockIdStr string
collectionIndex int
*entity.CompleteCollection
isSystemTransaction bool
}
type TransactionRequest struct {
collectionInfo
txnId flow.Identifier
txnIdStr string
txnIndex uint32
lastTransactionInCollection bool
ctx fvm.Context
*fvm.TransactionProcedure
}
func newTransactionRequest(
collection collectionInfo,
collectionCtx fvm.Context,
collectionLogger zerolog.Logger,
txnIndex uint32,
txnBody *flow.TransactionBody,
lastTransactionInCollection bool,
) TransactionRequest {
txnId := txnBody.ID()
txnIdStr := txnId.String()
return TransactionRequest{
collectionInfo: collection,
txnId: txnId,
txnIdStr: txnIdStr,
txnIndex: txnIndex,
ctx: fvm.NewContextFromParent(
collectionCtx,
fvm.WithLogger(
collectionLogger.With().
Str("tx_id", txnIdStr).
Uint32("tx_index", txnIndex).
Logger())),
TransactionProcedure: fvm.NewTransaction(
txnId,
txnIndex,
txnBody),
lastTransactionInCollection: lastTransactionInCollection,
}
}
// A BlockComputer executes the transactions in a block.
type BlockComputer interface {
ExecuteBlock(
ctx context.Context,
parentBlockExecutionResultID flow.Identifier,
block *entity.ExecutableBlock,
snapshot snapshot.StorageSnapshot,
derivedBlockData *derived.DerivedBlockData,
) (
*execution.ComputationResult,
error,
)
}
type blockComputer struct {
vm fvm.VM
vmCtx fvm.Context
metrics module.ExecutionMetrics
tracer module.Tracer
log zerolog.Logger
systemChunkCtx fvm.Context
committer ViewCommitter
executionDataProvider provider.Provider
signer module.Local
spockHasher hash.Hasher
receiptHasher hash.Hasher
colResCons []result.ExecutedCollectionConsumer
protocolState protocol.State
maxConcurrency int
}
func SystemChunkContext(vmCtx fvm.Context) fvm.Context {
return fvm.NewContextFromParent(
vmCtx,
fvm.WithContractDeploymentRestricted(false),
fvm.WithContractRemovalRestricted(false),
fvm.WithAuthorizationChecksEnabled(false),
fvm.WithSequenceNumberCheckAndIncrementEnabled(false),
fvm.WithTransactionFeesEnabled(false),
fvm.WithServiceEventCollectionEnabled(),
fvm.WithEventCollectionSizeLimit(SystemChunkEventCollectionMaxSize),
fvm.WithMemoryAndInteractionLimitsDisabled(),
// only the system transaction is allowed to call the block entropy provider
fvm.WithRandomSourceHistoryCallAllowed(true),
// never enable the dependency check for the system transaction
fvm.WithDependencyCheckEnabled(false),
)
}
// NewBlockComputer creates a new block executor.
func NewBlockComputer(
vm fvm.VM,
vmCtx fvm.Context,
metrics module.ExecutionMetrics,
tracer module.Tracer,
logger zerolog.Logger,
committer ViewCommitter,
signer module.Local,
executionDataProvider provider.Provider,
colResCons []result.ExecutedCollectionConsumer,
state protocol.State,
maxConcurrency int,
) (BlockComputer, error) {
if maxConcurrency < 1 {
return nil, fmt.Errorf("invalid maxConcurrency: %d", maxConcurrency)
}
// this is a safeguard to prevent scripts from writing to the program cache on Execution nodes.
// writes are only allowed by transactions.
if vmCtx.AllowProgramCacheWritesInScripts {
return nil, fmt.Errorf("program cache writes are not allowed in scripts on Execution nodes")
}
systemChunkCtx := SystemChunkContext(vmCtx)
vmCtx = fvm.NewContextFromParent(
vmCtx,
fvm.WithMetricsReporter(metrics),
fvm.WithTracer(tracer))
return &blockComputer{
vm: vm,
vmCtx: vmCtx,
metrics: metrics,
tracer: tracer,
log: logger,
systemChunkCtx: systemChunkCtx,
committer: committer,
executionDataProvider: executionDataProvider,
signer: signer,
spockHasher: utils.NewSPOCKHasher(),
receiptHasher: utils.NewExecutionReceiptHasher(),
colResCons: colResCons,
protocolState: state,
maxConcurrency: maxConcurrency,
}, nil
}
// ExecuteBlock executes a block and returns the resulting chunks.
func (e *blockComputer) ExecuteBlock(
ctx context.Context,
parentBlockExecutionResultID flow.Identifier,
block *entity.ExecutableBlock,
snapshot snapshot.StorageSnapshot,
derivedBlockData *derived.DerivedBlockData,
) (
*execution.ComputationResult,
error,
) {
results, err := e.executeBlock(
ctx,
parentBlockExecutionResultID,
block,
snapshot,
derivedBlockData)
if err != nil {
return nil, fmt.Errorf("failed to execute transactions: %w", err)
}
return results, nil
}
func (e *blockComputer) queueTransactionRequests(
blockId flow.Identifier,
blockIdStr string,
blockHeader *flow.Header,
rawCollections []*entity.CompleteCollection,
systemTxnBody *flow.TransactionBody,
requestQueue chan TransactionRequest,
numTxns int,
) {
txnIndex := uint32(0)
collectionCtx := fvm.NewContextFromParent(
e.vmCtx,
fvm.WithBlockHeader(blockHeader),
// `protocol.Snapshot` implements `EntropyProvider` interface
// Note that `Snapshot` possible errors for RandomSource() are:
// - storage.ErrNotFound if the QC is unknown.
// - state.ErrUnknownSnapshotReference if the snapshot reference block is unknown
// However, at this stage, snapshot reference block should be known and the QC should also be known,
// so no error is expected in normal operations, as required by `EntropyProvider`.
fvm.WithEntropyProvider(e.protocolState.AtBlockID(blockId)),
)
for idx, collection := range rawCollections {
collectionLogger := collectionCtx.Logger.With().
Str("block_id", blockIdStr).
Uint64("height", blockHeader.Height).
Bool("system_chunk", false).
Bool("system_transaction", false).
Logger()
collectionInfo := collectionInfo{
blockId: blockId,
blockIdStr: blockIdStr,
collectionIndex: idx,
CompleteCollection: collection,
isSystemTransaction: false,
}
for i, txnBody := range collection.Transactions {
requestQueue <- newTransactionRequest(
collectionInfo,
collectionCtx,
collectionLogger,
txnIndex,
txnBody,
i == len(collection.Transactions)-1)
txnIndex += 1
}
}
systemCtx := fvm.NewContextFromParent(
e.systemChunkCtx,
fvm.WithBlockHeader(blockHeader),
// `protocol.Snapshot` implements `EntropyProvider` interface
// Note that `Snapshot` possible errors for RandomSource() are:
// - storage.ErrNotFound if the QC is unknown.
// - state.ErrUnknownSnapshotReference if the snapshot reference block is unknown
// However, at this stage, snapshot reference block should be known and the QC should also be known,
// so no error is expected in normal operations, as required by `EntropyProvider`.
fvm.WithEntropyProvider(e.protocolState.AtBlockID(blockId)),
)
systemCollectionLogger := systemCtx.Logger.With().
Str("block_id", blockIdStr).
Uint64("height", blockHeader.Height).
Bool("system_chunk", true).
Bool("system_transaction", true).
Int("num_collections", len(rawCollections)).
Int("num_txs", numTxns).
Logger()
systemCollectionInfo := collectionInfo{
blockId: blockId,
blockIdStr: blockIdStr,
collectionIndex: len(rawCollections),
CompleteCollection: &entity.CompleteCollection{
Transactions: []*flow.TransactionBody{systemTxnBody},
},
isSystemTransaction: true,
}
requestQueue <- newTransactionRequest(
systemCollectionInfo,
systemCtx,
systemCollectionLogger,
txnIndex,
systemTxnBody,
true)
}
func numberOfTransactionsInBlock(collections []*entity.CompleteCollection) int {
numTxns := 1 // there's one system transaction per block
for _, collection := range collections {
numTxns += len(collection.Transactions)
}
return numTxns
}
func (e *blockComputer) executeBlock(
ctx context.Context,
parentBlockExecutionResultID flow.Identifier,
block *entity.ExecutableBlock,
baseSnapshot snapshot.StorageSnapshot,
derivedBlockData *derived.DerivedBlockData,
) (
*execution.ComputationResult,
error,
) {
// check the start state is set
if !block.HasStartState() {
return nil, fmt.Errorf("executable block start state is not set")
}
blockId := block.ID()
blockIdStr := blockId.String()
rawCollections := block.Collections()
blockSpan := e.tracer.StartSpanFromParent(
e.tracer.BlockRootSpan(blockId),
trace.EXEComputeBlock)
blockSpan.SetAttributes(
attribute.String("block_id", blockIdStr),
attribute.Int("collection_counts", len(rawCollections)))
defer blockSpan.End()
systemTxn, err := blueprints.SystemChunkTransaction(e.vmCtx.Chain)
if err != nil {
return nil, fmt.Errorf(
"could not get system chunk transaction: %w",
err)
}
numTxns := numberOfTransactionsInBlock(rawCollections)
collector := newResultCollector(
e.tracer,
blockSpan,
e.metrics,
e.committer,
e.signer,
e.executionDataProvider,
e.spockHasher,
e.receiptHasher,
parentBlockExecutionResultID,
block,
numTxns,
e.colResCons,
baseSnapshot,
)
defer collector.Stop()
requestQueue := make(chan TransactionRequest, numTxns)
database := newTransactionCoordinator(
e.vm,
baseSnapshot,
derivedBlockData,
collector)
e.queueTransactionRequests(
blockId,
blockIdStr,
block.Block.Header,
rawCollections,
systemTxn,
requestQueue,
numTxns,
)
close(requestQueue)
wg := &sync.WaitGroup{}
wg.Add(e.maxConcurrency)
for i := 0; i < e.maxConcurrency; i++ {
go e.executeTransactions(
blockSpan,
database,
requestQueue,
wg)
}
wg.Wait()
err = database.Error()
if err != nil {
return nil, err
}
res, err := collector.Finalize(ctx)
if err != nil {
return nil, fmt.Errorf("cannot finalize computation result: %w", err)
}
e.log.Debug().
Hex("block_id", logging.Entity(block)).
Msg("all views committed")
e.metrics.ExecutionBlockCachedPrograms(derivedBlockData.CachedPrograms())
return res, nil
}
func (e *blockComputer) executeTransactions(
blockSpan otelTrace.Span,
database *transactionCoordinator,
requestQueue chan TransactionRequest,
wg *sync.WaitGroup,
) {
defer wg.Done()
for request := range requestQueue {
attempt := 0
for {
request.ctx.Logger.Info().
Int("attempt", attempt).
Msg("executing transaction")
attempt += 1
err := e.executeTransaction(blockSpan, database, request, attempt)
if errors.IsRetryableConflictError(err) {
request.ctx.Logger.Info().
Int("attempt", attempt).
Str("conflict_error", err.Error()).
Msg("conflict detected. retrying transaction")
continue
}
if err != nil {
database.AbortAllOutstandingTransactions(err)
return
}
break // process next transaction
}
}
}
func (e *blockComputer) executeTransaction(
blockSpan otelTrace.Span,
database *transactionCoordinator,
request TransactionRequest,
attempt int,
) error {
txn, err := e.executeTransactionInternal(
blockSpan,
database,
request,
attempt)
if err != nil {
prefix := ""
if request.isSystemTransaction {
prefix = "system "
}
snapshotTime := logical.Time(0)
if txn != nil {
snapshotTime = txn.SnapshotTime()
}
return fmt.Errorf(
"failed to execute %stransaction %v (%d@%d) for block %s "+
"at height %v: %w",
prefix,
request.txnIdStr,
request.txnIndex,
snapshotTime,
request.blockIdStr,
request.ctx.BlockHeader.Height,
err)
}
return nil
}
func (e *blockComputer) executeTransactionInternal(
blockSpan otelTrace.Span,
database *transactionCoordinator,
request TransactionRequest,
attempt int,
) (
*transaction,
error,
) {
txSpan := e.tracer.StartSampledSpanFromParent(
blockSpan,
request.txnId,
trace.EXEComputeTransaction)
txSpan.SetAttributes(
attribute.String("tx_id", request.txnIdStr),
attribute.Int64("tx_index", int64(request.txnIndex)),
attribute.Int("col_index", request.collectionIndex),
)
defer txSpan.End()
request.ctx = fvm.NewContextFromParent(request.ctx, fvm.WithSpan(txSpan))
txn, err := database.NewTransaction(request, attempt)
if err != nil {
return nil, err
}
defer txn.Cleanup()
err = txn.Preprocess()
if err != nil {
return txn, err
}
// Validating here gives us an opportunity to early abort/retry the
// transaction in case the conflict is detectable after preprocessing.
// This is strictly an optimization and hence we don't need to wait for
// updates (removing this validate call won't impact correctness).
err = txn.Validate()
if err != nil {
return txn, err
}
err = txn.Execute()
if err != nil {
return txn, err
}
err = txn.Finalize()
if err != nil {
return txn, err
}
// Snapshot time smaller than execution time indicates there are outstanding
// transaction(s) that must be committed before this transaction can be
// committed.
for txn.SnapshotTime() < request.ExecutionTime() {
err = txn.WaitForUpdates()
if err != nil {
return txn, err
}
err = txn.Validate()
if err != nil {
return txn, err
}
}
return txn, txn.Commit()
}