@aztec/archiver 0.0.1-commit.8c0b8ff → 0.0.1-commit.8cb2d04d8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -6
- package/dest/archiver.d.ts +6 -5
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +11 -5
- package/dest/config.d.ts +3 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +3 -2
- package/dest/errors.d.ts +28 -2
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +36 -2
- package/dest/factory.d.ts +2 -2
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +1 -3
- package/dest/l1/calldata_retriever.d.ts +1 -1
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +2 -1
- package/dest/l1/data_retrieval.d.ts +8 -5
- package/dest/l1/data_retrieval.d.ts.map +1 -1
- package/dest/l1/data_retrieval.js +26 -21
- package/dest/modules/data_source_base.d.ts +6 -4
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +10 -4
- package/dest/modules/data_store_updater.d.ts +5 -7
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +14 -56
- package/dest/modules/instrumentation.d.ts +15 -2
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +27 -6
- package/dest/modules/l1_synchronizer.d.ts +3 -2
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +143 -131
- package/dest/modules/validation.d.ts +1 -1
- package/dest/modules/validation.d.ts.map +1 -1
- package/dest/modules/validation.js +2 -2
- package/dest/store/block_store.d.ts +38 -4
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +187 -63
- package/dest/store/contract_class_store.d.ts +2 -3
- package/dest/store/contract_class_store.d.ts.map +1 -1
- package/dest/store/contract_class_store.js +1 -65
- package/dest/store/kv_archiver_store.d.ts +28 -13
- package/dest/store/kv_archiver_store.d.ts.map +1 -1
- package/dest/store/kv_archiver_store.js +33 -14
- package/dest/store/l2_tips_cache.d.ts +2 -1
- package/dest/store/l2_tips_cache.d.ts.map +1 -1
- package/dest/store/l2_tips_cache.js +27 -7
- package/dest/store/log_store.d.ts +6 -3
- package/dest/store/log_store.d.ts.map +1 -1
- package/dest/store/log_store.js +47 -10
- package/dest/store/message_store.d.ts +5 -1
- package/dest/store/message_store.d.ts.map +1 -1
- package/dest/store/message_store.js +20 -8
- package/dest/test/fake_l1_state.d.ts +2 -1
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +36 -6
- package/dest/test/mock_l1_to_l2_message_source.d.ts +1 -1
- package/dest/test/mock_l1_to_l2_message_source.d.ts.map +1 -1
- package/dest/test/mock_l1_to_l2_message_source.js +2 -1
- package/dest/test/mock_l2_block_source.d.ts +7 -2
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +28 -3
- package/dest/test/noop_l1_archiver.d.ts +1 -1
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +0 -1
- package/package.json +13 -13
- package/src/archiver.ts +19 -10
- package/src/config.ts +9 -2
- package/src/errors.ts +60 -2
- package/src/factory.ts +1 -3
- package/src/l1/calldata_retriever.ts +2 -1
- package/src/l1/data_retrieval.ts +25 -21
- package/src/modules/data_source_base.ts +23 -4
- package/src/modules/data_store_updater.ts +17 -83
- package/src/modules/instrumentation.ts +39 -7
- package/src/modules/l1_synchronizer.ts +166 -168
- package/src/modules/validation.ts +2 -2
- package/src/store/block_store.ts +243 -73
- package/src/store/contract_class_store.ts +1 -103
- package/src/store/kv_archiver_store.ts +52 -24
- package/src/store/l2_tips_cache.ts +58 -13
- package/src/store/log_store.ts +62 -20
- package/src/store/message_store.ts +26 -9
- package/src/structs/inbox_message.ts +1 -1
- package/src/test/fake_l1_state.ts +53 -9
- package/src/test/mock_l1_to_l2_message_source.ts +1 -0
- package/src/test/mock_l2_block_source.ts +37 -2
- package/src/test/noop_l1_archiver.ts +0 -1
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
import type { BlobClientInterface } from '@aztec/blob-client/client';
|
|
2
2
|
import { EpochCache } from '@aztec/epoch-cache';
|
|
3
|
-
import { InboxContract, RollupContract } from '@aztec/ethereum/contracts';
|
|
3
|
+
import { InboxContract, type InboxContractState, RollupContract } from '@aztec/ethereum/contracts';
|
|
4
4
|
import type { L1BlockId } from '@aztec/ethereum/l1-types';
|
|
5
5
|
import type { ViemPublicClient, ViemPublicDebugClient } from '@aztec/ethereum/types';
|
|
6
|
+
import { asyncPool } from '@aztec/foundation/async-pool';
|
|
6
7
|
import { maxBigint } from '@aztec/foundation/bigint';
|
|
7
8
|
import { BlockNumber, CheckpointNumber, EpochNumber } from '@aztec/foundation/branded-types';
|
|
8
|
-
import { Buffer32 } from '@aztec/foundation/buffer';
|
|
9
|
+
import { Buffer16, Buffer32 } from '@aztec/foundation/buffer';
|
|
9
10
|
import { pick } from '@aztec/foundation/collection';
|
|
10
11
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
11
12
|
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
13
|
+
import { retryTimes } from '@aztec/foundation/retry';
|
|
12
14
|
import { count } from '@aztec/foundation/string';
|
|
13
15
|
import { DateProvider, Timer, elapsed } from '@aztec/foundation/timer';
|
|
14
|
-
import { isDefined } from '@aztec/foundation/types';
|
|
16
|
+
import { isDefined, isErrorClass } from '@aztec/foundation/types';
|
|
15
17
|
import { type ArchiverEmitter, L2BlockSourceEvents, type ValidateCheckpointResult } from '@aztec/stdlib/block';
|
|
16
18
|
import { PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
|
|
17
19
|
import { type L1RollupConstants, getEpochAtSlot, getSlotAtNextL1Block } from '@aztec/stdlib/epoch-helpers';
|
|
@@ -27,6 +29,7 @@ import {
|
|
|
27
29
|
} from '../l1/data_retrieval.js';
|
|
28
30
|
import type { KVArchiverDataStore } from '../store/kv_archiver_store.js';
|
|
29
31
|
import type { L2TipsCache } from '../store/l2_tips_cache.js';
|
|
32
|
+
import { MessageStoreError } from '../store/message_store.js';
|
|
30
33
|
import type { InboxMessage } from '../structs/inbox_message.js';
|
|
31
34
|
import { ArchiverDataStoreUpdater } from './data_store_updater.js';
|
|
32
35
|
import type { ArchiverInstrumentation } from './instrumentation.js';
|
|
@@ -120,10 +123,15 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
120
123
|
|
|
121
124
|
@trackSpan('Archiver.syncFromL1')
|
|
122
125
|
public async syncFromL1(initialSyncComplete: boolean): Promise<void> {
|
|
126
|
+
// In between the various calls to L1, the block number can move meaning some of the following
|
|
127
|
+
// calls will return data for blocks that were not present during earlier calls. To combat this
|
|
128
|
+
// we ensure that all data retrieval methods only retrieve data up to the currentBlockNumber
|
|
129
|
+
// captured at the top of this function.
|
|
123
130
|
const currentL1Block = await this.publicClient.getBlock({ includeTransactions: false });
|
|
124
131
|
const currentL1BlockNumber = currentL1Block.number;
|
|
125
132
|
const currentL1BlockHash = Buffer32.fromString(currentL1Block.hash);
|
|
126
133
|
const currentL1Timestamp = currentL1Block.timestamp;
|
|
134
|
+
const currentL1BlockData = { l1BlockNumber: currentL1BlockNumber, l1BlockHash: currentL1BlockHash };
|
|
127
135
|
|
|
128
136
|
if (this.l1BlockHash && currentL1BlockHash.equals(this.l1BlockHash)) {
|
|
129
137
|
this.log.trace(`No new L1 blocks since last sync at L1 block ${this.l1BlockNumber}`);
|
|
@@ -140,45 +148,15 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
140
148
|
);
|
|
141
149
|
}
|
|
142
150
|
|
|
143
|
-
// Load sync point for blocks
|
|
144
|
-
const {
|
|
145
|
-
|
|
146
|
-
messagesSynchedTo = {
|
|
147
|
-
l1BlockNumber: this.l1Constants.l1StartBlock,
|
|
148
|
-
l1BlockHash: this.l1Constants.l1StartBlockHash,
|
|
149
|
-
},
|
|
150
|
-
} = await this.store.getSynchPoint();
|
|
151
|
+
// Load sync point for blocks defaulting to start block
|
|
152
|
+
const { blocksSynchedTo = this.l1Constants.l1StartBlock } = await this.store.getSynchPoint();
|
|
153
|
+
this.log.debug(`Starting new archiver sync iteration`, { blocksSynchedTo, currentL1BlockData });
|
|
151
154
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
currentL1BlockHash,
|
|
157
|
-
});
|
|
155
|
+
// Sync L1 to L2 messages. We retry this a few times since there are error conditions that reset the sync point, requiring a new iteration.
|
|
156
|
+
// Note that we cannot just wait for the l1 synchronizer to loop again, since the synchronizer would report as synced up to the current L1
|
|
157
|
+
// block, when that wouldn't be the case, since L1 to L2 messages would need another iteration.
|
|
158
|
+
await retryTimes(() => this.handleL1ToL2Messages(currentL1BlockData), 'Handling L1 to L2 messages', 3, 0.1);
|
|
158
159
|
|
|
159
|
-
// ********** Ensuring Consistency of data pulled from L1 **********
|
|
160
|
-
|
|
161
|
-
/**
|
|
162
|
-
* There are a number of calls in this sync operation to L1 for retrieving
|
|
163
|
-
* events and transaction data. There are a couple of things we need to bear in mind
|
|
164
|
-
* to ensure that data is read exactly once.
|
|
165
|
-
*
|
|
166
|
-
* The first is the problem of eventually consistent ETH service providers like Infura.
|
|
167
|
-
* Each L1 read operation will query data from the last L1 block that it saw emit its kind of data.
|
|
168
|
-
* (so pending L1 to L2 messages will read from the last L1 block that emitted a message and so on)
|
|
169
|
-
* This will mean the archiver will lag behind L1 and will only advance when there's L2-relevant activity on the chain.
|
|
170
|
-
*
|
|
171
|
-
* The second is that in between the various calls to L1, the block number can move meaning some
|
|
172
|
-
* of the following calls will return data for blocks that were not present during earlier calls.
|
|
173
|
-
* To combat this for the time being we simply ensure that all data retrieval methods only retrieve
|
|
174
|
-
* data up to the currentBlockNumber captured at the top of this function. We might want to improve on this
|
|
175
|
-
* in future but for the time being it should give us the guarantees that we need
|
|
176
|
-
*/
|
|
177
|
-
|
|
178
|
-
// ********** Events that are processed per L1 block **********
|
|
179
|
-
await this.handleL1ToL2Messages(messagesSynchedTo, currentL1BlockNumber);
|
|
180
|
-
|
|
181
|
-
// ********** Events that are processed per checkpoint **********
|
|
182
160
|
if (currentL1BlockNumber > blocksSynchedTo) {
|
|
183
161
|
// First we retrieve new checkpoints and L2 blocks and store them in the DB. This will also update the
|
|
184
162
|
// pending chain validation status, proven checkpoint number, and synched L1 block number.
|
|
@@ -245,16 +223,10 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
245
223
|
const localFinalizedCheckpointNumber = await this.store.getFinalizedCheckpointNumber();
|
|
246
224
|
if (localFinalizedCheckpointNumber !== finalizedCheckpointNumber) {
|
|
247
225
|
await this.updater.setFinalizedCheckpointNumber(finalizedCheckpointNumber);
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
finalizedCheckpointNumber,
|
|
253
|
-
previousFinalizedCheckpointNumber: localFinalizedCheckpointNumber,
|
|
254
|
-
finalizedL2BlockNumber,
|
|
255
|
-
finalizedL1BlockNumber,
|
|
256
|
-
},
|
|
257
|
-
);
|
|
226
|
+
this.log.info(`Updated finalized chain to checkpoint ${finalizedCheckpointNumber}`, {
|
|
227
|
+
finalizedCheckpointNumber,
|
|
228
|
+
finalizedL1BlockNumber,
|
|
229
|
+
});
|
|
258
230
|
}
|
|
259
231
|
} catch (err: any) {
|
|
260
232
|
// The rollup contract may not exist at the finalized L1 block right after deployment.
|
|
@@ -277,29 +249,33 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
277
249
|
return;
|
|
278
250
|
}
|
|
279
251
|
|
|
280
|
-
// What's the slot
|
|
252
|
+
// What's the slot at the next L1 block? All blocks for slots strictly before this one should've been checkpointed by now.
|
|
253
|
+
const slotAtNextL1Block = getSlotAtNextL1Block(currentL1Timestamp, this.l1Constants);
|
|
281
254
|
const firstUncheckpointedBlockNumber = BlockNumber(lastCheckpointedBlockNumber + 1);
|
|
255
|
+
|
|
256
|
+
// What's the slot of the first uncheckpointed block?
|
|
282
257
|
const [firstUncheckpointedBlockHeader] = await this.store.getBlockHeaders(firstUncheckpointedBlockNumber, 1);
|
|
283
258
|
const firstUncheckpointedBlockSlot = firstUncheckpointedBlockHeader?.getSlot();
|
|
284
259
|
|
|
285
|
-
|
|
286
|
-
|
|
260
|
+
if (firstUncheckpointedBlockSlot === undefined || firstUncheckpointedBlockSlot >= slotAtNextL1Block) {
|
|
261
|
+
return;
|
|
262
|
+
}
|
|
287
263
|
|
|
288
|
-
// Prune provisional blocks from slots that have ended without being checkpointed
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
const prunedBlocks = await this.updater.removeUncheckpointedBlocksAfter(lastCheckpointedBlockNumber);
|
|
264
|
+
// Prune provisional blocks from slots that have ended without being checkpointed.
|
|
265
|
+
// This also clears any proposed checkpoint whose blocks are being pruned.
|
|
266
|
+
this.log.warn(
|
|
267
|
+
`Pruning blocks after block ${lastCheckpointedBlockNumber} due to slot ${firstUncheckpointedBlockSlot} not being checkpointed`,
|
|
268
|
+
{ firstUncheckpointedBlockHeader: firstUncheckpointedBlockHeader.toInspect(), slotAtNextL1Block },
|
|
269
|
+
);
|
|
295
270
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
271
|
+
const prunedBlocks = await this.updater.removeUncheckpointedBlocksAfter(lastCheckpointedBlockNumber);
|
|
272
|
+
|
|
273
|
+
if (prunedBlocks.length > 0) {
|
|
274
|
+
this.events.emit(L2BlockSourceEvents.L2PruneUncheckpointed, {
|
|
275
|
+
type: L2BlockSourceEvents.L2PruneUncheckpointed,
|
|
276
|
+
slotNumber: firstUncheckpointedBlockSlot,
|
|
277
|
+
blocks: prunedBlocks,
|
|
278
|
+
});
|
|
303
279
|
}
|
|
304
280
|
}
|
|
305
281
|
|
|
@@ -342,17 +318,20 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
342
318
|
|
|
343
319
|
const checkpointsToUnwind = localPendingCheckpointNumber - provenCheckpointNumber;
|
|
344
320
|
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
const
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
checkpoints
|
|
352
|
-
.filter(isDefined)
|
|
353
|
-
.map(cp => this.store.getBlocksForCheckpoint(CheckpointNumber(cp.checkpointNumber))),
|
|
321
|
+
// Fetch checkpoints and blocks in bounded batches to avoid unbounded concurrent
|
|
322
|
+
// promises when the gap between local pending and proven checkpoint numbers is large.
|
|
323
|
+
const BATCH_SIZE = 10;
|
|
324
|
+
const indices = Array.from({ length: checkpointsToUnwind }, (_, i) => CheckpointNumber(i + pruneFrom));
|
|
325
|
+
const checkpoints = (await asyncPool(BATCH_SIZE, indices, idx => this.store.getCheckpointData(idx))).filter(
|
|
326
|
+
isDefined,
|
|
354
327
|
);
|
|
355
|
-
const newBlocks =
|
|
328
|
+
const newBlocks = (
|
|
329
|
+
await asyncPool(BATCH_SIZE, checkpoints, cp =>
|
|
330
|
+
this.store.getBlocksForCheckpoint(CheckpointNumber(cp.checkpointNumber)),
|
|
331
|
+
)
|
|
332
|
+
)
|
|
333
|
+
.filter(isDefined)
|
|
334
|
+
.flat();
|
|
356
335
|
|
|
357
336
|
// Emit an event for listening services to react to the chain prune
|
|
358
337
|
this.events.emit(L2BlockSourceEvents.L2PruneUnproven, {
|
|
@@ -390,63 +369,87 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
390
369
|
}
|
|
391
370
|
|
|
392
371
|
@trackSpan('Archiver.handleL1ToL2Messages')
|
|
393
|
-
private async handleL1ToL2Messages(
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
372
|
+
private async handleL1ToL2Messages(currentL1Block: L1BlockId): Promise<boolean> {
|
|
373
|
+
// Load the syncpoint, which may have been updated in a previous iteration
|
|
374
|
+
const {
|
|
375
|
+
messagesSynchedTo = {
|
|
376
|
+
l1BlockNumber: this.l1Constants.l1StartBlock,
|
|
377
|
+
l1BlockHash: this.l1Constants.l1StartBlockHash,
|
|
378
|
+
},
|
|
379
|
+
} = await this.store.getSynchPoint();
|
|
380
|
+
|
|
381
|
+
// Nothing to do if L1 block number has not moved forward
|
|
382
|
+
const currentL1BlockNumber = currentL1Block.l1BlockNumber;
|
|
383
|
+
if (currentL1BlockNumber <= messagesSynchedTo.l1BlockNumber) {
|
|
384
|
+
return true;
|
|
397
385
|
}
|
|
398
386
|
|
|
399
|
-
//
|
|
400
|
-
const localMessagesInserted = await this.store.getTotalL1ToL2MessageCount();
|
|
401
|
-
const localLastMessage = await this.store.getLastL1ToL2Message();
|
|
387
|
+
// Compare local message store state with the remote. If they match, we just advance the match pointer.
|
|
402
388
|
const remoteMessagesState = await this.inbox.getState({ blockNumber: currentL1BlockNumber });
|
|
389
|
+
const localLastMessage = await this.store.getLastL1ToL2Message();
|
|
390
|
+
if (await this.localStateMatches(localLastMessage, remoteMessagesState)) {
|
|
391
|
+
this.log.trace(`Local L1 to L2 messages are already in sync with remote at L1 block ${currentL1BlockNumber}`);
|
|
392
|
+
await this.store.setMessageSyncState(currentL1Block, remoteMessagesState.treeInProgress);
|
|
393
|
+
return true;
|
|
394
|
+
}
|
|
403
395
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
396
|
+
// If not, then we are out of sync. Most likely there are new messages on the inbox, so we try retrieving them.
|
|
397
|
+
// However, it could also be the case that there was an L1 reorg and our syncpoint is no longer valid.
|
|
398
|
+
// If that's the case, we'd get an exception out of the message store since the rolling hash of the first message
|
|
399
|
+
// we try to insert would not match the one in the db, in which case we rollback to the last common message with L1.
|
|
400
|
+
try {
|
|
401
|
+
await this.retrieveAndStoreMessages(messagesSynchedTo.l1BlockNumber, currentL1BlockNumber);
|
|
402
|
+
} catch (error) {
|
|
403
|
+
if (isErrorClass(error, MessageStoreError)) {
|
|
404
|
+
this.log.warn(
|
|
405
|
+
`Failed to store L1 to L2 messages retrieved from L1: ${error.message}. Rolling back syncpoint to retry.`,
|
|
406
|
+
{ inboxMessage: error.inboxMessage },
|
|
407
|
+
);
|
|
408
|
+
await this.rollbackL1ToL2Messages(remoteMessagesState.treeInProgress);
|
|
409
|
+
return false;
|
|
410
|
+
}
|
|
411
|
+
throw error;
|
|
412
|
+
}
|
|
409
413
|
|
|
410
|
-
//
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
) {
|
|
415
|
-
this.log.
|
|
416
|
-
`
|
|
414
|
+
// Note that, if there are no new messages to insert, but there was an L1 reorg that pruned out last messages,
|
|
415
|
+
// we'd notice by comparing our local state with the remote one again, and seeing they don't match even after
|
|
416
|
+
// our sync attempt. In this case, we also rollback our syncpoint, and trigger a retry.
|
|
417
|
+
const localLastMessageAfterSync = await this.store.getLastL1ToL2Message();
|
|
418
|
+
if (!(await this.localStateMatches(localLastMessageAfterSync, remoteMessagesState))) {
|
|
419
|
+
this.log.warn(
|
|
420
|
+
`Local L1 to L2 messages state does not match remote after sync attempt. Rolling back syncpoint to retry.`,
|
|
421
|
+
{ localLastMessageAfterSync, remoteMessagesState },
|
|
417
422
|
);
|
|
418
|
-
|
|
423
|
+
await this.rollbackL1ToL2Messages(remoteMessagesState.treeInProgress);
|
|
424
|
+
return false;
|
|
419
425
|
}
|
|
420
426
|
|
|
421
|
-
//
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
const remoteLastMessage = await this.retrieveL1ToL2Message(localLastMessage.leaf);
|
|
426
|
-
this.log.trace(`Retrieved remote message for local last`, { remoteLastMessage, localLastMessage });
|
|
427
|
-
if (!remoteLastMessage || !remoteLastMessage.rollingHash.equals(localLastMessage.rollingHash)) {
|
|
428
|
-
this.log.warn(`Rolling back L1 to L2 messages due to hash mismatch or msg not found.`, {
|
|
429
|
-
remoteLastMessage,
|
|
430
|
-
messagesSyncPoint,
|
|
431
|
-
localLastMessage,
|
|
432
|
-
});
|
|
427
|
+
// Advance the syncpoint after a successful sync
|
|
428
|
+
await this.store.setMessageSyncState(currentL1Block, remoteMessagesState.treeInProgress);
|
|
429
|
+
return true;
|
|
430
|
+
}
|
|
433
431
|
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
432
|
+
/** Checks if the local rolling hash and message count matches the remote state */
|
|
433
|
+
private async localStateMatches(localLastMessage: InboxMessage | undefined, remoteState: InboxContractState) {
|
|
434
|
+
const localMessageCount = await this.store.getTotalL1ToL2MessageCount();
|
|
435
|
+
this.log.trace(`Comparing local and remote inbox state`, { localMessageCount, localLastMessage, remoteState });
|
|
436
|
+
|
|
437
|
+
return (
|
|
438
|
+
remoteState.totalMessagesInserted === localMessageCount &&
|
|
439
|
+
remoteState.messagesRollingHash.equals(localLastMessage?.rollingHash ?? Buffer16.ZERO)
|
|
440
|
+
);
|
|
441
|
+
}
|
|
440
442
|
|
|
441
|
-
|
|
443
|
+
/** Retrieves L1 to L2 messages from L1 in batches and stores them. */
|
|
444
|
+
private async retrieveAndStoreMessages(fromL1Block: bigint, toL1Block: bigint): Promise<void> {
|
|
442
445
|
let searchStartBlock: bigint = 0n;
|
|
443
|
-
let searchEndBlock: bigint =
|
|
446
|
+
let searchEndBlock: bigint = fromL1Block;
|
|
444
447
|
|
|
445
448
|
let lastMessage: InboxMessage | undefined;
|
|
446
449
|
let messageCount = 0;
|
|
447
450
|
|
|
448
451
|
do {
|
|
449
|
-
[searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock,
|
|
452
|
+
[searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock, toL1Block);
|
|
450
453
|
this.log.trace(`Retrieving L1 to L2 messages in L1 blocks ${searchStartBlock}-${searchEndBlock}`);
|
|
451
454
|
const messages = await retrieveL1ToL2Messages(this.inbox, searchStartBlock, searchEndBlock);
|
|
452
455
|
const timer = new Timer();
|
|
@@ -458,81 +461,65 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
458
461
|
lastMessage = msg;
|
|
459
462
|
messageCount++;
|
|
460
463
|
}
|
|
461
|
-
} while (searchEndBlock <
|
|
464
|
+
} while (searchEndBlock < toL1Block);
|
|
462
465
|
|
|
463
|
-
// Log stats for messages retrieved (if any).
|
|
464
466
|
if (messageCount > 0) {
|
|
465
467
|
this.log.info(
|
|
466
468
|
`Retrieved ${messageCount} new L1 to L2 messages up to message with index ${lastMessage?.index} for checkpoint ${lastMessage?.checkpointNumber}`,
|
|
467
469
|
{ lastMessage, messageCount },
|
|
468
470
|
);
|
|
469
471
|
}
|
|
470
|
-
|
|
471
|
-
// Warn if the resulting rolling hash does not match the remote state we had retrieved.
|
|
472
|
-
if (lastMessage && !lastMessage.rollingHash.equals(remoteMessagesState.messagesRollingHash)) {
|
|
473
|
-
this.log.warn(`Last message retrieved rolling hash does not match remote state.`, {
|
|
474
|
-
lastMessage,
|
|
475
|
-
remoteMessagesState,
|
|
476
|
-
});
|
|
477
|
-
}
|
|
478
472
|
}
|
|
479
473
|
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
do {
|
|
486
|
-
[searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock, currentL1BlockNumber);
|
|
487
|
-
|
|
488
|
-
const message = await retrieveL1ToL2Message(this.inbox, leaf, searchStartBlock, searchEndBlock);
|
|
489
|
-
|
|
490
|
-
if (message) {
|
|
491
|
-
return message;
|
|
492
|
-
}
|
|
493
|
-
} while (searchEndBlock < currentL1BlockNumber);
|
|
494
|
-
|
|
495
|
-
return undefined;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
private async rollbackL1ToL2Messages(
|
|
499
|
-
localLastMessage: InboxMessage,
|
|
500
|
-
messagesSyncPoint: L1BlockId,
|
|
501
|
-
): Promise<L1BlockId> {
|
|
474
|
+
/**
|
|
475
|
+
* Rolls back local L1 to L2 messages to the last common message with L1, and updates the syncpoint to the L1 block of that message.
|
|
476
|
+
* If no common message is found, rolls back all messages and sets the syncpoint to the start block.
|
|
477
|
+
*/
|
|
478
|
+
private async rollbackL1ToL2Messages(remoteTreeInProgress: bigint): Promise<L1BlockId> {
|
|
502
479
|
// Slowly go back through our messages until we find the last common message.
|
|
503
480
|
// We could query the logs in batch as an optimization, but the depth of the reorg should not be deep, and this
|
|
504
481
|
// is a very rare case, so it's fine to query one log at a time.
|
|
505
482
|
let commonMsg: undefined | InboxMessage;
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
const
|
|
510
|
-
|
|
483
|
+
let messagesToDelete = 0;
|
|
484
|
+
this.log.verbose(`Searching most recent common L1 to L2 message`);
|
|
485
|
+
for await (const localMsg of this.store.iterateL1ToL2Messages({ reverse: true })) {
|
|
486
|
+
const remoteMsg = await retrieveL1ToL2Message(this.inbox, localMsg);
|
|
487
|
+
const logCtx = { remoteMsg, localMsg: localMsg };
|
|
488
|
+
if (remoteMsg && remoteMsg.rollingHash.equals(localMsg.rollingHash)) {
|
|
511
489
|
this.log.verbose(
|
|
512
|
-
`Found most recent common L1 to L2 message at index ${
|
|
490
|
+
`Found most recent common L1 to L2 message at index ${localMsg.index} on L1 block ${localMsg.l1BlockNumber}`,
|
|
513
491
|
logCtx,
|
|
514
492
|
);
|
|
515
493
|
commonMsg = remoteMsg;
|
|
516
494
|
break;
|
|
517
495
|
} else if (remoteMsg) {
|
|
518
|
-
this.log.debug(`Local L1 to L2 message with index ${
|
|
496
|
+
this.log.debug(`Local L1 to L2 message with index ${localMsg.index} has different rolling hash`, logCtx);
|
|
497
|
+
messagesToDelete++;
|
|
519
498
|
} else {
|
|
520
|
-
this.log.debug(`Local L1 to L2 message with index ${
|
|
499
|
+
this.log.debug(`Local L1 to L2 message with index ${localMsg.index} not found on L1`, logCtx);
|
|
500
|
+
messagesToDelete++;
|
|
521
501
|
}
|
|
522
502
|
}
|
|
523
503
|
|
|
524
|
-
// Delete everything after the common message we found.
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
504
|
+
// Delete everything after the common message we found, if anything needs to be deleted.
|
|
505
|
+
// Do not exit early if there are no messages to delete, we still want to update the syncpoint.
|
|
506
|
+
if (messagesToDelete > 0) {
|
|
507
|
+
const lastGoodIndex = commonMsg?.index;
|
|
508
|
+
this.log.warn(`Rolling back all local L1 to L2 messages after index ${lastGoodIndex ?? 'initial'}`);
|
|
509
|
+
await this.store.removeL1ToL2Messages(lastGoodIndex !== undefined ? lastGoodIndex + 1n : 0n);
|
|
510
|
+
}
|
|
528
511
|
|
|
529
512
|
// Update the syncpoint so the loop below reprocesses the changed messages. We go to the block before
|
|
530
513
|
// the last common one, so we force reprocessing it, in case new messages were added on that same L1 block
|
|
531
514
|
// after the last common message.
|
|
532
515
|
const syncPointL1BlockNumber = commonMsg ? commonMsg.l1BlockNumber - 1n : this.l1Constants.l1StartBlock;
|
|
533
516
|
const syncPointL1BlockHash = await this.getL1BlockHash(syncPointL1BlockNumber);
|
|
534
|
-
messagesSyncPoint = { l1BlockNumber: syncPointL1BlockNumber, l1BlockHash: syncPointL1BlockHash };
|
|
535
|
-
await this.store.
|
|
517
|
+
const messagesSyncPoint = { l1BlockNumber: syncPointL1BlockNumber, l1BlockHash: syncPointL1BlockHash };
|
|
518
|
+
await this.store.setMessageSyncState(messagesSyncPoint, remoteTreeInProgress);
|
|
519
|
+
this.log.verbose(`Updated messages syncpoint to L1 block ${syncPointL1BlockNumber}`, {
|
|
520
|
+
...messagesSyncPoint,
|
|
521
|
+
remoteTreeInProgress,
|
|
522
|
+
});
|
|
536
523
|
return messagesSyncPoint;
|
|
537
524
|
}
|
|
538
525
|
|
|
@@ -834,6 +821,14 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
834
821
|
);
|
|
835
822
|
}
|
|
836
823
|
|
|
824
|
+
for (const published of validCheckpoints) {
|
|
825
|
+
this.instrumentation.processCheckpointL1Timing({
|
|
826
|
+
slotNumber: published.checkpoint.header.slotNumber,
|
|
827
|
+
l1Timestamp: published.l1.timestamp,
|
|
828
|
+
l1Constants: this.l1Constants,
|
|
829
|
+
});
|
|
830
|
+
}
|
|
831
|
+
|
|
837
832
|
try {
|
|
838
833
|
const updatedValidationResult =
|
|
839
834
|
rollupStatus.validationResult === initialValidationResult ? undefined : rollupStatus.validationResult;
|
|
@@ -842,10 +837,13 @@ export class ArchiverL1Synchronizer implements Traceable {
|
|
|
842
837
|
this.updater.addCheckpoints(validCheckpoints, updatedValidationResult),
|
|
843
838
|
),
|
|
844
839
|
);
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
840
|
+
|
|
841
|
+
if (validCheckpoints.length > 0) {
|
|
842
|
+
this.instrumentation.processNewCheckpointedBlocks(
|
|
843
|
+
processDuration / validCheckpoints.length,
|
|
844
|
+
validCheckpoints.flatMap(c => c.checkpoint.blocks),
|
|
845
|
+
);
|
|
846
|
+
}
|
|
849
847
|
|
|
850
848
|
// If blocks were pruned due to conflict with L1 checkpoints, emit event
|
|
851
849
|
if (result.prunedBlocks && result.prunedBlocks.length > 0) {
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
getAttestationInfoFromPayload,
|
|
10
10
|
} from '@aztec/stdlib/block';
|
|
11
11
|
import type { PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
|
|
12
|
-
import { type L1RollupConstants, getEpochAtSlot } from '@aztec/stdlib/epoch-helpers';
|
|
12
|
+
import { type L1RollupConstants, computeQuorum, getEpochAtSlot } from '@aztec/stdlib/epoch-helpers';
|
|
13
13
|
import { ConsensusPayload } from '@aztec/stdlib/p2p';
|
|
14
14
|
|
|
15
15
|
export type { ValidateCheckpointResult };
|
|
@@ -66,7 +66,7 @@ export async function validateCheckpointAttestations(
|
|
|
66
66
|
return { valid: true };
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
const requiredAttestationCount =
|
|
69
|
+
const requiredAttestationCount = computeQuorum(committee.length);
|
|
70
70
|
|
|
71
71
|
const failedValidationResult = <TReason extends ValidateCheckpointNegativeResult['reason']>(reason: TReason) => ({
|
|
72
72
|
valid: false as const,
|