2023-12-16 23:03:02 +00:00
|
|
|
use std::ops::Range;
|
|
|
|
|
2023-09-03 22:50:38 +00:00
|
|
|
use tower::ServiceExt;
|
|
|
|
use tracing::instrument;
|
|
|
|
|
2023-12-16 23:03:02 +00:00
|
|
|
use monero_consensus::{HFVotes, HFsInfo, HardFork};
|
|
|
|
|
|
|
|
use crate::{Database, DatabaseRequest, DatabaseResponse, ExtendedConsensusError};
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2023-10-28 23:39:22 +00:00
|
|
|
#[cfg(test)]
|
2023-10-31 02:59:31 +00:00
|
|
|
pub(super) mod tests;
|
2023-10-28 23:39:22 +00:00
|
|
|
|
2023-09-06 18:50:49 +00:00
|
|
|
// https://cuprate.github.io/monero-docs/consensus_rules/hardforks.html#accepting-a-fork
|
2023-09-03 22:50:38 +00:00
|
|
|
const DEFAULT_WINDOW_SIZE: u64 = 10080; // supermajority window check length - a week
|
2023-10-15 19:35:33 +00:00
|
|
|
|
|
|
|
/// Configuration for hard-forks.
|
|
|
|
///
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct HardForkConfig {
|
|
|
|
/// The network we are on.
|
2023-12-16 23:03:02 +00:00
|
|
|
info: HFsInfo,
|
2023-10-15 19:35:33 +00:00
|
|
|
/// The amount of votes we are taking into account to decide on a fork activation.
|
|
|
|
window: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HardForkConfig {
|
2023-10-28 23:39:22 +00:00
|
|
|
pub const fn main_net() -> HardForkConfig {
|
2023-10-15 19:35:33 +00:00
|
|
|
Self {
|
2023-12-16 23:03:02 +00:00
|
|
|
info: HFsInfo::main_net(),
|
2023-10-15 19:35:33 +00:00
|
|
|
window: DEFAULT_WINDOW_SIZE,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-03 22:50:38 +00:00
|
|
|
/// A struct that keeps track of the current hard-fork and current votes.
|
2023-10-03 21:10:31 +00:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct HardForkState {
|
2023-09-03 22:50:38 +00:00
|
|
|
current_hardfork: HardFork,
|
|
|
|
|
|
|
|
config: HardForkConfig,
|
|
|
|
votes: HFVotes,
|
|
|
|
|
|
|
|
last_height: u64,
|
|
|
|
}
|
|
|
|
|
2023-10-03 21:10:31 +00:00
|
|
|
impl HardForkState {
|
|
|
|
#[instrument(name = "init_hardfork_state", skip(config, database), level = "info")]
|
|
|
|
pub async fn init_from_chain_height<D: Database + Clone>(
|
2023-09-05 18:49:01 +00:00
|
|
|
chain_height: u64,
|
2023-10-22 16:27:37 +00:00
|
|
|
config: HardForkConfig,
|
2023-09-05 18:49:01 +00:00
|
|
|
mut database: D,
|
2023-12-16 23:03:02 +00:00
|
|
|
) -> Result<Self, ExtendedConsensusError> {
|
2023-10-03 21:10:31 +00:00
|
|
|
tracing::info!("Initializing hard-fork state this may take a while.");
|
|
|
|
|
2023-09-06 14:54:49 +00:00
|
|
|
let block_start = chain_height.saturating_sub(config.window);
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2023-10-23 21:24:02 +00:00
|
|
|
let votes = get_votes_in_range(
|
|
|
|
database.clone(),
|
|
|
|
block_start..chain_height,
|
|
|
|
usize::try_from(config.window).unwrap(),
|
|
|
|
)
|
|
|
|
.await?;
|
2023-09-03 22:50:38 +00:00
|
|
|
|
|
|
|
if chain_height > config.window {
|
2023-09-05 18:13:46 +00:00
|
|
|
debug_assert_eq!(votes.total_votes(), config.window)
|
2023-09-03 22:50:38 +00:00
|
|
|
}
|
|
|
|
|
2023-10-22 16:27:37 +00:00
|
|
|
let DatabaseResponse::BlockExtendedHeader(ext_header) = database
|
2023-10-02 20:07:11 +00:00
|
|
|
.ready()
|
|
|
|
.await?
|
2023-10-22 16:27:37 +00:00
|
|
|
.call(DatabaseRequest::BlockExtendedHeader(
|
|
|
|
(chain_height - 1).into(),
|
|
|
|
))
|
2023-10-02 20:07:11 +00:00
|
|
|
.await?
|
|
|
|
else {
|
|
|
|
panic!("Database sent incorrect response!");
|
|
|
|
};
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2023-10-22 16:27:37 +00:00
|
|
|
let current_hardfork = ext_header.version;
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2023-10-03 21:10:31 +00:00
|
|
|
let mut hfs = HardForkState {
|
2023-09-03 22:50:38 +00:00
|
|
|
config,
|
|
|
|
current_hardfork,
|
|
|
|
votes,
|
|
|
|
last_height: chain_height - 1,
|
|
|
|
};
|
|
|
|
|
2023-09-05 18:13:46 +00:00
|
|
|
hfs.check_set_new_hf();
|
|
|
|
|
2023-10-03 21:10:31 +00:00
|
|
|
tracing::info!(
|
|
|
|
"Initialized Hfs, current fork: {:?}, {}",
|
|
|
|
hfs.current_hardfork,
|
|
|
|
hfs.votes
|
|
|
|
);
|
2023-09-03 22:50:38 +00:00
|
|
|
|
|
|
|
Ok(hfs)
|
|
|
|
}
|
|
|
|
|
2023-10-31 02:59:31 +00:00
|
|
|
pub fn new_block(&mut self, vote: HardFork, height: u64) {
|
2023-10-02 20:07:11 +00:00
|
|
|
assert_eq!(self.last_height + 1, height);
|
2023-09-03 22:50:38 +00:00
|
|
|
self.last_height += 1;
|
|
|
|
|
2023-09-05 18:13:46 +00:00
|
|
|
tracing::debug!(
|
|
|
|
"Accounting for new blocks vote, height: {}, vote: {:?}",
|
|
|
|
self.last_height,
|
|
|
|
vote
|
|
|
|
);
|
|
|
|
|
2023-09-03 22:50:38 +00:00
|
|
|
self.votes.add_vote_for_hf(&vote);
|
|
|
|
|
|
|
|
if height > self.config.window {
|
2023-09-05 18:13:46 +00:00
|
|
|
debug_assert_eq!(self.votes.total_votes(), self.config.window);
|
2023-09-03 22:50:38 +00:00
|
|
|
}
|
|
|
|
|
2023-10-02 20:07:11 +00:00
|
|
|
self.check_set_new_hf();
|
2023-09-03 22:50:38 +00:00
|
|
|
}
|
|
|
|
|
2023-10-02 20:07:11 +00:00
|
|
|
/// Checks if the next hard-fork should be activated and activates it if it should.
|
2023-09-06 18:50:49 +00:00
|
|
|
///
|
|
|
|
/// https://cuprate.github.io/monero-docs/consensus_rules/hardforks.html#accepting-a-fork
|
2023-09-05 18:13:46 +00:00
|
|
|
fn check_set_new_hf(&mut self) {
|
2023-12-17 03:13:30 +00:00
|
|
|
self.current_hardfork = self.votes.current_fork(
|
2023-12-16 23:03:02 +00:00
|
|
|
&self.current_hardfork,
|
|
|
|
self.last_height + 1,
|
|
|
|
self.config.window,
|
|
|
|
&self.config.info,
|
2023-12-17 03:13:30 +00:00
|
|
|
);
|
2023-09-03 22:50:38 +00:00
|
|
|
}
|
|
|
|
|
2023-10-22 16:27:37 +00:00
|
|
|
pub fn current_hardfork(&self) -> HardFork {
|
|
|
|
self.current_hardfork
|
|
|
|
}
|
2023-09-03 22:50:38 +00:00
|
|
|
}
|
|
|
|
|
2023-10-02 20:07:11 +00:00
|
|
|
#[instrument(name = "get_votes", skip(database))]
|
2023-10-03 21:10:31 +00:00
|
|
|
async fn get_votes_in_range<D: Database>(
|
2023-09-05 18:13:46 +00:00
|
|
|
database: D,
|
2023-09-03 22:50:38 +00:00
|
|
|
block_heights: Range<u64>,
|
2023-10-23 21:24:02 +00:00
|
|
|
window_size: usize,
|
2023-12-16 23:03:02 +00:00
|
|
|
) -> Result<HFVotes, ExtendedConsensusError> {
|
2023-10-23 21:24:02 +00:00
|
|
|
let mut votes = HFVotes::new(window_size);
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2023-10-22 16:27:37 +00:00
|
|
|
let DatabaseResponse::BlockExtendedHeaderInRange(vote_list) = database
|
|
|
|
.oneshot(DatabaseRequest::BlockExtendedHeaderInRange(block_heights))
|
2023-10-02 20:07:11 +00:00
|
|
|
.await?
|
|
|
|
else {
|
|
|
|
panic!("Database sent incorrect response!");
|
|
|
|
};
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2023-10-02 20:07:11 +00:00
|
|
|
for hf_info in vote_list.into_iter() {
|
|
|
|
votes.add_vote_for_hf(&hf_info.vote);
|
2023-09-03 22:50:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(votes)
|
|
|
|
}
|