-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathcontext.go
More file actions
413 lines (358 loc) · 12.7 KB
/
context.go
File metadata and controls
413 lines (358 loc) · 12.7 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
package fvm
import (
"math"
"github.com/rs/zerolog"
otelTrace "go.opentelemetry.io/otel/trace"
"github.com/onflow/flow-go/fvm/environment"
reusableRuntime "github.com/onflow/flow-go/fvm/runtime"
"github.com/onflow/flow-go/fvm/storage/derived"
"github.com/onflow/flow-go/fvm/storage/state"
"github.com/onflow/flow-go/fvm/tracing"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/module"
"github.com/onflow/flow-go/state/protocol"
)
const (
AccountKeyWeightThreshold = 1000
DefaultComputationLimit = 100_000 // 100K
DefaultMemoryLimit = math.MaxUint64
DefaultMaxInteractionSize = 20_000_000 // ~20MB
// DefaultScheduledTransactionsEnabled is the default value for the scheduled transactions enabled flag
// used by Execution, Verification, and Access nodes.
DefaultScheduledTransactionsEnabled = true
)
// A Context defines a set of execution parameters used by the virtual machine.
type Context struct {
// DisableMemoryAndInteractionLimits will override memory and interaction
// limits and set them to MaxUint64, effectively disabling these limits.
DisableMemoryAndInteractionLimits bool
ScheduledTransactionsEnabled bool
ComputationLimit uint64
MemoryLimit uint64
MaxStateKeySize uint64
MaxStateValueSize uint64
MaxStateInteractionSize uint64
TransactionExecutorParams
DerivedBlockData *derived.DerivedBlockData
tracing.TracerSpan
environment.EnvironmentParams
// AllowProgramCacheWritesInScripts determines if the program cache can be written to in scripts
// By default, the program cache is only updated by transactions.
AllowProgramCacheWritesInScripts bool
}
// NewContext initializes a new execution context with the provided options.
func NewContext(chain flow.Chain, opts ...Option) Context {
return newContext(defaultContext(chain), opts...)
}
// NewContextFromParent spawns a child execution context with the provided options.
func NewContextFromParent(parent Context, opts ...Option) Context {
return newContext(parent, opts...)
}
func newContext(ctx Context, opts ...Option) Context {
for _, applyOption := range opts {
ctx = applyOption(ctx)
}
return ctx
}
func defaultContext(chain flow.Chain) Context {
ctx := Context{
DisableMemoryAndInteractionLimits: false,
ComputationLimit: DefaultComputationLimit,
MemoryLimit: DefaultMemoryLimit,
MaxStateKeySize: state.DefaultMaxKeySize,
MaxStateValueSize: state.DefaultMaxValueSize,
MaxStateInteractionSize: DefaultMaxInteractionSize,
TransactionExecutorParams: DefaultTransactionExecutorParams(),
EnvironmentParams: DefaultEnvironmentParams(chain),
}
return ctx
}
// DefaultEnvironmentParams creates environment.EnvironmentParams that serve as base settings
// for EnvironmentParams and can be used as is for tests.
func DefaultEnvironmentParams(chain flow.Chain) environment.EnvironmentParams {
return environment.EnvironmentParams{
Chain: chain,
ServiceAccountEnabled: true,
RuntimeParams: reusableRuntime.DefaultRuntimeParams(chain),
ProgramLoggerParams: environment.DefaultProgramLoggerParams(),
EventEmitterParams: environment.DefaultEventEmitterParams(),
BlockInfoParams: environment.DefaultBlockInfoParams(),
TransactionInfoParams: environment.DefaultTransactionInfoParams(),
ContractUpdaterParams: environment.DefaultContractUpdaterParams(),
ExecutionVersionProvider: environment.ZeroExecutionVersionProvider{},
}
}
// An Option sets a configuration parameter for a virtual machine context.
type Option func(ctx Context) Context
// WithMemoryAndInteractionLimitsDisabled will override memory and interaction
// limits and set them to MaxUint64, effectively disabling these limits.
func WithMemoryAndInteractionLimitsDisabled() Option {
return func(ctx Context) Context {
ctx.DisableMemoryAndInteractionLimits = true
return ctx
}
}
// WithComputationLimit sets the computation limit for a virtual machine context.
func WithComputationLimit(limit uint64) Option {
return func(ctx Context) Context {
ctx.ComputationLimit = limit
return ctx
}
}
// WithMemoryLimit sets the memory limit for a virtual machine context.
func WithMemoryLimit(limit uint64) Option {
return func(ctx Context) Context {
ctx.MemoryLimit = limit
return ctx
}
}
// WithLogger sets the context logger
func WithLogger(logger zerolog.Logger) Option {
return func(ctx Context) Context {
ctx.Logger = logger
return ctx
}
}
// WithMaxStateKeySize sets the byte size limit for ledger keys
func WithMaxStateKeySize(limit uint64) Option {
return func(ctx Context) Context {
ctx.MaxStateKeySize = limit
return ctx
}
}
// WithMaxStateValueSize sets the byte size limit for ledger values
func WithMaxStateValueSize(limit uint64) Option {
return func(ctx Context) Context {
ctx.MaxStateValueSize = limit
return ctx
}
}
// WithMaxStateInteractionSize sets the byte size limit for total interaction with ledger.
// this prevents attacks such as reading all large registers
func WithMaxStateInteractionSize(limit uint64) Option {
return func(ctx Context) Context {
ctx.MaxStateInteractionSize = limit
return ctx
}
}
// WithEventCollectionSizeLimit sets the event collection byte size limit for a virtual machine context.
func WithEventCollectionSizeLimit(limit uint64) Option {
return func(ctx Context) Context {
ctx.EventCollectionByteSizeLimit = limit
return ctx
}
}
// WithBlockHeader sets the block header for a virtual machine context.
//
// The VM uses the header to provide current block information to the Cadence runtime.
func WithBlockHeader(header *flow.Header) Option {
return func(ctx Context) Context {
ctx.BlockHeader = header
return ctx
}
}
// WithBlocks sets the block storage provider for a virtual machine context.
//
// The VM uses the block storage provider to provide historical block information to
// the Cadence runtime.
func WithBlocks(blocks environment.Blocks) Option {
return func(ctx Context) Context {
ctx.Blocks = blocks
return ctx
}
}
// WithMetricsReporter sets the metrics collector for a virtual machine context.
//
// A metrics collector is used to gather metrics reported by the Cadence runtime.
func WithMetricsReporter(mr environment.MetricsReporter) Option {
return func(ctx Context) Context {
if mr != nil {
ctx.MetricsReporter = mr
}
return ctx
}
}
// WithTracer sets the tracer for a virtual machine context.
func WithTracer(tr module.Tracer) Option {
return func(ctx Context) Context {
ctx.Tracer = tr
return ctx
}
}
// WithSpan sets the trace span for a virtual machine context.
func WithSpan(span otelTrace.Span) Option {
return func(ctx Context) Context {
ctx.Span = span
return ctx
}
}
// WithExtensiveTracing sets the extensive tracing
func WithExtensiveTracing() Option {
return func(ctx Context) Context {
ctx.ExtensiveTracing = true
return ctx
}
}
// WithServiceAccount enables or disables calls to the Flow service account.
func WithServiceAccount(enabled bool) Option {
return func(ctx Context) Context {
ctx.ServiceAccountEnabled = enabled
return ctx
}
}
// WithRestrictContractRemoval enables or disables restricted contract removal for a
// virtual machine context. Warning! this would be overridden with the flag stored on chain.
// this is just a fallback value
func WithContractRemovalRestricted(enabled bool) Option {
return func(ctx Context) Context {
ctx.RestrictContractRemoval = enabled
return ctx
}
}
// WithRestrictedContractDeployment enables or disables restricted contract deployment for a
// virtual machine context. Warning! this would be overridden with the flag stored on chain.
// this is just a fallback value
func WithContractDeploymentRestricted(enabled bool) Option {
return func(ctx Context) Context {
ctx.RestrictContractDeployment = enabled
return ctx
}
}
// WithCadenceLogging enables or disables Cadence logging for a
// virtual machine context.
func WithCadenceLogging(enabled bool) Option {
return func(ctx Context) Context {
ctx.CadenceLoggingEnabled = enabled
return ctx
}
}
// WithAccountStorageLimit enables or disables checking if account storage used is
// over its storage capacity
func WithAccountStorageLimit(enabled bool) Option {
return func(ctx Context) Context {
ctx.LimitAccountStorage = enabled
return ctx
}
}
// WithAuthorizationCheckxEnabled enables or disables pre-execution
// authorization checks.
func WithAuthorizationChecksEnabled(enabled bool) Option {
return func(ctx Context) Context {
ctx.AuthorizationChecksEnabled = enabled
return ctx
}
}
// WithSequenceNumberCheckAndIncrementEnabled enables or disables pre-execution
// sequence number check / increment.
func WithSequenceNumberCheckAndIncrementEnabled(enabled bool) Option {
return func(ctx Context) Context {
ctx.SequenceNumberCheckAndIncrementEnabled = enabled
return ctx
}
}
// WithAccountKeyWeightThreshold sets the key weight threshold used for
// authorization checks. If the threshold is a negative number, signature
// verification is skipped.
//
// Note: This is set only by tests
func WithAccountKeyWeightThreshold(threshold int) Option {
return func(ctx Context) Context {
ctx.AccountKeyWeightThreshold = threshold
return ctx
}
}
// WithTransactionBodyExecutionEnabled enables or disables the transaction body
// execution.
//
// Note: This is disabled only by tests
func WithTransactionBodyExecutionEnabled(enabled bool) Option {
return func(ctx Context) Context {
ctx.TransactionBodyExecutionEnabled = enabled
return ctx
}
}
// WithTransactionFeesEnabled enables or disables deduction of transaction fees
func WithTransactionFeesEnabled(enabled bool) Option {
return func(ctx Context) Context {
ctx.TransactionFeesEnabled = enabled
return ctx
}
}
// WithRandomSourceHistoryCallAllowed enables or disables calling the `entropy` function
// within cadence
func WithRandomSourceHistoryCallAllowed(allowed bool) Option {
return func(ctx Context) Context {
ctx.RandomSourceHistoryCallAllowed = allowed
return ctx
}
}
// WithReusableCadenceRuntimePool set the (shared) RedusableCadenceRuntimePool
// use for creating the cadence runtime.
func WithReusableCadenceRuntimePool(
pool reusableRuntime.ReusableCadenceRuntimePool,
) Option {
return func(ctx Context) Context {
ctx.ReusableCadenceRuntimePool = pool
return ctx
}
}
// WithDerivedBlockData sets the derived data cache storage to be used by the
// transaction/script.
func WithDerivedBlockData(derivedBlockData *derived.DerivedBlockData) Option {
return func(ctx Context) Context {
ctx.DerivedBlockData = derivedBlockData
return ctx
}
}
// WithEventEncoder sets events encoder to be used for encoding events emitted during execution
func WithEventEncoder(encoder environment.EventEncoder) Option {
return func(ctx Context) Context {
ctx.EventEncoder = encoder
return ctx
}
}
// WithAllowProgramCacheWritesInScriptsEnabled enables caching of programs accessed by scripts
func WithAllowProgramCacheWritesInScriptsEnabled(enabled bool) Option {
return func(ctx Context) Context {
ctx.AllowProgramCacheWritesInScripts = enabled
return ctx
}
}
// WithEntropyProvider sets the entropy provider of a virtual machine context.
//
// The VM uses the input to provide entropy to the Cadence runtime randomness functions.
func WithEntropyProvider(source environment.EntropyProvider) Option {
return func(ctx Context) Context {
ctx.EntropyProvider = source
return ctx
}
}
// WithExecutionVersionProvider sets the execution version provider of a virtual machine context.
//
// this is used to provide the execution version to the Cadence runtime.
func WithExecutionVersionProvider(provider environment.ExecutionVersionProvider) Option {
return func(ctx Context) Context {
ctx.ExecutionVersionProvider = provider
return ctx
}
}
// WithProtocolStateSnapshot sets all the necessary components from a subset of the protocol state
// to the virtual machine context.
func WithProtocolStateSnapshot(snapshot protocol.SnapshotExecutionSubset) Option {
return func(ctx Context) Context {
ctx = WithEntropyProvider(snapshot)(ctx)
ctx = WithExecutionVersionProvider(environment.NewVersionBeaconExecutionVersionProvider(snapshot.VersionBeacon))(ctx)
return ctx
}
}
// WithScheduledTransactionsEnabled enables execution of scheduled transactions.
func WithScheduledTransactionsEnabled(enabled bool) Option {
return func(ctx Context) Context {
ctx.ScheduledTransactionsEnabled = enabled
return ctx
}
}
// Deprecated: WithScheduleCallbacksEnabled is deprecated, use WithScheduledTransactionsEnabled instead.
func WithScheduleCallbacksEnabled(enabled bool) Option {
return WithScheduledTransactionsEnabled(enabled)
}