This repository was archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnew_block.go
268 lines (230 loc) · 6.25 KB
/
new_block.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
package commander
import (
"context"
stdErrors "errors"
"math/big"
"github.com/Worldcoin/hubble-commander/eth/chain"
"github.com/Worldcoin/hubble-commander/metrics"
"github.com/ethereum/go-ethereum/core/types"
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
)
var (
ErrIncompleteBlockRangeSync = stdErrors.New("syncing of a block range was stopped prematurely")
ErrRollbackInProgress = stdErrors.New("rollback is in progress")
newBlockTracer = otel.Tracer("newBlockLoop")
)
func (c *Commander) newBlockLoop() error {
latestBlockNumber, err := c.client.Blockchain.GetLatestBlockNumber()
if err != nil {
return err
}
log.WithFields(log.Fields{"latestBlockNumber": *latestBlockNumber}).Debug("Starting newBlockLoop")
c.metrics.LatestBlockNumber.Set(float64(*latestBlockNumber))
blocks := make(chan *types.Header, 5)
blocks <- &types.Header{Number: new(big.Int).SetUint64(*latestBlockNumber)}
subscription, err := c.client.Blockchain.SubscribeNewHead(blocks)
if err != nil {
return err
}
defer subscription.Unsubscribe()
for {
select {
case <-c.workersContext.Done():
return nil
case err = <-subscription.Err():
return err
case currentBlock := <-blocks:
if currentBlock.Number.Uint64() <= uint64(c.storage.GetLatestBlockNumber()) {
log.WithFields(log.Fields{
"RemoteBlock": currentBlock.Number.Uint64(),
"LocalBlock": c.storage.GetLatestBlockNumber(),
}).Warn("Possible unhandled reorg: received an old block")
continue
}
err = c.newBlockLoopIteration(currentBlock)
if errors.Is(err, ErrIncompleteBlockRangeSync) {
return nil
}
if err != nil {
return err
}
}
}
}
func (c *Commander) newBlockLoopIteration(currentBlock *types.Header) error {
err := c.syncAndManageRollbacks()
if errors.Is(err, ErrRollbackInProgress) {
return nil
}
if errors.Is(err, chain.ErrWaitToBeMinedTimedOut) {
// Can happen for dispute or keepRollingBack transactions, continue the loop to retry if necessary
return nil
}
if err != nil {
return err
}
err = c.withdrawRemainingStakes(currentBlock.Number.Uint64())
if err != nil {
return errors.WithStack(err)
}
if c.isMigrating() {
return c.migrate()
}
isProposer, err := c.client.IsActiveProposer()
if err != nil {
return errors.WithStack(err)
}
c.manageRollupLoop(isProposer)
return nil
}
func (c *Commander) syncAndManageRollbacks() error {
err := c.syncToLatestBlock()
if err != nil && !errors.Is(err, ErrRollbackInProgress) {
return err
}
return c.keepRollingBackIfNecessary()
}
func (c *Commander) keepRollingBackIfNecessary() (err error) {
c.invalidBatchID, err = c.client.GetInvalidBatchID()
if err != nil {
return err
}
if c.invalidBatchID != nil {
err = c.client.KeepRollingBack()
if err != nil {
return err
}
return ErrRollbackInProgress
}
return nil
}
func (c *Commander) syncToLatestBlock() (err error) {
latestBlockNumber, err := c.updateLatestBlockNumber()
if err != nil {
return err
}
syncedBlock, err := c.storage.GetSyncedBlock()
if err != nil {
return err
}
for *syncedBlock != *latestBlockNumber {
c.invalidBatchID, err = c.client.GetInvalidBatchID()
if err != nil {
return err
}
syncedBlock, err = c.syncForward(*latestBlockNumber)
if err != nil {
return err
}
latestBlockNumber, err = c.updateLatestBlockNumber()
if err != nil {
return err
}
select {
case <-c.workersContext.Done():
return nil
default:
continue
}
}
return nil
}
func (c *Commander) updateLatestBlockNumber() (*uint64, error) {
latestBlockNumber, err := c.client.Blockchain.GetLatestBlockNumber()
if err != nil {
return nil, err
}
c.storage.SetLatestBlockNumber(uint32(*latestBlockNumber))
c.metrics.LatestBlockNumber.Set(float64(*latestBlockNumber))
return latestBlockNumber, nil
}
func (c *Commander) syncForward(latestBlockNumber uint64) (*uint64, error) {
syncedBlock, err := c.storage.GetSyncedBlock()
if err != nil {
return nil, errors.WithStack(err)
}
startBlock := *syncedBlock + 1
endBlock := min(latestBlockNumber, startBlock+uint64(c.cfg.Rollup.SyncSize))
log.WithFields(log.Fields{
"startBlock": startBlock,
"endBlock": endBlock,
"latestBlock": latestBlockNumber,
}).Info("syncing forward")
duration, err := metrics.MeasureDuration(func() error {
return c.syncRange(startBlock, endBlock)
})
if err != nil {
return nil, err
}
c.metrics.SyncedBlockNumber.Set(float64(endBlock))
err = c.storage.SetSyncedBlock(endBlock)
if err != nil {
return nil, errors.WithStack(err)
}
metrics.SaveHistogramMeasurement(duration, c.metrics.SyncingMethodDuration, prometheus.Labels{
"method": metrics.SyncRangeMethod,
})
return &endBlock, nil
}
func (c *Commander) syncRange(startBlock, endBlock uint64) error {
ctx, span := newBlockTracer.Start(context.Background(), "syncRange")
defer span.End()
span.SetAttributes(
attribute.Int("hubble.startBlock", int(startBlock)),
attribute.Int("hubble.endBlock", int(endBlock)),
)
// TODO: each of these errors.WithStack calls ought to be unnecessary, because
// these methods should return errors which are already wrapped.
err := c.syncAccounts(ctx, startBlock, endBlock)
if err != nil {
return errors.WithStack(err)
}
err = c.syncTokens(ctx, startBlock, endBlock)
if err != nil {
return errors.WithStack(err)
}
err = c.syncSpokes(ctx, startBlock, endBlock)
if err != nil {
return errors.WithStack(err)
}
err = c.syncDeposits(ctx, startBlock, endBlock)
if err != nil {
return errors.WithStack(err)
}
err = c.syncBatches(ctx, startBlock, endBlock)
if err != nil {
return errors.WithStack(err)
}
err = c.syncStakeWithdrawals(ctx, startBlock, endBlock)
if err != nil {
return errors.WithStack(err)
}
return nil
}
func (c *Commander) withdrawRemainingStakes(currentBlock uint64) error {
stakes, err := c.storage.GetReadyStateWithdrawals(uint32(currentBlock))
if err != nil {
return err
}
for i := range stakes {
_, err = c.client.WithdrawStake(&stakes[i].BatchID)
if err != nil {
return err
}
err = c.storage.RemovePendingStakeWithdrawal(stakes[i].BatchID)
if err != nil {
return err
}
}
return nil
}
func min(x, y uint64) uint64 {
if x < y {
return x
}
return y
}