mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 03:21:06 +00:00
Staking ledger bonding fixes (#3639)
Currently, the staking logic does not prevent a controller from becoming a stash of *another* ledger (introduced by [removing this check](https://github.com/paritytech/polkadot-sdk/pull/1484/files#diff-3aa6ceab5aa4e0ab2ed73a7245e0f5b42e0832d8ca5b1ed85d7b2a52fb196524L850)). Given that the remaining of the code expects that never happens, bonding a ledger with a stash that is a controller of another ledger may lead to data inconsistencies and data losses in bonded ledgers. For more detailed explanation of this issue: https://hackmd.io/@gpestana/HJoBm2tqo/%2FTPdi28H7Qc2mNUqLSMn15w In a nutshell, when fetching a ledger with a given controller, we may be end up getting the wrong ledger which can lead to unexpected ledger states. This PR also ensures that `set_controller` does not lead to data inconsistencies in the staking ledger and bonded storage in the case when a controller of a stash is a stash of *another* ledger. and improves the staking `try-runtime` checks to catch potential issues with the storage preemptively. In summary, there are two important cases here: 1. **"Sane" double bonded ledger** When a controller of a ledger is a stash of *another* ledger. In this case, we have: ``` > Bonded(stash, controller) (A, B) // stash A with controller B (B, C) // B is also a stash of another ledger (C, D) > Ledger(controller) Ledger(B) = L_a (stash = A) Ledger(C) = L_b (stash = B) Ledger(D) = L_c (stash = C) ``` In this case, the ledgers can be mutated and all operations are OK. However, we should not allow `set_controller` to be called if it means it results in a "corrupt" double bonded ledger (see below). 3. **"Corrupt" double bonded ledger** ``` > Bonded(stash, controller) (A, B) // stash A with controller B (B, B) (C, D) ``` In this case, B is a stash and controller AND is corrupted, since B is responsible for 2 ledgers which is not correct and will lead to inconsistent states. Thus, in this case, in this PR we are preventing these ledgers from mutating (i.e. operations like bonding extra etc) until the ledger is brought back to a consistent state. --- **Changes**: - Checks if stash is already a controller when calling `Call::bond` (fixes the regression introduced by [removing this check](https://github.com/paritytech/polkadot-sdk/pull/1484/files#diff-3aa6ceab5aa4e0ab2ed73a7245e0f5b42e0832d8ca5b1ed85d7b2a52fb196524L850)); - Ensures that all fetching ledgers from storage are done through the `StakingLedger` API; - Ensures that -- when fetching a ledger from storage using the `StakingLedger` API --, a `Error::BadState` is returned if the ledger bonding is in a bad state. This prevents bad ledgers from mutating (e.g. `bond_extra`, `set_controller`, etc) its state and avoid further data inconsistencies. - Prevents stashes which are controllers or another ledger from calling `set_controller`, since that may lead to a bad state. - Adds further try-state runtime checks that check if there are ledgers in a bad state based on their bonded metadata. Related to https://github.com/paritytech/polkadot-sdk/issues/3245 --------- Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: kianenigma <kian@parity.io>
This commit is contained in:
@@ -165,7 +165,8 @@ impl<T: Config> Pallet<T> {
|
||||
let controller = Self::bonded(&validator_stash).ok_or_else(|| {
|
||||
Error::<T>::NotStash.with_weight(T::WeightInfo::payout_stakers_alive_staked(0))
|
||||
})?;
|
||||
let ledger = <Ledger<T>>::get(&controller).ok_or(Error::<T>::NotController)?;
|
||||
|
||||
let ledger = Self::ledger(StakingAccount::Controller(controller))?;
|
||||
let page = EraInfo::<T>::get_next_claimable_page(era, &validator_stash, &ledger)
|
||||
.ok_or_else(|| {
|
||||
Error::<T>::AlreadyClaimed
|
||||
@@ -1728,7 +1729,7 @@ impl<T: Config> StakingInterface for Pallet<T> {
|
||||
) -> Result<bool, DispatchError> {
|
||||
let ctrl = Self::bonded(&who).ok_or(Error::<T>::NotStash)?;
|
||||
Self::withdraw_unbonded(RawOrigin::Signed(ctrl.clone()).into(), num_slashing_spans)
|
||||
.map(|_| !Ledger::<T>::contains_key(&ctrl))
|
||||
.map(|_| !StakingLedger::<T>::is_bonded(StakingAccount::Controller(ctrl)))
|
||||
.map_err(|with_post| with_post.error)
|
||||
}
|
||||
|
||||
@@ -1836,6 +1837,7 @@ impl<T: Config> Pallet<T> {
|
||||
"VoterList contains non-staker"
|
||||
);
|
||||
|
||||
Self::check_bonded_consistency()?;
|
||||
Self::check_payees()?;
|
||||
Self::check_nominators()?;
|
||||
Self::check_exposures()?;
|
||||
@@ -1844,9 +1846,67 @@ impl<T: Config> Pallet<T> {
|
||||
Self::check_count()
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * A controller should not be associated with more than one ledger.
|
||||
/// * A bonded (stash, controller) pair should have only one associated ledger. I.e. if the
|
||||
/// ledger is bonded by stash, the controller account must not bond a different ledger.
|
||||
/// * A bonded (stash, controller) pair must have an associated ledger.
|
||||
/// NOTE: these checks result in warnings only. Once
|
||||
/// <https://github.com/paritytech/polkadot-sdk/issues/3245> is resolved, turn warns into check
|
||||
/// failures.
|
||||
fn check_bonded_consistency() -> Result<(), TryRuntimeError> {
|
||||
use sp_std::collections::btree_set::BTreeSet;
|
||||
|
||||
let mut count_controller_double = 0;
|
||||
let mut count_double = 0;
|
||||
let mut count_none = 0;
|
||||
// sanity check to ensure that each controller in Bonded storage is associated with only one
|
||||
// ledger.
|
||||
let mut controllers = BTreeSet::new();
|
||||
|
||||
for (stash, controller) in <Bonded<T>>::iter() {
|
||||
if !controllers.insert(controller.clone()) {
|
||||
count_controller_double += 1;
|
||||
}
|
||||
|
||||
match (<Ledger<T>>::get(&stash), <Ledger<T>>::get(&controller)) {
|
||||
(Some(_), Some(_)) =>
|
||||
// if stash == controller, it means that the ledger has migrated to
|
||||
// post-controller. If no migration happened, we expect that the (stash,
|
||||
// controller) pair has only one associated ledger.
|
||||
if stash != controller {
|
||||
count_double += 1;
|
||||
},
|
||||
(None, None) => {
|
||||
count_none += 1;
|
||||
},
|
||||
_ => {},
|
||||
};
|
||||
}
|
||||
|
||||
if count_controller_double != 0 {
|
||||
log!(
|
||||
warn,
|
||||
"a controller is associated with more than one ledger ({} occurrences)",
|
||||
count_controller_double
|
||||
);
|
||||
};
|
||||
|
||||
if count_double != 0 {
|
||||
log!(warn, "single tuple of (stash, controller) pair bonds more than one ledger ({} occurrences)", count_double);
|
||||
}
|
||||
|
||||
if count_none != 0 {
|
||||
log!(warn, "inconsistent bonded state: (stash, controller) pair missing associated ledger ({} occurrences)", count_none);
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * A bonded ledger should always have an assigned `Payee`.
|
||||
/// * The number of entries in `Payee` and of bonded staking ledgers *must* match.
|
||||
/// * The stash account in the ledger must match that of the bonded acount.
|
||||
fn check_payees() -> Result<(), TryRuntimeError> {
|
||||
for (stash, _) in Bonded::<T>::iter() {
|
||||
ensure!(Payee::<T>::get(&stash).is_some(), "bonded ledger does not have payee set");
|
||||
@@ -1861,6 +1921,11 @@ impl<T: Config> Pallet<T> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * Number of voters in `VoterList` match that of the number of Nominators and Validators in
|
||||
/// the system (validator is both voter and target).
|
||||
/// * Number of targets in `TargetList` matches the number of validators in the system.
|
||||
/// * Current validator count is bounded by the election provider's max winners.
|
||||
fn check_count() -> Result<(), TryRuntimeError> {
|
||||
ensure!(
|
||||
<T as Config>::VoterList::count() ==
|
||||
@@ -1879,6 +1944,11 @@ impl<T: Config> Pallet<T> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * `ledger.controller` is not stored in the storage (but populated at retrieval).
|
||||
/// * Stake consistency: ledger.total == ledger.active + sum(ledger.unlocking).
|
||||
/// * The controller keyeing the ledger and the ledger stash matches the state of the `Bonded`
|
||||
/// storage.
|
||||
fn check_ledgers() -> Result<(), TryRuntimeError> {
|
||||
Bonded::<T>::iter()
|
||||
.map(|(stash, ctrl)| {
|
||||
@@ -1896,8 +1966,10 @@ impl<T: Config> Pallet<T> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * For each era exposed validator, check if the exposure total is sane (exposure.total =
|
||||
/// exposure.own + exposure.own).
|
||||
fn check_exposures() -> Result<(), TryRuntimeError> {
|
||||
// a check per validator to ensure the exposure struct is always sane.
|
||||
let era = Self::active_era().unwrap().index;
|
||||
ErasStakers::<T>::iter_prefix_values(era)
|
||||
.map(|expo| {
|
||||
@@ -1915,6 +1987,10 @@ impl<T: Config> Pallet<T> {
|
||||
.collect::<Result<(), TryRuntimeError>>()
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * For each paged era exposed validator, check if the exposure total is sane (exposure.total
|
||||
/// = exposure.own + exposure.own).
|
||||
/// * Paged exposures metadata (`ErasStakersOverview`) matches the paged exposures state.
|
||||
fn check_paged_exposures() -> Result<(), TryRuntimeError> {
|
||||
use sp_staking::PagedExposureMetadata;
|
||||
use sp_std::collections::btree_map::BTreeMap;
|
||||
@@ -1979,6 +2055,8 @@ impl<T: Config> Pallet<T> {
|
||||
.collect::<Result<(), TryRuntimeError>>()
|
||||
}
|
||||
|
||||
/// Invariants:
|
||||
/// * Checks that each nominator has its entire stake correctly distributed.
|
||||
fn check_nominators() -> Result<(), TryRuntimeError> {
|
||||
// a check per nominator to ensure their entire stake is correctly distributed. Will only
|
||||
// kick-in if the nomination was submitted before the current era.
|
||||
|
||||
@@ -791,6 +791,8 @@ pub mod pallet {
|
||||
SnapshotTargetsSizeExceeded { size: u32 },
|
||||
/// A new force era mode was set.
|
||||
ForceEra { mode: Forcing },
|
||||
/// Report of a controller batch deprecation.
|
||||
ControllerBatchDeprecated { failures: u32 },
|
||||
}
|
||||
|
||||
#[pallet::error]
|
||||
@@ -935,6 +937,11 @@ pub mod pallet {
|
||||
return Err(Error::<T>::AlreadyBonded.into())
|
||||
}
|
||||
|
||||
// An existing controller cannot become a stash.
|
||||
if StakingLedger::<T>::is_bonded(StakingAccount::Controller(stash.clone())) {
|
||||
return Err(Error::<T>::AlreadyPaired.into())
|
||||
}
|
||||
|
||||
// Reject a bond which is considered to be _dust_.
|
||||
if value < T::Currency::minimum_balance() {
|
||||
return Err(Error::<T>::InsufficientBond.into())
|
||||
@@ -975,7 +982,6 @@ pub mod pallet {
|
||||
#[pallet::compact] max_additional: BalanceOf<T>,
|
||||
) -> DispatchResult {
|
||||
let stash = ensure_signed(origin)?;
|
||||
|
||||
let mut ledger = Self::ledger(StakingAccount::Stash(stash.clone()))?;
|
||||
|
||||
let stash_balance = T::Currency::free_balance(&stash);
|
||||
@@ -1332,8 +1338,6 @@ pub mod pallet {
|
||||
pub fn set_controller(origin: OriginFor<T>) -> DispatchResult {
|
||||
let stash = ensure_signed(origin)?;
|
||||
|
||||
// The bonded map and ledger are mutated directly as this extrinsic is related to a
|
||||
// (temporary) passive migration.
|
||||
Self::ledger(StakingAccount::Stash(stash.clone())).map(|ledger| {
|
||||
let controller = ledger.controller()
|
||||
.defensive_proof("Ledger's controller field didn't exist. The controller should have been fetched using StakingLedger.")
|
||||
@@ -1343,9 +1347,8 @@ pub mod pallet {
|
||||
// Stash is already its own controller.
|
||||
return Err(Error::<T>::AlreadyPaired.into())
|
||||
}
|
||||
<Ledger<T>>::remove(controller);
|
||||
<Bonded<T>>::insert(&stash, &stash);
|
||||
<Ledger<T>>::insert(&stash, ledger);
|
||||
|
||||
let _ = ledger.set_controller_to_stash()?;
|
||||
Ok(())
|
||||
})?
|
||||
}
|
||||
@@ -1960,7 +1963,7 @@ pub mod pallet {
|
||||
};
|
||||
|
||||
if ledger.stash != *controller && !payee_deprecated {
|
||||
Some((controller.clone(), ledger))
|
||||
Some(ledger)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
@@ -1969,13 +1972,12 @@ pub mod pallet {
|
||||
.collect();
|
||||
|
||||
// Update unique pairs.
|
||||
for (controller, ledger) in filtered_batch_with_ledger {
|
||||
let stash = ledger.stash.clone();
|
||||
|
||||
<Bonded<T>>::insert(&stash, &stash);
|
||||
<Ledger<T>>::remove(controller);
|
||||
<Ledger<T>>::insert(stash, ledger);
|
||||
let mut failures = 0;
|
||||
for ledger in filtered_batch_with_ledger {
|
||||
let _ = ledger.clone().set_controller_to_stash().map_err(|_| failures += 1);
|
||||
}
|
||||
Self::deposit_event(Event::<T>::ControllerBatchDeprecated { failures });
|
||||
|
||||
Ok(Some(T::WeightInfo::deprecate_controller_batch(controllers.len() as u32)).into())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user