Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: epoch cache error should be treated with care in gossips validation #5939

Merged
merged 2 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 23 additions & 11 deletions packages/beacon-node/src/chain/validation/attestation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import {
getAttestationDataSigningRoot,
createSingleSignatureSetFromComponents,
SingleSignatureSet,
EpochCacheError,
EpochCacheErrorCode,
} from "@lodestar/state-transition";
import {AttestationError, AttestationErrorCode, GossipAction} from "../errors/index.js";
import {MAXIMUM_GOSSIP_CLOCK_DISPARITY_SEC} from "../../constants/index.js";
Expand Down Expand Up @@ -202,18 +204,28 @@ export async function validateAttestation(
subnet: number | null,
prioritizeBls = false
): Promise<AttestationValidationResult> {
const step0Result = await validateGossipAttestationNoSignatureCheck(fork, chain, attestationOrBytes, subnet);
const {attestation, signatureSet, validatorIndex} = step0Result;
const isValid = await chain.bls.verifySignatureSets([signatureSet], {batchable: true, priority: prioritizeBls});
try {
const step0Result = await validateGossipAttestationNoSignatureCheck(fork, chain, attestationOrBytes, subnet);
const {attestation, signatureSet, validatorIndex} = step0Result;
const isValid = await chain.bls.verifySignatureSets([signatureSet], {batchable: true, priority: prioritizeBls});

if (isValid) {
const targetEpoch = attestation.data.target.epoch;
chain.seenAttesters.add(targetEpoch, validatorIndex);
return step0Result;
} else {
throw new AttestationError(GossipAction.IGNORE, {
code: AttestationErrorCode.INVALID_SIGNATURE,
});
if (isValid) {
const targetEpoch = attestation.data.target.epoch;
chain.seenAttesters.add(targetEpoch, validatorIndex);
return step0Result;
} else {
throw new AttestationError(GossipAction.IGNORE, {
code: AttestationErrorCode.INVALID_SIGNATURE,
});
}
} catch (err) {
if (err instanceof EpochCacheError && err.type.code === EpochCacheErrorCode.COMMITTEE_INDEX_OUT_OF_RANGE) {
throw new AttestationError(GossipAction.IGNORE, {
code: AttestationErrorCode.BAD_TARGET_EPOCH,
});
} else {
throw err;
}
}
}

Expand Down
44 changes: 34 additions & 10 deletions packages/state-transition/src/cache/epochCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -569,9 +569,11 @@ export class EpochCache {
getBeaconProposer(slot: Slot): ValidatorIndex {
const epoch = computeEpochAtSlot(slot);
if (epoch !== this.currentShuffling.epoch) {
throw new Error(
`Requesting beacon proposer for different epoch current shuffling: ${epoch} != ${this.currentShuffling.epoch}`
);
throw new EpochCacheError({
code: EpochCacheErrorCode.PROPOSER_EPOCH_MISMATCH,
currentEpoch: this.currentShuffling.epoch,
requestedEpoch: epoch,
});
}
return this.proposers[slot % SLOTS_PER_EPOCH];
}
Expand Down Expand Up @@ -732,7 +734,11 @@ export class EpochCache {
getShufflingAtEpoch(epoch: Epoch): EpochShuffling {
const shuffling = this.getShufflingAtEpochOrNull(epoch);
if (shuffling === null) {
throw new Error(`Requesting slot committee out of range epoch: ${epoch} current: ${this.currentShuffling.epoch}`);
throw new EpochCacheError({
code: EpochCacheErrorCode.COMMITTEE_EPOCH_OUT_OF_RANGE,
currentEpoch: this.currentShuffling.epoch,
requestedEpoch: epoch,
});
}

return shuffling;
Expand Down Expand Up @@ -772,7 +778,7 @@ export class EpochCache {
case this.syncPeriod + 1:
return this.nextSyncCommitteeIndexed;
default:
throw new Error(`No sync committee for epoch ${epoch}`);
throw new EpochCacheError({code: EpochCacheErrorCode.NO_SYNC_COMMITTEE, epoch});
}
}

Expand Down Expand Up @@ -817,13 +823,31 @@ type AttesterDuty = {

export enum EpochCacheErrorCode {
COMMITTEE_INDEX_OUT_OF_RANGE = "EPOCH_CONTEXT_ERROR_COMMITTEE_INDEX_OUT_OF_RANGE",
COMMITTEE_EPOCH_OUT_OF_RANGE = "EPOCH_CONTEXT_ERROR_COMMITTEE_EPOCH_OUT_OF_RANGE",
NO_SYNC_COMMITTEE = "EPOCH_CONTEXT_ERROR_NO_SYNC_COMMITTEE",
PROPOSER_EPOCH_MISMATCH = "EPOCH_CONTEXT_ERROR_PROPOSER_EPOCH_MISMATCH",
}

type EpochCacheErrorType = {
code: EpochCacheErrorCode.COMMITTEE_INDEX_OUT_OF_RANGE;
index: number;
maxIndex: number;
};
type EpochCacheErrorType =
| {
code: EpochCacheErrorCode.COMMITTEE_INDEX_OUT_OF_RANGE;
index: number;
maxIndex: number;
}
| {
code: EpochCacheErrorCode.COMMITTEE_EPOCH_OUT_OF_RANGE;
requestedEpoch: Epoch;
currentEpoch: Epoch;
}
| {
code: EpochCacheErrorCode.NO_SYNC_COMMITTEE;
epoch: Epoch;
}
| {
code: EpochCacheErrorCode.PROPOSER_EPOCH_MISMATCH;
requestedEpoch: Epoch;
currentEpoch: Epoch;
};

export class EpochCacheError extends LodestarError<EpochCacheErrorType> {}

Expand Down
8 changes: 7 additions & 1 deletion packages/state-transition/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ export {
isStateBalancesNodesPopulated,
isStateValidatorsNodesPopulated,
} from "./cache/stateCache.js";
export {EpochCache, EpochCacheImmutableData, createEmptyEpochCacheImmutableData} from "./cache/epochCache.js";
export {
EpochCache,
EpochCacheImmutableData,
createEmptyEpochCacheImmutableData,
EpochCacheError,
EpochCacheErrorCode,
} from "./cache/epochCache.js";
export {EpochTransitionCache, beforeProcessEpoch} from "./cache/epochTransitionCache.js";

// Aux data-structures
Expand Down
Loading