use alloc::{vec, vec::Vec};
use codec::{self as codec, Decode, Encode};
use frame_support::traits::{Get, KeyOwnerProofSystem};
use frame_system::pallet_prelude::{BlockNumberFor, HeaderFor};
use log::{error, info};
use sp_consensus_beefy::{
check_commitment_signature, AncestryHelper, DoubleVotingProof, ForkVotingProof,
FutureBlockVotingProof, ValidatorSetId, KEY_TYPE as BEEFY_KEY_TYPE,
};
use sp_runtime::{
transaction_validity::{
InvalidTransaction, TransactionPriority, TransactionSource, TransactionValidity,
TransactionValidityError, ValidTransaction,
},
DispatchError, KeyTypeId, Perbill, RuntimeAppPublic,
};
use sp_session::{GetSessionNumber, GetValidatorCount};
use sp_staking::{
offence::{Kind, Offence, OffenceReportSystem, ReportOffence},
SessionIndex,
};
use super::{Call, Config, Error, Pallet, LOG_TARGET};
#[derive(Copy, Clone, PartialOrd, Ord, Eq, PartialEq, Encode, Decode)]
pub struct TimeSlot<N: Copy + Clone + PartialOrd + Ord + Eq + PartialEq + Encode + Decode> {
pub set_id: ValidatorSetId,
pub round: N,
}
pub struct EquivocationOffence<Offender, N>
where
N: Copy + Clone + PartialOrd + Ord + Eq + PartialEq + Encode + Decode,
{
pub time_slot: TimeSlot<N>,
pub session_index: SessionIndex,
pub validator_set_count: u32,
pub offender: Offender,
}
impl<Offender: Clone, N> Offence<Offender> for EquivocationOffence<Offender, N>
where
N: Copy + Clone + PartialOrd + Ord + Eq + PartialEq + Encode + Decode,
{
const ID: Kind = *b"beefy:equivocati";
type TimeSlot = TimeSlot<N>;
fn offenders(&self) -> Vec<Offender> {
vec![self.offender.clone()]
}
fn session_index(&self) -> SessionIndex {
self.session_index
}
fn validator_set_count(&self) -> u32 {
self.validator_set_count
}
fn time_slot(&self) -> Self::TimeSlot {
self.time_slot
}
fn slash_fraction(&self, offenders_count: u32) -> Perbill {
Perbill::from_rational(3 * offenders_count, self.validator_set_count).square()
}
}
pub struct EquivocationReportSystem<T, R, P, L>(core::marker::PhantomData<(T, R, P, L)>);
pub enum EquivocationEvidenceFor<T: Config> {
DoubleVotingProof(
DoubleVotingProof<
BlockNumberFor<T>,
T::BeefyId,
<T::BeefyId as RuntimeAppPublic>::Signature,
>,
T::KeyOwnerProof,
),
ForkVotingProof(
ForkVotingProof<
HeaderFor<T>,
T::BeefyId,
<T::AncestryHelper as AncestryHelper<HeaderFor<T>>>::Proof,
>,
T::KeyOwnerProof,
),
FutureBlockVotingProof(FutureBlockVotingProof<BlockNumberFor<T>, T::BeefyId>, T::KeyOwnerProof),
}
impl<T: Config> EquivocationEvidenceFor<T> {
fn offender_id(&self) -> &T::BeefyId {
match self {
EquivocationEvidenceFor::DoubleVotingProof(equivocation_proof, _) =>
equivocation_proof.offender_id(),
EquivocationEvidenceFor::ForkVotingProof(equivocation_proof, _) =>
&equivocation_proof.vote.id,
EquivocationEvidenceFor::FutureBlockVotingProof(equivocation_proof, _) =>
&equivocation_proof.vote.id,
}
}
fn round_number(&self) -> &BlockNumberFor<T> {
match self {
EquivocationEvidenceFor::DoubleVotingProof(equivocation_proof, _) =>
equivocation_proof.round_number(),
EquivocationEvidenceFor::ForkVotingProof(equivocation_proof, _) =>
&equivocation_proof.vote.commitment.block_number,
EquivocationEvidenceFor::FutureBlockVotingProof(equivocation_proof, _) =>
&equivocation_proof.vote.commitment.block_number,
}
}
fn set_id(&self) -> ValidatorSetId {
match self {
EquivocationEvidenceFor::DoubleVotingProof(equivocation_proof, _) =>
equivocation_proof.set_id(),
EquivocationEvidenceFor::ForkVotingProof(equivocation_proof, _) =>
equivocation_proof.vote.commitment.validator_set_id,
EquivocationEvidenceFor::FutureBlockVotingProof(equivocation_proof, _) =>
equivocation_proof.vote.commitment.validator_set_id,
}
}
fn key_owner_proof(&self) -> &T::KeyOwnerProof {
match self {
EquivocationEvidenceFor::DoubleVotingProof(_, key_owner_proof) => key_owner_proof,
EquivocationEvidenceFor::ForkVotingProof(_, key_owner_proof) => key_owner_proof,
EquivocationEvidenceFor::FutureBlockVotingProof(_, key_owner_proof) => key_owner_proof,
}
}
fn checked_offender<P>(&self) -> Option<P::IdentificationTuple>
where
P: KeyOwnerProofSystem<(KeyTypeId, T::BeefyId), Proof = T::KeyOwnerProof>,
{
let key = (BEEFY_KEY_TYPE, self.offender_id().clone());
P::check_proof(key, self.key_owner_proof().clone())
}
fn check_equivocation_proof(self) -> Result<(), Error<T>> {
match self {
EquivocationEvidenceFor::DoubleVotingProof(equivocation_proof, _) => {
if !sp_consensus_beefy::check_double_voting_proof(&equivocation_proof) {
return Err(Error::<T>::InvalidDoubleVotingProof);
}
return Ok(())
},
EquivocationEvidenceFor::ForkVotingProof(equivocation_proof, _) => {
let ForkVotingProof { vote, ancestry_proof, header } = equivocation_proof;
let maybe_validation_context = <T::AncestryHelper as AncestryHelper<
HeaderFor<T>,
>>::extract_validation_context(header);
let validation_context = match maybe_validation_context {
Some(validation_context) => validation_context,
None => {
return Err(Error::<T>::InvalidForkVotingProof);
},
};
let is_non_canonical =
<T::AncestryHelper as AncestryHelper<HeaderFor<T>>>::is_non_canonical(
&vote.commitment,
ancestry_proof,
validation_context,
);
if !is_non_canonical {
return Err(Error::<T>::InvalidForkVotingProof);
}
let is_signature_valid =
check_commitment_signature(&vote.commitment, &vote.id, &vote.signature);
if !is_signature_valid {
return Err(Error::<T>::InvalidForkVotingProof);
}
Ok(())
},
EquivocationEvidenceFor::FutureBlockVotingProof(equivocation_proof, _) => {
let FutureBlockVotingProof { vote } = equivocation_proof;
if vote.commitment.block_number < frame_system::Pallet::<T>::block_number() {
return Err(Error::<T>::InvalidFutureBlockVotingProof);
}
let is_signature_valid =
check_commitment_signature(&vote.commitment, &vote.id, &vote.signature);
if !is_signature_valid {
return Err(Error::<T>::InvalidForkVotingProof);
}
Ok(())
},
}
}
}
impl<T, R, P, L> OffenceReportSystem<Option<T::AccountId>, EquivocationEvidenceFor<T>>
for EquivocationReportSystem<T, R, P, L>
where
T: Config + pallet_authorship::Config + frame_system::offchain::CreateInherent<Call<T>>,
R: ReportOffence<
T::AccountId,
P::IdentificationTuple,
EquivocationOffence<P::IdentificationTuple, BlockNumberFor<T>>,
>,
P: KeyOwnerProofSystem<(KeyTypeId, T::BeefyId), Proof = T::KeyOwnerProof>,
P::IdentificationTuple: Clone,
L: Get<u64>,
{
type Longevity = L;
fn publish_evidence(evidence: EquivocationEvidenceFor<T>) -> Result<(), ()> {
use frame_system::offchain::SubmitTransaction;
let call: Call<T> = evidence.into();
let xt = T::create_inherent(call.into());
let res = SubmitTransaction::<T, Call<T>>::submit_transaction(xt);
match res {
Ok(_) => info!(target: LOG_TARGET, "Submitted equivocation report."),
Err(e) => error!(target: LOG_TARGET, "Error submitting equivocation report: {:?}", e),
}
res
}
fn check_evidence(
evidence: EquivocationEvidenceFor<T>,
) -> Result<(), TransactionValidityError> {
let offender = evidence.checked_offender::<P>().ok_or(InvalidTransaction::BadProof)?;
let time_slot = TimeSlot { set_id: evidence.set_id(), round: *evidence.round_number() };
if R::is_known_offence(&[offender], &time_slot) {
Err(InvalidTransaction::Stale.into())
} else {
Ok(())
}
}
fn process_evidence(
reporter: Option<T::AccountId>,
evidence: EquivocationEvidenceFor<T>,
) -> Result<(), DispatchError> {
let reporter = reporter.or_else(|| pallet_authorship::Pallet::<T>::author());
let set_id = evidence.set_id();
let round = *evidence.round_number();
let set_id_session_index = crate::SetIdSession::<T>::get(set_id)
.ok_or(Error::<T>::InvalidEquivocationProofSession)?;
let key_owner_proof = evidence.key_owner_proof();
let validator_count = key_owner_proof.validator_count();
let session_index = key_owner_proof.session();
if session_index != set_id_session_index {
return Err(Error::<T>::InvalidEquivocationProofSession.into())
}
let offender =
evidence.checked_offender::<P>().ok_or(Error::<T>::InvalidKeyOwnershipProof)?;
evidence.check_equivocation_proof()?;
let offence = EquivocationOffence {
time_slot: TimeSlot { set_id, round },
session_index,
validator_set_count: validator_count,
offender,
};
R::report_offence(reporter.into_iter().collect(), offence)
.map_err(|_| Error::<T>::DuplicateOffenceReport.into())
}
}
impl<T: Config> Pallet<T> {
pub fn validate_unsigned(source: TransactionSource, call: &Call<T>) -> TransactionValidity {
match source {
TransactionSource::Local | TransactionSource::InBlock => { },
_ => {
log::warn!(
target: LOG_TARGET,
"rejecting unsigned report equivocation transaction because it is not local/in-block."
);
return InvalidTransaction::Call.into()
},
}
let evidence = call.to_equivocation_evidence_for().ok_or(InvalidTransaction::Call)?;
let tag = (evidence.offender_id().clone(), evidence.set_id(), *evidence.round_number());
T::EquivocationReportSystem::check_evidence(evidence)?;
let longevity =
<T::EquivocationReportSystem as OffenceReportSystem<_, _>>::Longevity::get();
ValidTransaction::with_tag_prefix("BeefyEquivocation")
.priority(TransactionPriority::MAX)
.and_provides(tag)
.longevity(longevity)
.propagate(false)
.build()
}
pub fn pre_dispatch(call: &Call<T>) -> Result<(), TransactionValidityError> {
let evidence = call.to_equivocation_evidence_for().ok_or(InvalidTransaction::Call)?;
T::EquivocationReportSystem::check_evidence(evidence)
}
}