@lodestar/beacon-node 1.49.0-dev.fa4ae94ccc → 1.49.0-rc.0
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/lib/api/impl/beacon/blocks/index.d.ts.map +1 -1
- package/lib/api/impl/beacon/blocks/index.js +13 -4
- package/lib/api/impl/beacon/blocks/index.js.map +1 -1
- package/lib/chain/archiveStore/archiveStore.d.ts.map +1 -1
- package/lib/chain/archiveStore/archiveStore.js +5 -3
- package/lib/chain/archiveStore/archiveStore.js.map +1 -1
- package/lib/chain/archiveStore/historicalState/metrics.d.ts.map +1 -1
- package/lib/chain/archiveStore/historicalState/metrics.js +2 -1
- package/lib/chain/archiveStore/historicalState/metrics.js.map +1 -1
- package/lib/chain/archiveStore/utils/archiveBlocks.d.ts +11 -2
- package/lib/chain/archiveStore/utils/archiveBlocks.d.ts.map +1 -1
- package/lib/chain/archiveStore/utils/archiveBlocks.js +46 -28
- package/lib/chain/archiveStore/utils/archiveBlocks.js.map +1 -1
- package/lib/chain/archiveStore/utils/pruneHistory.d.ts +2 -2
- package/lib/chain/archiveStore/utils/pruneHistory.d.ts.map +1 -1
- package/lib/chain/archiveStore/utils/pruneHistory.js +1 -0
- package/lib/chain/archiveStore/utils/pruneHistory.js.map +1 -1
- package/lib/chain/blocks/importExecutionPayload.d.ts.map +1 -1
- package/lib/chain/blocks/importExecutionPayload.js +13 -0
- package/lib/chain/blocks/importExecutionPayload.js.map +1 -1
- package/lib/chain/chain.d.ts +10 -0
- package/lib/chain/chain.d.ts.map +1 -1
- package/lib/chain/chain.js +85 -16
- package/lib/chain/chain.js.map +1 -1
- package/lib/chain/errors/envelopeReconstructionError.d.ts +23 -0
- package/lib/chain/errors/envelopeReconstructionError.d.ts.map +1 -0
- package/lib/chain/errors/envelopeReconstructionError.js +13 -0
- package/lib/chain/errors/envelopeReconstructionError.js.map +1 -0
- package/lib/chain/errors/index.d.ts +1 -0
- package/lib/chain/errors/index.d.ts.map +1 -1
- package/lib/chain/errors/index.js +1 -0
- package/lib/chain/errors/index.js.map +1 -1
- package/lib/chain/interface.d.ts +6 -1
- package/lib/chain/interface.d.ts.map +1 -1
- package/lib/chain/interface.js.map +1 -1
- package/lib/chain/options.d.ts +2 -0
- package/lib/chain/options.d.ts.map +1 -1
- package/lib/chain/options.js +1 -0
- package/lib/chain/options.js.map +1 -1
- package/lib/db/repositories/executionPayloadEnvelopeArchive.d.ts +21 -9
- package/lib/db/repositories/executionPayloadEnvelopeArchive.d.ts.map +1 -1
- package/lib/db/repositories/executionPayloadEnvelopeArchive.js +32 -12
- package/lib/db/repositories/executionPayloadEnvelopeArchive.js.map +1 -1
- package/lib/db/repositories/index.d.ts +1 -1
- package/lib/db/repositories/index.d.ts.map +1 -1
- package/lib/db/repositories/index.js +1 -1
- package/lib/db/repositories/index.js.map +1 -1
- package/lib/execution/engine/disabled.d.ts +1 -0
- package/lib/execution/engine/disabled.d.ts.map +1 -1
- package/lib/execution/engine/disabled.js +3 -0
- package/lib/execution/engine/disabled.js.map +1 -1
- package/lib/execution/engine/http.d.ts +2 -1
- package/lib/execution/engine/http.d.ts.map +1 -1
- package/lib/execution/engine/http.js +7 -1
- package/lib/execution/engine/http.js.map +1 -1
- package/lib/execution/engine/interface.d.ts +3 -1
- package/lib/execution/engine/interface.d.ts.map +1 -1
- package/lib/execution/engine/mock.d.ts +1 -0
- package/lib/execution/engine/mock.d.ts.map +1 -1
- package/lib/execution/engine/mock.js +14 -2
- package/lib/execution/engine/mock.js.map +1 -1
- package/lib/execution/engine/types.d.ts +11 -0
- package/lib/execution/engine/types.d.ts.map +1 -1
- package/lib/execution/engine/types.js +10 -0
- package/lib/execution/engine/types.js.map +1 -1
- package/lib/metrics/metrics/beacon.d.ts +9 -0
- package/lib/metrics/metrics/beacon.d.ts.map +1 -1
- package/lib/metrics/metrics/beacon.js +16 -0
- package/lib/metrics/metrics/beacon.js.map +1 -1
- package/lib/metrics/metrics/lodestar.d.ts +12 -0
- package/lib/metrics/metrics/lodestar.d.ts.map +1 -1
- package/lib/metrics/metrics/lodestar.js +30 -0
- package/lib/metrics/metrics/lodestar.js.map +1 -1
- package/lib/metrics/metrics.d.ts +3 -1
- package/lib/metrics/metrics.d.ts.map +1 -1
- package/lib/metrics/metrics.js +2 -2
- package/lib/metrics/metrics.js.map +1 -1
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.d.ts.map +1 -1
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.js +47 -34
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRange.js.map +1 -1
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRoot.d.ts.map +1 -1
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRoot.js +23 -4
- package/lib/network/reqresp/handlers/executionPayloadEnvelopesByRoot.js.map +1 -1
- package/lib/network/reqresp/handlers/index.d.ts.map +1 -1
- package/lib/network/reqresp/handlers/index.js +20 -4
- package/lib/network/reqresp/handlers/index.js.map +1 -1
- package/lib/sync/types.d.ts +0 -2
- package/lib/sync/types.d.ts.map +1 -1
- package/lib/sync/types.js +0 -2
- package/lib/sync/types.js.map +1 -1
- package/lib/sync/unknownBlock.d.ts.map +1 -1
- package/lib/sync/unknownBlock.js +41 -13
- package/lib/sync/unknownBlock.js.map +1 -1
- package/lib/util/execution.d.ts +42 -0
- package/lib/util/execution.d.ts.map +1 -1
- package/lib/util/execution.js +123 -2
- package/lib/util/execution.js.map +1 -1
- package/lib/util/headerEnvelope.d.ts +17 -0
- package/lib/util/headerEnvelope.d.ts.map +1 -0
- package/lib/util/headerEnvelope.js +43 -0
- package/lib/util/headerEnvelope.js.map +1 -0
- package/package.json +16 -16
- package/src/api/impl/beacon/blocks/index.ts +16 -3
- package/src/chain/archiveStore/archiveStore.ts +6 -3
- package/src/chain/archiveStore/historicalState/metrics.ts +3 -2
- package/src/chain/archiveStore/utils/archiveBlocks.ts +54 -32
- package/src/chain/archiveStore/utils/pruneHistory.ts +4 -2
- package/src/chain/blocks/importExecutionPayload.ts +14 -0
- package/src/chain/chain.ts +96 -20
- package/src/chain/errors/envelopeReconstructionError.ts +22 -0
- package/src/chain/errors/index.ts +1 -0
- package/src/chain/interface.ts +6 -1
- package/src/chain/options.ts +3 -0
- package/src/db/buckets.ts +1 -1
- package/src/db/repositories/executionPayloadEnvelopeArchive.ts +43 -13
- package/src/db/repositories/index.ts +6 -1
- package/src/execution/engine/disabled.ts +4 -0
- package/src/execution/engine/http.ts +12 -0
- package/src/execution/engine/interface.ts +4 -1
- package/src/execution/engine/mock.ts +22 -2
- package/src/execution/engine/types.ts +25 -0
- package/src/metrics/metrics/beacon.ts +16 -0
- package/src/metrics/metrics/lodestar.ts +31 -0
- package/src/metrics/metrics.ts +7 -2
- package/src/network/reqresp/handlers/executionPayloadEnvelopesByRange.ts +57 -39
- package/src/network/reqresp/handlers/executionPayloadEnvelopesByRoot.ts +27 -5
- package/src/network/reqresp/handlers/index.ts +49 -5
- package/src/sync/types.ts +0 -2
- package/src/sync/unknownBlock.ts +41 -13
- package/src/util/execution.ts +175 -2
- package/src/util/headerEnvelope.ts +76 -0
package/src/sync/unknownBlock.ts
CHANGED
|
@@ -227,8 +227,11 @@ export class BlockInputSync {
|
|
|
227
227
|
private onUnknownBlockRoot = (data: ChainEventData[ChainEvent.unknownBlockRoot]): void => {
|
|
228
228
|
try {
|
|
229
229
|
const isNewRoot = this.addByRootHex(data.rootHex, data.peer);
|
|
230
|
-
|
|
230
|
+
// A retained entry (an earlier download failed, #10018) is not new but still needs a retry pass.
|
|
231
|
+
if (this.pendingBlocks.get(data.rootHex)?.status === PendingBlockInputStatus.pending) {
|
|
231
232
|
this.triggerUnknownBlockSearch();
|
|
233
|
+
}
|
|
234
|
+
if (isNewRoot) {
|
|
232
235
|
this.metrics?.blockInputSync.requests.inc({type: PendingBlockType.UNKNOWN_BLOCK_ROOT});
|
|
233
236
|
this.metrics?.blockInputSync.source.inc({source: data.source});
|
|
234
237
|
}
|
|
@@ -393,12 +396,21 @@ export class BlockInputSync {
|
|
|
393
396
|
}
|
|
394
397
|
}
|
|
395
398
|
|
|
396
|
-
let
|
|
399
|
+
let belowFinalizedBlocks = 0;
|
|
400
|
+
let agedOutBlocks = 0;
|
|
397
401
|
for (const [rootHex, block] of this.pendingBlocks) {
|
|
398
402
|
const slot = getBlockInputSyncCacheItemSlot(block);
|
|
399
|
-
if (typeof slot
|
|
403
|
+
if (typeof slot !== "number") {
|
|
404
|
+
// we may not be able to download a root, hence there is no slot for it
|
|
405
|
+
if (nowSec - block.timeAddedSec > maxSecInCache) {
|
|
406
|
+
this.pendingBlocks.delete(rootHex);
|
|
407
|
+
agedOutBlocks++;
|
|
408
|
+
}
|
|
409
|
+
continue;
|
|
410
|
+
}
|
|
411
|
+
if (slot < finalizedSlot) {
|
|
400
412
|
this.pendingBlocks.delete(rootHex);
|
|
401
|
-
|
|
413
|
+
belowFinalizedBlocks++;
|
|
402
414
|
}
|
|
403
415
|
}
|
|
404
416
|
|
|
@@ -411,16 +423,20 @@ export class BlockInputSync {
|
|
|
411
423
|
if (agedOutPayloads > 0) {
|
|
412
424
|
this.metrics?.blockInputSync.removedPayloads.inc({reason: DroppedItemReason.agedOut}, agedOutPayloads);
|
|
413
425
|
}
|
|
414
|
-
if (
|
|
415
|
-
this.metrics?.blockInputSync.removedBlocks.inc({reason: DroppedItemReason.belowFinalized},
|
|
426
|
+
if (belowFinalizedBlocks > 0) {
|
|
427
|
+
this.metrics?.blockInputSync.removedBlocks.inc({reason: DroppedItemReason.belowFinalized}, belowFinalizedBlocks);
|
|
428
|
+
}
|
|
429
|
+
if (agedOutBlocks > 0) {
|
|
430
|
+
this.metrics?.blockInputSync.removedBlocks.inc({reason: DroppedItemReason.agedOut}, agedOutBlocks);
|
|
416
431
|
}
|
|
417
432
|
|
|
418
|
-
this.logger.debug("BlockInputSync.pruneFinalized dropped
|
|
433
|
+
this.logger.debug("BlockInputSync.pruneFinalized dropped stale pending items", {
|
|
419
434
|
finalizedSlot,
|
|
420
435
|
finalizedRoot: checkpoint.rootHex,
|
|
421
436
|
belowFinalizedPayloads,
|
|
422
437
|
agedOutPayloads,
|
|
423
|
-
|
|
438
|
+
belowFinalizedBlocks,
|
|
439
|
+
agedOutBlocks,
|
|
424
440
|
unresolvedSlotPayloads,
|
|
425
441
|
});
|
|
426
442
|
};
|
|
@@ -973,7 +989,12 @@ export class BlockInputSync {
|
|
|
973
989
|
if (!res.err) {
|
|
974
990
|
this.metrics?.blockInputSync.downloadedBlocksSuccess.inc();
|
|
975
991
|
const pending = res.result;
|
|
976
|
-
this
|
|
992
|
+
// pruning may have deleted this entry while we were awaiting the network, do not resurrect it via the set below
|
|
993
|
+
if (!this.pendingBlocks.has(rootHex)) {
|
|
994
|
+
this.logger.verbose("Dropping downloaded block, entry pruned during fetch", logCtx);
|
|
995
|
+
return;
|
|
996
|
+
}
|
|
997
|
+
this.pendingBlocks.set(rootHex, pending);
|
|
977
998
|
const blockSlot = pending.blockInput.slot;
|
|
978
999
|
const finalizedSlot = this.chain.forkChoice.getFinalizedBlock().slot;
|
|
979
1000
|
const delaySec = Date.now() / 1000 - computeTimeAtSlot(this.config, blockSlot, this.chain.genesisTime);
|
|
@@ -1035,8 +1056,11 @@ export class BlockInputSync {
|
|
|
1035
1056
|
}
|
|
1036
1057
|
|
|
1037
1058
|
this.metrics?.blockInputSync.downloadedBlocksError.inc();
|
|
1038
|
-
this.logger.debug("
|
|
1039
|
-
this.
|
|
1059
|
+
this.logger.debug("Failed to download unknown block root, retained for retry", logCtx, res.err);
|
|
1060
|
+
const pendingBlock = this.pendingBlocks.get(rootHex);
|
|
1061
|
+
if (pendingBlock && pendingBlock.status === PendingBlockInputStatus.fetching) {
|
|
1062
|
+
pendingBlock.status = PendingBlockInputStatus.pending;
|
|
1063
|
+
}
|
|
1040
1064
|
}
|
|
1041
1065
|
}
|
|
1042
1066
|
|
|
@@ -1303,7 +1327,7 @@ export class BlockInputSync {
|
|
|
1303
1327
|
}
|
|
1304
1328
|
|
|
1305
1329
|
this.metrics?.blockInputSync.downloadedPayloadsResult.inc({result: DownloadResult.Failed});
|
|
1306
|
-
this.logger.debug("
|
|
1330
|
+
this.logger.debug("Failed to download unknown payload root, retained for retry", logCtx, res.err);
|
|
1307
1331
|
if (!isPendingPayloadEnvelope(payload)) {
|
|
1308
1332
|
payload.status = PendingPayloadInputStatus.pending;
|
|
1309
1333
|
}
|
|
@@ -1763,7 +1787,11 @@ export class BlockInputSync {
|
|
|
1763
1787
|
this.peerBalancer.onRequestCompleted(peerId);
|
|
1764
1788
|
}
|
|
1765
1789
|
|
|
1766
|
-
|
|
1790
|
+
const cacheItemRootHex = getBlockInputSyncCacheItemRootHex(cacheItem);
|
|
1791
|
+
// pruning may have dropped it mid-fetch
|
|
1792
|
+
if (this.pendingBlocks.has(cacheItemRootHex)) {
|
|
1793
|
+
this.pendingBlocks.set(cacheItemRootHex, cacheItem);
|
|
1794
|
+
}
|
|
1767
1795
|
|
|
1768
1796
|
if (cacheItem.status === PendingBlockInputStatus.downloaded) {
|
|
1769
1797
|
// download was successful, no need to go with another peer, return
|
package/src/util/execution.ts
CHANGED
|
@@ -2,12 +2,18 @@ import {routes} from "@lodestar/api";
|
|
|
2
2
|
import {ChainForkConfig} from "@lodestar/config";
|
|
3
3
|
import {ForkPostFulu, ForkPreFulu} from "@lodestar/params";
|
|
4
4
|
import {signedBlockToSignedHeader} from "@lodestar/state-transition";
|
|
5
|
-
import {DataColumnSidecar, SignedBeaconBlock, deneb, isGloasDataColumnSidecar} from "@lodestar/types";
|
|
6
|
-
import {fromHex, toHex} from "@lodestar/utils";
|
|
5
|
+
import {DataColumnSidecar, SignedBeaconBlock, Slot, deneb, gloas, isGloasDataColumnSidecar, ssz} from "@lodestar/types";
|
|
6
|
+
import {Logger, fromHex, toHex, toRootHex} from "@lodestar/utils";
|
|
7
7
|
import {isBlockInputBlobs, isBlockInputColumns} from "../chain/blocks/blockInput/blockInput.js";
|
|
8
8
|
import {BlockInputSource, IBlockInput} from "../chain/blocks/blockInput/types.js";
|
|
9
9
|
import {PayloadEnvelopeInput, PayloadEnvelopeInputSource} from "../chain/blocks/payloadEnvelopeInput/index.js";
|
|
10
10
|
import {ChainEvent, ChainEventEmitter} from "../chain/emitter.js";
|
|
11
|
+
import {
|
|
12
|
+
EnvelopeReconstructionError,
|
|
13
|
+
EnvelopeReconstructionErrorCode,
|
|
14
|
+
} from "../chain/errors/envelopeReconstructionError.js";
|
|
15
|
+
import {IBeaconDb} from "../db/index.js";
|
|
16
|
+
import {ArchivedEnvelope, decodeArchivedEnvelope} from "../db/repositories/index.js";
|
|
11
17
|
import {IExecutionEngine} from "../execution/index.js";
|
|
12
18
|
import {Metrics} from "../metrics/index.js";
|
|
13
19
|
import {computePreFuluKzgCommitmentsInclusionProof} from "./blobs.js";
|
|
@@ -17,6 +23,7 @@ import {
|
|
|
17
23
|
getDataColumnSidecarsFromColumnSidecar,
|
|
18
24
|
getGloasDataColumnSidecars,
|
|
19
25
|
} from "./dataColumns.js";
|
|
26
|
+
import {signedHeaderEnvelopeToFull} from "./headerEnvelope.js";
|
|
20
27
|
|
|
21
28
|
export enum DataColumnEngineResult {
|
|
22
29
|
PreFulu = "pre_fulu",
|
|
@@ -251,3 +258,169 @@ export async function getDataColumnSidecarsFromExecution(
|
|
|
251
258
|
);
|
|
252
259
|
return DataColumnEngineResult.SuccessResolved;
|
|
253
260
|
}
|
|
261
|
+
|
|
262
|
+
/** engine_getPayloadBodiesByHashV2: ELs MUST support at least 32 hashes per request. */
|
|
263
|
+
const MAX_BODIES_REQUEST = 32;
|
|
264
|
+
|
|
265
|
+
type SlotEnvelopeBytes = {slot: Slot; envelopeBytes: Uint8Array};
|
|
266
|
+
|
|
267
|
+
type RangeEntry = ArchivedEnvelope & {slot: Slot};
|
|
268
|
+
|
|
269
|
+
/** What a body root mismatch means on a given serving path */
|
|
270
|
+
export type ReconstructMismatchPolicy = "throw" | "omit";
|
|
271
|
+
|
|
272
|
+
export type RebuildMiss =
|
|
273
|
+
/** EL does not have the block, or has pruned its block access list */
|
|
274
|
+
| {slot: Slot; reason: "unavailable"}
|
|
275
|
+
/** An EL body does not hash to its stored root (local inconsistency) */
|
|
276
|
+
| {slot: Slot; reason: "mismatch"; error: EnvelopeReconstructionError};
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Stream finalized envelopes over [startSlot, endSlot) as serialized bytes, rebuilding header
|
|
280
|
+
* entries from EL bodies 32 per round-trip.
|
|
281
|
+
*
|
|
282
|
+
* Ends at the first entry that cannot be served by throwing RANGE_UNSERVABLE with that slot: the
|
|
283
|
+
* by-range spec inherits BeaconBlocksByRange v2 semantics (consecutive, MAY be short), and a hole
|
|
284
|
+
* looks like a lying peer to one that already holds the blocks. Entries are attempted regardless of
|
|
285
|
+
* age; the EL's block access list retention is the floor, not MIN_EPOCHS_FOR_BLOCK_REQUESTS.
|
|
286
|
+
*
|
|
287
|
+
* Throws ENGINE_UNAVAILABLE if the EL call fails. Either may surface after envelopes were yielded.
|
|
288
|
+
*/
|
|
289
|
+
export async function* reconstructExecutionPayloadEnvelopesByRange(
|
|
290
|
+
db: IBeaconDb,
|
|
291
|
+
executionEngine: IExecutionEngine,
|
|
292
|
+
logger: Logger,
|
|
293
|
+
metrics: Metrics | null,
|
|
294
|
+
startSlot: Slot,
|
|
295
|
+
endSlot: Slot
|
|
296
|
+
): AsyncIterable<SlotEnvelopeBytes> {
|
|
297
|
+
const archive = db.executionPayloadEnvelopeArchive;
|
|
298
|
+
let batch: RangeEntry[] = [];
|
|
299
|
+
|
|
300
|
+
for await (const {key, value: bytes} of archive.binaryEntriesStream({gte: startSlot, lt: endSlot})) {
|
|
301
|
+
batch.push({slot: archive.decodeKey(key), ...decodeArchivedEnvelope(bytes)});
|
|
302
|
+
if (batch.length === MAX_BODIES_REQUEST) {
|
|
303
|
+
yield* reconstructBatch(executionEngine, logger, metrics, batch);
|
|
304
|
+
batch = [];
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
if (batch.length > 0) {
|
|
308
|
+
yield* reconstructBatch(executionEngine, logger, metrics, batch);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* Rebuild a range batch, yielding what precedes the first unservable entry before throwing
|
|
314
|
+
* RANGE_UNSERVABLE for it
|
|
315
|
+
*/
|
|
316
|
+
async function* reconstructBatch(
|
|
317
|
+
executionEngine: IExecutionEngine,
|
|
318
|
+
logger: Logger,
|
|
319
|
+
metrics: Metrics | null,
|
|
320
|
+
batch: RangeEntry[]
|
|
321
|
+
): AsyncIterable<SlotEnvelopeBytes> {
|
|
322
|
+
const headerEnvelopes: gloas.SignedExecutionPayloadHeaderEnvelope[] = [];
|
|
323
|
+
for (const entry of batch) {
|
|
324
|
+
if (entry.headerEnvelope !== undefined) headerEnvelopes.push(entry.headerEnvelope);
|
|
325
|
+
}
|
|
326
|
+
const rebuilt = await reconstructEnvelopesBatch(executionEngine, metrics, headerEnvelopes);
|
|
327
|
+
|
|
328
|
+
let rebuiltIdx = 0;
|
|
329
|
+
for (const entry of batch) {
|
|
330
|
+
if (entry.envelopeBytes !== undefined) {
|
|
331
|
+
yield {slot: entry.slot, envelopeBytes: entry.envelopeBytes};
|
|
332
|
+
continue;
|
|
333
|
+
}
|
|
334
|
+
const result = rebuilt[rebuiltIdx++];
|
|
335
|
+
if (isRebuildMiss(result)) {
|
|
336
|
+
// Peer-triggered, so debug: a persistent local mismatch would otherwise log on every request
|
|
337
|
+
if (result.reason === "mismatch") {
|
|
338
|
+
logger.debug("Archived envelope failed body root check against EL bodies", {slot: entry.slot}, result.error);
|
|
339
|
+
} else {
|
|
340
|
+
logger.debug("EL cannot serve bodies for archived envelope, ending range", {slot: entry.slot});
|
|
341
|
+
}
|
|
342
|
+
throw new EnvelopeReconstructionError(
|
|
343
|
+
{code: EnvelopeReconstructionErrorCode.RANGE_UNSERVABLE, slot: entry.slot},
|
|
344
|
+
`archived envelope range unservable from slot=${entry.slot}`
|
|
345
|
+
);
|
|
346
|
+
}
|
|
347
|
+
yield {slot: entry.slot, envelopeBytes: ssz.gloas.SignedExecutionPayloadEnvelope.serialize(result)};
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Rebuild header envelopes from EL bodies, 32 per round-trip. Aligned with the input, with a
|
|
353
|
+
* {@link RebuildMiss} where the envelope could not be rebuilt; the caller decides what a miss means
|
|
354
|
+
* on its path. Throws ENGINE_UNAVAILABLE only.
|
|
355
|
+
*/
|
|
356
|
+
export async function reconstructExecutionPayloadEnvelopes(
|
|
357
|
+
executionEngine: IExecutionEngine,
|
|
358
|
+
metrics: Metrics | null,
|
|
359
|
+
headerEnvelopes: gloas.SignedExecutionPayloadHeaderEnvelope[]
|
|
360
|
+
): Promise<(gloas.SignedExecutionPayloadEnvelope | RebuildMiss)[]> {
|
|
361
|
+
const out: (gloas.SignedExecutionPayloadEnvelope | RebuildMiss)[] = [];
|
|
362
|
+
for (let i = 0; i < headerEnvelopes.length; i += MAX_BODIES_REQUEST) {
|
|
363
|
+
out.push(
|
|
364
|
+
...(await reconstructEnvelopesBatch(executionEngine, metrics, headerEnvelopes.slice(i, i + MAX_BODIES_REQUEST)))
|
|
365
|
+
);
|
|
366
|
+
}
|
|
367
|
+
return out;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export function isRebuildMiss(result: gloas.SignedExecutionPayloadEnvelope | RebuildMiss): result is RebuildMiss {
|
|
371
|
+
return "reason" in result;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* One EL round-trip. Aligned with the input; never throws per envelope, only ENGINE_UNAVAILABLE.
|
|
376
|
+
* Every serving path (by-range, by-root, REST) comes through here, so the outcome metrics are
|
|
377
|
+
* incremented once, in this function.
|
|
378
|
+
*/
|
|
379
|
+
async function reconstructEnvelopesBatch(
|
|
380
|
+
executionEngine: IExecutionEngine,
|
|
381
|
+
metrics: Metrics | null,
|
|
382
|
+
headerEnvelopes: gloas.SignedExecutionPayloadHeaderEnvelope[]
|
|
383
|
+
): Promise<(gloas.SignedExecutionPayloadEnvelope | RebuildMiss)[]> {
|
|
384
|
+
if (headerEnvelopes.length === 0) return [];
|
|
385
|
+
const hashes = headerEnvelopes.map((headerEnvelope) => toRootHex(headerEnvelope.message.payloadHeader.blockHash));
|
|
386
|
+
|
|
387
|
+
let bodies: Awaited<ReturnType<IExecutionEngine["getPayloadBodiesByHashV2"]>>;
|
|
388
|
+
try {
|
|
389
|
+
bodies = await executionEngine.getPayloadBodiesByHashV2(hashes);
|
|
390
|
+
} catch (e) {
|
|
391
|
+
metrics?.payloadEnvelopeReconstruction.engineErrors.inc();
|
|
392
|
+
throw new EnvelopeReconstructionError(
|
|
393
|
+
{code: EnvelopeReconstructionErrorCode.ENGINE_UNAVAILABLE},
|
|
394
|
+
`engine_getPayloadBodiesByHashV2 failed: ${(e as Error).message}`
|
|
395
|
+
);
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
return headerEnvelopes.map((headerEnvelope, i) => {
|
|
399
|
+
const slot = headerEnvelope.message.payloadHeader.slotNumber;
|
|
400
|
+
const body = bodies[i];
|
|
401
|
+
// A zero-length block access list cannot be valid, RLP encodes an empty list as 0xc0
|
|
402
|
+
if (body == null || body.withdrawals == null || body.blockAccessList == null || body.blockAccessList.length === 0) {
|
|
403
|
+
metrics?.payloadEnvelopeReconstruction.envelopes.inc({result: "unavailable"});
|
|
404
|
+
return {slot, reason: "unavailable"};
|
|
405
|
+
}
|
|
406
|
+
try {
|
|
407
|
+
const envelope = signedHeaderEnvelopeToFull(headerEnvelope, {
|
|
408
|
+
transactions: body.transactions,
|
|
409
|
+
withdrawals: body.withdrawals,
|
|
410
|
+
blockAccessList: body.blockAccessList,
|
|
411
|
+
});
|
|
412
|
+
metrics?.payloadEnvelopeReconstruction.envelopes.inc({result: "ok"});
|
|
413
|
+
return envelope;
|
|
414
|
+
} catch (e) {
|
|
415
|
+
if (
|
|
416
|
+
e instanceof EnvelopeReconstructionError &&
|
|
417
|
+
e.type.code === EnvelopeReconstructionErrorCode.BODY_ROOT_MISMATCH
|
|
418
|
+
) {
|
|
419
|
+
metrics?.payloadEnvelopeReconstruction.envelopes.inc({result: "mismatch"});
|
|
420
|
+
metrics?.payloadEnvelopeReconstruction.mismatchByField.inc({field: e.type.field});
|
|
421
|
+
return {slot, reason: "mismatch", error: e};
|
|
422
|
+
}
|
|
423
|
+
throw e;
|
|
424
|
+
}
|
|
425
|
+
});
|
|
426
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import {ssz} from "@lodestar/types";
|
|
2
|
+
import {
|
|
3
|
+
BlockAccessList,
|
|
4
|
+
ExecutionPayloadEnvelope,
|
|
5
|
+
ExecutionPayloadHeaderEnvelope,
|
|
6
|
+
SignedExecutionPayloadEnvelope,
|
|
7
|
+
SignedExecutionPayloadHeaderEnvelope,
|
|
8
|
+
Transactions,
|
|
9
|
+
Withdrawals,
|
|
10
|
+
} from "@lodestar/types/gloas";
|
|
11
|
+
import {toRootHex} from "@lodestar/utils";
|
|
12
|
+
import {
|
|
13
|
+
EnvelopeReconstructionError,
|
|
14
|
+
EnvelopeReconstructionErrorCode,
|
|
15
|
+
} from "../chain/errors/envelopeReconstructionError.js";
|
|
16
|
+
|
|
17
|
+
/** The parts of an execution payload the EL serves back via engine_getPayloadBodiesByHashV2 */
|
|
18
|
+
export type ExecutionPayloadBodies = {
|
|
19
|
+
transactions: Transactions;
|
|
20
|
+
withdrawals: Withdrawals;
|
|
21
|
+
blockAccessList: BlockAccessList;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export type ExecutionPayloadBodyField = keyof ExecutionPayloadBodies;
|
|
25
|
+
|
|
26
|
+
const {transactions, withdrawals, blockAccessList} = ssz.gloas.ExecutionPayload.fields;
|
|
27
|
+
|
|
28
|
+
/** Replace the three body lists by their roots; hashes to the same root as the full envelope */
|
|
29
|
+
export function toHeaderEnvelope(envelope: ExecutionPayloadEnvelope): ExecutionPayloadHeaderEnvelope {
|
|
30
|
+
const {payload, ...envelopeFields} = envelope;
|
|
31
|
+
const {transactions: txs, withdrawals: wds, blockAccessList: bal, ...scalars} = payload;
|
|
32
|
+
return {
|
|
33
|
+
...envelopeFields,
|
|
34
|
+
payloadHeader: {
|
|
35
|
+
...scalars,
|
|
36
|
+
transactionsRoot: transactions.hashTreeRoot(txs),
|
|
37
|
+
withdrawalsRoot: withdrawals.hashTreeRoot(wds),
|
|
38
|
+
blockAccessListRoot: blockAccessList.hashTreeRoot(bal),
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function toSignedHeaderEnvelope(envelope: SignedExecutionPayloadEnvelope): SignedExecutionPayloadHeaderEnvelope {
|
|
44
|
+
return {message: toHeaderEnvelope(envelope.message), signature: envelope.signature};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Rebuild the full signed envelope from header envelope + EL bodies, each body verified against its stored
|
|
49
|
+
* root. Throws {@link EnvelopeReconstructionError} BODY_ROOT_MISMATCH naming the first body that differs.
|
|
50
|
+
*/
|
|
51
|
+
export function signedHeaderEnvelopeToFull(
|
|
52
|
+
headerEnvelope: SignedExecutionPayloadHeaderEnvelope,
|
|
53
|
+
bodies: ExecutionPayloadBodies
|
|
54
|
+
): SignedExecutionPayloadEnvelope {
|
|
55
|
+
const {payloadHeader, ...envelopeFields} = headerEnvelope.message;
|
|
56
|
+
const {transactionsRoot, withdrawalsRoot, blockAccessListRoot, ...scalars} = payloadHeader;
|
|
57
|
+
const slot = scalars.slotNumber;
|
|
58
|
+
|
|
59
|
+
assertBodyRoot("transactions", slot, transactionsRoot, transactions.hashTreeRoot(bodies.transactions));
|
|
60
|
+
assertBodyRoot("withdrawals", slot, withdrawalsRoot, withdrawals.hashTreeRoot(bodies.withdrawals));
|
|
61
|
+
assertBodyRoot("blockAccessList", slot, blockAccessListRoot, blockAccessList.hashTreeRoot(bodies.blockAccessList));
|
|
62
|
+
|
|
63
|
+
return {
|
|
64
|
+
message: {...envelopeFields, payload: {...scalars, ...bodies}},
|
|
65
|
+
signature: headerEnvelope.signature,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function assertBodyRoot(field: ExecutionPayloadBodyField, slot: number, stored: Uint8Array, rebuilt: Uint8Array): void {
|
|
70
|
+
if (!ssz.Root.equals(stored, rebuilt)) {
|
|
71
|
+
throw new EnvelopeReconstructionError(
|
|
72
|
+
{code: EnvelopeReconstructionErrorCode.BODY_ROOT_MISMATCH, slot, field},
|
|
73
|
+
`reconstructed ${field} root mismatch slot=${slot} stored=${toRootHex(stored)} rebuilt=${toRootHex(rebuilt)}`
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
}
|