-
Notifications
You must be signed in to change notification settings - Fork 179
/
computer.go
458 lines (399 loc) · 10.9 KB
/
computer.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
package computer
import (
"context"
"fmt"
"time"
"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"
"github.com/onflow/flow-go/fvm/storage/derived"
"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/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
}
func SystemChunkContext(vmCtx fvm.Context, logger zerolog.Logger) 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(),
)
}
// 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,
) (BlockComputer, error) {
systemChunkCtx := SystemChunkContext(vmCtx, logger)
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,
}, 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,
) {
txnIndex := uint32(0)
collectionCtx := fvm.NewContextFromParent(
e.vmCtx,
fvm.WithBlockHeader(blockHeader))
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))
systemCollectionLogger := systemCtx.Logger.With().
Str("block_id", blockIdStr).
Uint64("height", blockHeader.Height).
Bool("system_chunk", true).
Bool("system_transaction", true).
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)
defer collector.Stop()
requestQueue := make(chan transactionRequest, numTxns)
e.queueTransactionRequests(
blockId,
blockIdStr,
block.Block.Header,
rawCollections,
systemTxn,
requestQueue)
close(requestQueue)
database := storage.NewBlockDatabase(baseSnapshot, 0, derivedBlockData)
for request := range requestQueue {
request.ctx.Logger.Info().Msg("executing transaction")
err := e.executeTransaction(
blockSpan,
database,
collector,
request)
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) executeTransaction(
parentSpan otelTrace.Span,
database *storage.BlockDatabase,
collector *resultCollector,
request transactionRequest,
) error {
txn, err := e.executeTransactionInternal(
parentSpan,
database,
collector,
request)
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(
parentSpan otelTrace.Span,
database *storage.BlockDatabase,
collector *resultCollector,
request transactionRequest,
) (
storage.Transaction,
error,
) {
startedAt := time.Now()
txSpan := e.tracer.StartSampledSpanFromParent(
parentSpan,
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.ExecutionTime(),
fvm.ProcedureStateParameters(request.ctx, request))
if err != nil {
return nil, err
}
executor := e.vm.NewExecutor(request.ctx, request.TransactionProcedure, txn)
defer executor.Cleanup()
err = executor.Preprocess()
if err != nil {
return txn, err
}
err = executor.Execute()
if err != nil {
return txn, err
}
err = txn.Finalize()
if err != nil {
return txn, err
}
executionSnapshot, err := txn.Commit()
if err != nil {
return txn, err
}
output := executor.Output()
collector.AddTransactionResult(
request,
executionSnapshot,
output,
time.Since(startedAt))
return txn, nil
}