Skip to content

Commit

Permalink
Merge branch 'grarco/early-sapling-balance-check' (#3439)
Browse files Browse the repository at this point in the history
* origin/grarco/early-sapling-balance-check:
  Extracts the sapling value balance directly in `validate_transparent_bundle`
  Changelog #2721
  Early sapling balance check in masp vp
  • Loading branch information
brentstone committed Jul 4, 2024
2 parents bde8a9a + a3bb632 commit 93e7911
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Moved up the check on the sapling value balance in the masp vp.
([\#2721](https://github.com/anoma/namada/issues/2721))
2 changes: 1 addition & 1 deletion .github/workflows/scripts/hermes.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.2-namada-beta12-rc3
1.8.2-namada-beta12-rc4
64 changes: 31 additions & 33 deletions crates/namada/src/ledger/native_vp/masp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,6 @@ where
return Err(error);
}

// The Sapling value balance adds to the transparent tx pool
let mut transparent_tx_pool = shielded_tx.sapling_value_balance();
// Check the validity of the keys and get the transfer data
let mut changed_balances = self.validate_state_and_get_transfer_data(
keys_changed,
Expand Down Expand Up @@ -731,7 +729,6 @@ where
validate_transparent_bundle(
&shielded_tx,
&mut changed_balances,
&mut transparent_tx_pool,
masp_epoch,
conversion_state,
&mut signers,
Expand Down Expand Up @@ -818,31 +815,6 @@ where
}
}

// Ensure that the shielded transaction exactly balances
match transparent_tx_pool.partial_cmp(&I128Sum::zero()) {
None | Some(Ordering::Less) => {
let error = native_vp::Error::new_const(
"Transparent transaction value pool must be nonnegative. \
Violation may be caused by transaction being constructed \
in previous epoch. Maybe try again.",
)
.into();
tracing::debug!("{error}");
// Section 3.4: The remaining value in the transparent
// transaction value pool MUST be nonnegative.
return Err(error);
}
Some(Ordering::Greater) => {
let error = native_vp::Error::new_const(
"Transaction fees cannot be paid inside MASP transaction.",
)
.into();
tracing::debug!("{error}");
return Err(error);
}
_ => {}
}

// Verify the proofs
verify_shielded_tx(&shielded_tx, |gas| self.ctx.charge_gas(gas))
.map_err(Error::NativeVpError)
Expand Down Expand Up @@ -1019,21 +991,23 @@ fn validate_transparent_output(
// Update the transaction value pool and also ensure that the Transaction is
// consistent with the balance changes. I.e. the transparent inputs are not more
// than the initial balances and that the transparent outputs are not more than
// the final balances.
// the final balances. Also ensure that the sapling value balance is exactly 0.
fn validate_transparent_bundle(
shielded_tx: &Transaction,
changed_balances: &mut ChangedBalances,
transparent_tx_pool: &mut I128Sum,
epoch: MaspEpoch,
conversion_state: &ConversionState,
signers: &mut BTreeSet<TransparentAddress>,
) -> Result<()> {
// The Sapling value balance adds to the transparent tx pool
let mut transparent_tx_pool = shielded_tx.sapling_value_balance();

if let Some(transp_bundle) = shielded_tx.transparent_bundle() {
for vin in transp_bundle.vin.iter() {
validate_transparent_input(
vin,
changed_balances,
transparent_tx_pool,
&mut transparent_tx_pool,
epoch,
conversion_state,
signers,
Expand All @@ -1044,13 +1018,37 @@ fn validate_transparent_bundle(
validate_transparent_output(
out,
changed_balances,
transparent_tx_pool,
&mut transparent_tx_pool,
epoch,
conversion_state,
)?;
}
}
Ok(())

// Ensure that the shielded transaction exactly balances
match transparent_tx_pool.partial_cmp(&I128Sum::zero()) {
None | Some(Ordering::Less) => {
let error = native_vp::Error::new_const(
"Transparent transaction value pool must be nonnegative. \
Violation may be caused by transaction being constructed in \
previous epoch. Maybe try again.",
)
.into();
tracing::debug!("{error}");
// The remaining value in the transparent transaction value pool
// MUST be nonnegative.
Err(error)
}
Some(Ordering::Greater) => {
let error = native_vp::Error::new_const(
"Transaction fees cannot be left on the MASP balance.",
)
.into();
tracing::debug!("{error}");
Err(error)
}
_ => Ok(()),
}
}

// Apply the given Sapling value balance component to the accumulator
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_hermes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -Eo pipefail

HERMES_MAJORMINOR="1.8"
HERMES_PATCH="2"
HERMES_SUFFIX="-namada-beta12-rc3"
HERMES_SUFFIX="-namada-beta12-rc4"

HERMES_REPO="https://github.com/heliaxdev/hermes"

Expand Down

0 comments on commit 93e7911

Please sign in to comment.