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

🐛 Tweak node state handling of failing (native) proofs #644

Merged
merged 1 commit into from
Jan 21, 2025
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
67 changes: 38 additions & 29 deletions src/mempool/verifiers.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use anyhow::{Context, Result};
use hyle_model::{ProofData, Signed, ValidatorSignature};
use hyle_model::{Identity, ProofData, Signed, ValidatorSignature};
use sha3::Digest;

use hyle_contract_sdk::{Blob, BlobIndex, HyleOutput, ProgramId, StateDigest, TxHash, Verifier};
Expand Down Expand Up @@ -113,11 +113,43 @@ pub fn verify_native(
index: BlobIndex,
blobs: &[Blob],
verifier: NativeVerifiers,
) -> Result<HyleOutput> {
let blob = blobs.get(index.0).context("Invalid blob index")?;
) -> HyleOutput {
#[allow(clippy::expect_used, reason = "Logic error in the code")]
let blob = blobs.get(index.0).expect("Invalid blob index");
let blobs = hyle_contract_sdk::flatten_blobs(blobs);

let (identity, success) = match verifier {
let (identity, success) = match verify_native_impl(blob, verifier) {
Ok((identity, success)) => (identity, success),
Err(e) => {
tracing::trace!("Native blob verification failed: {:?}", e);
(Identity::default(), false)
}
};

if success {
tracing::info!("✅ Native blob verified on {tx_hash}:{index}");
} else {
tracing::info!("❌ Native blob verification failed on {tx_hash}:{index}.");
}

HyleOutput {
version: 1,
initial_state: StateDigest::default(),
next_state: StateDigest::default(),
identity,
tx_hash,
index,
blobs,
success,
program_outputs: vec![],
}
}

pub fn verify_native_impl(
blob: &Blob,
verifier: NativeVerifiers,
) -> anyhow::Result<(Identity, bool)> {
match verifier {
NativeVerifiers::Blst => {
let (blob, _) = bincode::decode_from_slice::<BlstSignatureBlob, _>(
&blob.data.0,
Expand All @@ -133,9 +165,7 @@ pub fn verify_native(
validator: crate::model::ValidatorPublicKey(blob.public_key),
},
};
let success = BlstCrypto::verify(&msg)?;

(blob.identity, success)
Ok((blob.identity, BlstCrypto::verify(&msg)?))
}
NativeVerifiers::Sha3_256 => {
let (blob, _) = bincode::decode_from_slice::<ShaBlob, _>(
Expand All @@ -147,28 +177,7 @@ pub fn verify_native(
hasher.update(blob.data);
let res = hasher.finalize().to_vec();

let success = res == blob.sha;

(blob.identity, success)
Ok((blob.identity, res == blob.sha))
}
};

if success {
tracing::info!("✅ Native blob verified on {tx_hash}:{index}");
} else {
tracing::info!("❌ Native blob verification failed on {tx_hash}:{index}.");
}

let output = HyleOutput {
version: 1,
initial_state: StateDigest::default(),
next_state: StateDigest::default(),
identity,
tx_hash,
index,
blobs,
success,
program_outputs: vec![],
};
Ok(output)
}
61 changes: 45 additions & 16 deletions src/node_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ impl NodeState {
}
TransactionData::VerifiedProof(proof_tx) => {
// First, store the proofs and check if we can settle the transaction
// NB: if some of the blob proof outputs are bad, we just ignore those
// but we don't actually fail the transaction.
let blob_tx_to_try_and_settle = proof_tx
.proven_blobs
.iter()
Expand All @@ -104,11 +106,10 @@ impl NodeState {
) {
Ok(maybe_tx_hash) => maybe_tx_hash,
Err(err) => {
error!(
"Failed to handle verified proof transaction {:?}: {err}",
proof_tx.hash()
info!(
"Failed to handle blob #{} in verified proof transaction {:?}: {err}",
blob_proof_data.hyle_output.index, proof_tx.hash(),
);
block_under_construction.failed_txs.insert(tx.hash());
None
}
}
Expand Down Expand Up @@ -187,22 +188,16 @@ impl NodeState {
.get(&blob.contract_name)
.map(|b| TryInto::<NativeVerifiers>::try_into(&b.verifier))
{
match verifiers::verify_native(
let hyle_output = verifiers::verify_native(
blob_tx_hash.clone(),
BlobIndex(index),
&tx.blobs,
verifier,
) {
Ok(hyle_output) => {
return UnsettledBlobMetadata {
blob: blob.clone(),
possible_proofs: vec![(verifier.into(), hyle_output)],
};
}
Err(e) => {
error!("Failed to verify native blob on {blob_tx_hash}:{index} with error: {e}");
}
}
);
return UnsettledBlobMetadata {
blob: blob.clone(),
possible_proofs: vec![(verifier.into(), hyle_output)],
};
} else {
natively_settlable = false;
}
Expand Down Expand Up @@ -849,6 +844,40 @@ pub mod test {
assert_eq!(state.contracts.get(&c2).unwrap().state.0, vec![0, 1, 2, 3]);
}

#[test_log::test(tokio::test)]
async fn two_proof_with_some_invalid_blob_proof_output() {
let mut state = new_node_state().await;
let c1 = ContractName::new("c1");

let register_c1 = new_register_contract(c1.clone());

let blob_tx = BlobTransaction {
identity: Identity::new("test.c1"),
blobs: vec![new_blob(&c1.0), new_blob(&c1.0)],
};
let blob_tx_hash = blob_tx.hash();

state.handle_register_contract_tx(&register_c1).unwrap();
state.handle_blob_tx(&blob_tx).unwrap();

let hyle_output = make_hyle_output(blob_tx.clone(), BlobIndex(0));
let verified_proof = new_proof_tx(&c1, &hyle_output, &blob_tx_hash);
let invalid_output = make_hyle_output(blob_tx.clone(), BlobIndex(4));
let mut invalid_verified_proof = new_proof_tx(&c1, &invalid_output, &blob_tx_hash);

invalid_verified_proof
.proven_blobs
.insert(0, verified_proof.proven_blobs.first().unwrap().clone());

let block =
state.handle_signed_block(&craft_signed_block(5, vec![invalid_verified_proof.into()]));

// We don't fail.
assert_eq!(block.failed_txs.len(), 0);
// We only store one of the two.
assert_eq!(block.blob_proof_outputs.len(), 1);
}

#[test_log::test(tokio::test)]
async fn change_same_contract_state_multiple_times_in_same_tx() {
let mut state = new_node_state().await;
Expand Down
Loading