forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.go
More file actions
377 lines (331 loc) · 13.5 KB
/
service.go
File metadata and controls
377 lines (331 loc) · 13.5 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
package opnode
import (
"context"
"encoding/json"
"errors"
"fmt"
"math/big"
"os"
"strings"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/params"
altda "github.com/ethereum-optimism/optimism/op-alt-da"
"github.com/ethereum-optimism/optimism/op-node/chaincfg"
"github.com/ethereum-optimism/optimism/op-node/config"
"github.com/ethereum-optimism/optimism/op-node/flags"
p2pcli "github.com/ethereum-optimism/optimism/op-node/p2p/cli"
"github.com/ethereum-optimism/optimism/op-node/rollup"
"github.com/ethereum-optimism/optimism/op-node/rollup/driver"
"github.com/ethereum-optimism/optimism/op-node/rollup/engine"
"github.com/ethereum-optimism/optimism/op-node/rollup/finality"
"github.com/ethereum-optimism/optimism/op-node/rollup/interop"
"github.com/ethereum-optimism/optimism/op-node/rollup/sync"
"github.com/ethereum-optimism/optimism/op-service/cliiface"
"github.com/ethereum-optimism/optimism/op-service/eth"
opflags "github.com/ethereum-optimism/optimism/op-service/flags"
"github.com/ethereum-optimism/optimism/op-service/jsonutil"
opmetrics "github.com/ethereum-optimism/optimism/op-service/metrics"
"github.com/ethereum-optimism/optimism/op-service/oppprof"
"github.com/ethereum-optimism/optimism/op-service/rpc"
"github.com/ethereum-optimism/optimism/op-service/sources"
"github.com/ethereum-optimism/optimism/op-supervisor/supervisor/backend/depset"
)
// NewConfig creates a Config from the provided flags or environment variables.
func NewConfig(ctx cliiface.Context, log log.Logger) (*config.Config, error) {
if err := flags.CheckRequired(ctx); err != nil {
return nil, err
}
rollupConfig, err := NewRollupConfigFromCLI(log, ctx)
if err != nil {
return nil, err
}
l1ChainConfig, err := NewL1ChainConfig(rollupConfig.L1ChainID, ctx, log)
if err != nil {
return nil, err
}
depSet, err := NewDependencySetFromCLI(ctx)
if err != nil {
return nil, err
}
if !ctx.Bool(flags.RollupLoadProtocolVersions.Name) {
log.Info("Not opted in to ProtocolVersions signal loading, disabling ProtocolVersions contract now.")
rollupConfig.ProtocolVersionsAddress = common.Address{}
}
configPersistence := NewConfigPersistence(ctx)
driverConfig := NewDriverConfig(ctx)
p2pSignerSetup, err := p2pcli.LoadSignerSetup(ctx, log)
if err != nil {
return nil, fmt.Errorf("failed to load p2p signer: %w", err)
}
p2pConfig, err := p2pcli.NewConfig(ctx, rollupConfig.BlockTime)
if err != nil {
return nil, fmt.Errorf("failed to load p2p config: %w", err)
}
l1Endpoint := NewL1EndpointConfig(ctx)
l2Endpoint, err := NewL2EndpointConfig(ctx, log)
if err != nil {
return nil, fmt.Errorf("failed to load l2 endpoints info: %w", err)
}
syncConfig, err := NewSyncConfig(ctx, log)
if err != nil {
return nil, fmt.Errorf("failed to create the sync config: %w", err)
}
haltOption := ctx.String(flags.RollupHalt.Name)
if haltOption == "none" {
haltOption = ""
}
if ctx.IsSet(flags.HeartbeatEnabledFlag.Name) ||
ctx.IsSet(flags.HeartbeatMonikerFlag.Name) ||
ctx.IsSet(flags.HeartbeatURLFlag.Name) {
log.Warn("Heartbeat functionality is not supported anymore, CLI flags will be removed in following release.")
}
conductorRPCEndpoint := ctx.String(flags.ConductorRpcFlag.Name)
cfg := &config.Config{
L1: l1Endpoint,
L2: l2Endpoint,
L1ChainConfig: l1ChainConfig,
Rollup: *rollupConfig,
DependencySet: depSet,
Driver: *driverConfig,
Beacon: NewBeaconEndpointConfig(ctx),
InteropConfig: NewSupervisorEndpointConfig(ctx),
RPC: rpc.ReadCLIConfig(ctx),
Metrics: opmetrics.ReadCLIConfig(ctx),
Pprof: oppprof.ReadCLIConfig(ctx),
P2P: p2pConfig,
P2PSigner: p2pSignerSetup,
L1EpochPollInterval: ctx.Duration(flags.L1EpochPollIntervalFlag.Name),
RuntimeConfigReloadInterval: ctx.Duration(flags.RuntimeConfigReloadIntervalFlag.Name),
ConfigPersistence: configPersistence,
SafeDBPath: ctx.String(flags.SafeDBPath.Name),
Sync: *syncConfig,
L2FollowSource: NewL2FollowSourceConfig(ctx),
RollupHalt: haltOption,
ConductorEnabled: ctx.Bool(flags.ConductorEnabledFlag.Name),
ConductorRpc: func(context.Context) (string, error) {
return conductorRPCEndpoint, nil
},
ConductorRpcTimeout: ctx.Duration(flags.ConductorRpcTimeoutFlag.Name),
AltDA: altda.ReadCLIConfig(ctx),
IgnoreMissingPectraBlobSchedule: ctx.Bool(flags.IgnoreMissingPectraBlobSchedule.Name),
FetchWithdrawalRootFromState: ctx.Bool(flags.FetchWithdrawalRootFromState.Name),
ExperimentalOPStackAPI: ctx.Bool(flags.ExperimentalOPStackAPI.Name),
}
if err := cfg.LoadPersisted(log); err != nil {
return nil, fmt.Errorf("failed to load driver config: %w", err)
}
// conductor controls the sequencer state
if cfg.ConductorEnabled {
cfg.Driver.SequencerStopped = true
}
if err := cfg.Check(); err != nil {
return nil, err
}
return cfg, nil
}
func NewSupervisorEndpointConfig(ctx cliiface.Context) *interop.Config {
return &interop.Config{
RPCAddr: ctx.String(flags.InteropRPCAddr.Name),
RPCPort: ctx.Int(flags.InteropRPCPort.Name),
RPCJwtSecretPath: ctx.String(flags.InteropJWTSecret.Name),
}
}
func NewBeaconEndpointConfig(ctx cliiface.Context) config.L1BeaconEndpointSetup {
return &config.L1BeaconEndpointConfig{
BeaconAddr: ctx.String(flags.BeaconAddr.Name),
BeaconHeader: ctx.String(flags.BeaconHeader.Name),
BeaconFallbackAddrs: ctx.StringSlice(flags.BeaconFallbackAddrs.Name),
BeaconCheckIgnore: ctx.Bool(flags.BeaconCheckIgnore.Name),
BeaconFetchAllSidecars: ctx.Bool(flags.BeaconFetchAllSidecars.Name),
}
}
func NewL1EndpointConfig(ctx cliiface.Context) *config.L1EndpointConfig {
return &config.L1EndpointConfig{
L1NodeAddr: ctx.String(flags.L1NodeAddr.Name),
L1TrustRPC: ctx.Bool(flags.L1TrustRPC.Name),
L1RPCKind: sources.RPCProviderKind(strings.ToLower(ctx.String(flags.L1RPCProviderKind.Name))),
RateLimit: ctx.Float64(flags.L1RPCRateLimit.Name),
BatchSize: ctx.Int(flags.L1RPCMaxBatchSize.Name),
HttpPollInterval: ctx.Duration(flags.L1HTTPPollInterval.Name),
MaxConcurrency: ctx.Int(flags.L1RPCMaxConcurrency.Name),
CacheSize: ctx.Uint(flags.L1CacheSize.Name),
}
}
func NewL2EndpointConfig(ctx cliiface.Context, logger log.Logger) (*config.L2EndpointConfig, error) {
l2Addr := ctx.String(flags.L2EngineAddr.Name)
fileName := ctx.String(flags.L2EngineJWTSecret.Name)
secret, err := rpc.ObtainJWTSecret(logger, fileName, true)
if err != nil {
return nil, err
}
l2RpcTimeout := ctx.Duration(flags.L2EngineRpcTimeout.Name)
return &config.L2EndpointConfig{
L2EngineAddr: l2Addr,
L2EngineJWTSecret: secret,
L2EngineCallTimeout: l2RpcTimeout,
}, nil
}
func NewL2FollowSourceConfig(ctx cliiface.Context) *config.L2FollowSourceConfig {
l2Addr := ctx.String(flags.L2FollowSource.Name)
l2RpcTimeout := ctx.Duration(flags.L2FollowSourceRpcTimeout.Name)
return &config.L2FollowSourceConfig{
L2RPCAddr: l2Addr,
L2RPCCallTimeout: l2RpcTimeout,
}
}
func NewConfigPersistence(ctx cliiface.Context) config.ConfigPersistence {
stateFile := ctx.String(flags.RPCAdminPersistence.Name)
if stateFile == "" {
return config.DisabledConfigPersistence{}
}
return config.NewConfigPersistence(stateFile)
}
func NewDriverConfig(ctx cliiface.Context) *driver.Config {
cfg := &driver.Config{
VerifierConfDepth: ctx.Uint64(flags.VerifierL1Confs.Name),
SequencerConfDepth: ctx.Uint64(flags.SequencerL1Confs.Name),
SequencerEnabled: ctx.Bool(flags.SequencerEnabledFlag.Name),
SequencerStopped: ctx.Bool(flags.SequencerStoppedFlag.Name),
SequencerMaxSafeLag: ctx.Uint64(flags.SequencerMaxSafeLagFlag.Name),
RecoverMode: ctx.Bool(flags.SequencerRecoverMode.Name),
}
// Populate finality config from flags. A finality config with null fields
// is handled the same way as a null finality config.
cfg.Finalizer = &finality.Config{}
if ctx.IsSet(flags.FinalityLookbackFlag.Name) {
lookback := ctx.Uint64(flags.FinalityLookbackFlag.Name)
cfg.Finalizer.FinalityLookback = &lookback
}
if ctx.IsSet(flags.FinalityDelayFlag.Name) {
delay := ctx.Uint64(flags.FinalityDelayFlag.Name)
cfg.Finalizer.FinalityDelay = &delay
}
return cfg
}
func NewRollupConfigFromCLI(log log.Logger, ctx cliiface.Context) (*rollup.Config, error) {
network := ctx.String(opflags.NetworkFlagName)
rollupConfigPath := ctx.String(opflags.RollupConfigFlagName)
if ctx.Bool(flags.BetaExtraNetworks.Name) {
log.Warn("The beta.extra-networks flag is deprecated and can be omitted safely.")
}
rollupConfig, err := NewRollupConfig(log, network, rollupConfigPath)
if err != nil {
return nil, err
}
applyOverrides(ctx, rollupConfig)
return rollupConfig, nil
}
func NewRollupConfig(log log.Logger, network string, rollupConfigPath string) (*rollup.Config, error) {
if network != "" {
if rollupConfigPath != "" {
log.Error(`Cannot configure network and rollup-config at the same time.
Startup will proceed to use the network-parameter and ignore the rollup config.
Conflicting configuration is deprecated, and will stop the op-node from starting in the future.
`, "network", network, "rollup_config", rollupConfigPath)
}
rollupConfig, err := chaincfg.GetRollupConfig(network)
if err != nil {
return nil, err
}
return rollupConfig, nil
}
file, err := os.Open(rollupConfigPath)
if err != nil {
return nil, fmt.Errorf("failed to read rollup config: %w", err)
}
defer file.Close()
var rollupConfig rollup.Config
dec := json.NewDecoder(file)
dec.DisallowUnknownFields()
if err := dec.Decode(&rollupConfig); err != nil {
return nil, fmt.Errorf("failed to decode rollup config: %w", err)
}
return &rollupConfig, nil
}
func applyOverrides(ctx cliiface.Context, rollupConfig *rollup.Config) {
for _, fork := range opflags.OverridableForks {
flagName := opflags.OverrideName(fork)
if ctx.IsSet(flagName) {
timestamp := ctx.Uint64(flagName)
rollupConfig.SetActivationTime(fork, ×tamp)
}
}
}
func NewL1ChainConfig(chainId *big.Int, ctx cliiface.Context, log log.Logger) (*params.ChainConfig, error) {
if chainId == nil {
panic("l1 chain id is nil")
}
if cfg := eth.L1ChainConfigByChainID(eth.ChainIDFromBig(chainId)); cfg != nil {
return cfg, nil
}
// if the chain id is not known, we fallback to the CLI config
cf, err := NewL1ChainConfigFromCLI(log, ctx)
if err != nil {
return nil, err
}
if cf.ChainID.Cmp(chainId) != 0 {
return nil, fmt.Errorf("l1 chain config chain ID mismatch: %v != %v", cf.ChainID, chainId)
}
if !cf.IsOptimism() && cf.BlobScheduleConfig == nil {
// No error if the chain config is an OP-Stack chain and doesn't have a blob schedule config
return nil, fmt.Errorf("L1 chain config does not have a blob schedule config")
}
return cf, nil
}
func NewL1ChainConfigFromCLI(log log.Logger, ctx cliiface.Context) (*params.ChainConfig, error) {
l1ChainConfigPath := ctx.String(flags.L1ChainConfig.Name)
file, err := os.Open(l1ChainConfigPath)
if err != nil {
return nil, fmt.Errorf("failed to read chain spec: %w", err)
}
defer file.Close()
// Attempt to decode directly as a ChainConfig
var chainConfig params.ChainConfig
dec := json.NewDecoder(file)
dec.DisallowUnknownFields()
if err := dec.Decode(&chainConfig); err == nil {
return &chainConfig, nil
}
// If that fails, try to load the config from the .config property.
// This should work if the provided file is a genesis file / chainspec
return jsonutil.LoadJSONFieldStrict[params.ChainConfig](l1ChainConfigPath, "config")
}
func NewDependencySetFromCLI(cli cliiface.Context) (depset.DependencySet, error) {
if !cli.IsSet(flags.InteropDependencySet.Name) {
return nil, nil
}
loader := &depset.JSONDependencySetLoader{Path: cli.Path(flags.InteropDependencySet.Name)}
return loader.LoadDependencySet()
}
func NewSyncConfig(ctx cliiface.Context, log log.Logger) (*sync.Config, error) {
if ctx.IsSet(flags.L2EngineSyncEnabled.Name) && ctx.IsSet(flags.SyncModeFlag.Name) {
return nil, errors.New("cannot set both --l2.engine-sync and --syncmode at the same time")
} else if ctx.IsSet(flags.L2EngineSyncEnabled.Name) {
log.Error("l2.engine-sync is deprecated and will be removed in a future release. Use --syncmode=execution-layer instead.")
}
l2FollowSourceEndpoint := ctx.String(flags.L2FollowSource.Name)
rrSyncEnabled := ctx.Bool(flags.SyncModeReqRespFlag.Name)
// p2p.sync.req-resp=false && syncmode.req-resp=true is not allowed
if !ctx.Bool(flags.SyncReqRespName) && rrSyncEnabled {
return nil, errors.New("cannot set --p2p.sync.req-resp=false and --syncmode.req-resp=true at the same time")
}
mode, err := sync.StringToMode(ctx.String(flags.SyncModeFlag.Name))
if err != nil {
return nil, err
}
engineKind := engine.Kind(ctx.String(flags.L2EngineKind.Name))
cfg := &sync.Config{
SyncMode: mode,
SyncModeReqResp: ctx.Bool(flags.SyncModeReqRespFlag.Name),
SkipSyncStartCheck: ctx.Bool(flags.SkipSyncStartCheck.Name),
SupportsPostFinalizationELSync: engineKind.SupportsPostFinalizationELSync(),
L2FollowSourceEndpoint: l2FollowSourceEndpoint,
// Sequencer needs a manual initial reset when follow source
NeedInitialResetEngine: ctx.Bool(flags.SequencerEnabledFlag.Name) && l2FollowSourceEndpoint != "",
}
if ctx.Bool(flags.L2EngineSyncEnabled.Name) {
cfg.SyncMode = sync.ELSync
}
return cfg, nil
}