From 174b2f042772ab5384e847160770e2968b5397a4 Mon Sep 17 00:00:00 2001 From: Matan Markind Date: Wed, 25 Dec 2024 15:07:26 +0200 Subject: [PATCH] chore(consensus): update handle_state_machine_decision to return InternalInconsistency --- .../src/single_height_consensus.rs | 39 +++++++++++++++---- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/crates/sequencing/papyrus_consensus/src/single_height_consensus.rs b/crates/sequencing/papyrus_consensus/src/single_height_consensus.rs index 955c6a7174..fac2dce9e2 100644 --- a/crates/sequencing/papyrus_consensus/src/single_height_consensus.rs +++ b/crates/sequencing/papyrus_consensus/src/single_height_consensus.rs @@ -559,12 +559,30 @@ impl SingleHeightConsensus { proposal_id: ProposalContentId, round: Round, ) -> Result { + let invalid_decision = |msg: String| { + ConsensusError::InternalInconsistency(format!( + "Invalid decision: sm_proposal_id: {:?}, round: {:?}. {}", + proposal_id, round, msg + )) + }; let block = self .proposals .remove(&round) - .expect("StateMachine arrived at an unknown decision") - .expect("StateMachine should not decide on a missing proposal"); - assert_eq!(block, proposal_id, "StateMachine block hash should match the stored block"); + .ok_or_else(|| { + // No ProposalInit received for this round. + invalid_decision("Decided on an unknown proposal".to_string()) + })? + .ok_or_else(|| { + // Either invalid or validations haven't yet completed. + invalid_decision( + "Decided on a proposal which was not succesfully validated".to_string(), + ) + })?; + if block != proposal_id { + return Err(invalid_decision(format!( + "StateMachine block hash should match the stored block. Shc.block_id: {block}" + ))); + } let supporting_precommits: Vec = self .validators .iter() @@ -573,12 +591,17 @@ impl SingleHeightConsensus { if vote.block_hash == Some(proposal_id) { Some(vote.clone()) } else { None } }) .collect(); + let quorum_size = + usize::try_from(self.state_machine.quorum_size()).expect("u32 should fit in usize"); // TODO(matan): Check actual weights. - assert!( - supporting_precommits.len() - >= usize::try_from(self.state_machine.quorum_size()) - .expect("u32 should fit in usize") - ); + if quorum_size > supporting_precommits.len() { + let msg = format!( + "Not enough supporting votes. quorum_size: {quorum_size}, num_supporting_votes: \ + {}. supporting_votes: {supporting_precommits:?}", + supporting_precommits.len(), + ); + return Err(invalid_decision(msg)); + } Ok(ShcReturn::Decision(Decision { precommits: supporting_precommits, block })) } }