main.rs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. /* This file is part of DarkFi (https://dark.fi)
  2. *
  3. * Copyright (C) 2020-2025 Dyne.org foundation
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. use std::sync::Arc;
  19. use smol::{fs::read_to_string, stream::StreamExt};
  20. use structopt_toml::{serde::Deserialize, structopt::StructOpt, StructOptToml};
  21. use tracing::{debug, error, info};
  22. use darkfi::{
  23. async_daemonize,
  24. blockchain::BlockInfo,
  25. cli_desc,
  26. net::settings::SettingsOpt,
  27. rpc::settings::RpcSettingsOpt,
  28. util::{
  29. encoding::base64,
  30. path::{expand_path, get_config_path},
  31. },
  32. validator::{Validator, ValidatorConfig},
  33. Error, Result,
  34. };
  35. use darkfi_sdk::crypto::keypair::Network;
  36. use darkfi_serial::deserialize_async;
  37. use darkfid::{task::consensus::ConsensusInitTaskConfig, Darkfid};
  38. const CONFIG_FILE: &str = "darkfid_config.toml";
  39. const CONFIG_FILE_CONTENTS: &str = include_str!("../darkfid_config.toml");
  40. /// Note:
  41. /// If you change these don't forget to remove their corresponding database folder,
  42. /// since if it already has a genesis block, provided one is ignored.
  43. const GENESIS_BLOCK_LOCALNET: &str = include_str!("../genesis_block_localnet");
  44. const GENESIS_BLOCK_TESTNET: &str = include_str!("../genesis_block_testnet");
  45. const GENESIS_BLOCK_MAINNET: &str = include_str!("../genesis_block_mainnet");
  46. #[derive(Clone, Debug, Deserialize, StructOpt, StructOptToml)]
  47. #[serde(default)]
  48. #[structopt(name = "darkfid", about = cli_desc!())]
  49. struct Args {
  50. #[structopt(short, long)]
  51. /// Configuration file to use
  52. config: Option<String>,
  53. #[structopt(short, long, default_value = "testnet")]
  54. /// Blockchain network to use
  55. network: String,
  56. #[structopt(short, long)]
  57. /// Reset validator state to given block height
  58. reset: Option<u32>,
  59. #[structopt(short, long)]
  60. /// Purge pending sync headers
  61. purge_sync: bool,
  62. #[structopt(long)]
  63. /// Fully validates existing blockchain state
  64. validate: bool,
  65. #[structopt(long)]
  66. /// Fully rebuild the difficulties database based on existing blockchain state
  67. rebuild_difficulties: bool,
  68. #[structopt(short, long)]
  69. /// Set log file to ouput into
  70. log: Option<String>,
  71. #[structopt(short, parse(from_occurrences))]
  72. /// Increase verbosity (-vvv supported)
  73. verbose: u8,
  74. }
  75. #[derive(Clone, Debug, serde::Deserialize, structopt::StructOpt, structopt_toml::StructOptToml)]
  76. #[structopt()]
  77. /// Defines a blockchain network configuration.
  78. /// Default values correspond to a local network.
  79. pub struct BlockchainNetwork {
  80. #[structopt(long, default_value = "~/.local/share/darkfi/darkfid/localnet")]
  81. /// Path to blockchain database
  82. database: String,
  83. #[structopt(long, default_value = "3")]
  84. /// Confirmation threshold, denominated by number of blocks
  85. threshold: usize,
  86. #[structopt(long, default_value = "120")]
  87. /// PoW block production target, in seconds
  88. pow_target: u32,
  89. #[structopt(long)]
  90. /// Optional fixed PoW difficulty, used for testing
  91. pow_fixed_difficulty: Option<usize>,
  92. #[structopt(long)]
  93. /// Skip syncing process and start node right away
  94. skip_sync: bool,
  95. #[structopt(long)]
  96. /// Disable transaction's fee verification, used for testing
  97. skip_fees: bool,
  98. #[structopt(long)]
  99. /// Optional sync checkpoint height
  100. checkpoint_height: Option<u32>,
  101. #[structopt(long)]
  102. /// Optional sync checkpoint hash
  103. checkpoint: Option<String>,
  104. #[structopt(long)]
  105. /// Garbage collection task transactions batch size
  106. txs_batch_size: Option<usize>,
  107. #[structopt(flatten)]
  108. /// P2P network settings
  109. net: SettingsOpt,
  110. #[structopt(flatten)]
  111. /// JSON-RPC settings
  112. rpc: RpcSettingsOpt,
  113. #[structopt(skip)]
  114. /// Optional JSON-RPC settings for p2pool merge mining requests
  115. mm_rpc: Option<RpcSettingsOpt>,
  116. }
  117. async_daemonize!(realmain);
  118. async fn realmain(args: Args, ex: Arc<smol::Executor<'static>>) -> Result<()> {
  119. info!(target: "darkfid", "Initializing DarkFi node...");
  120. // Grab blockchain network configuration
  121. let ((network, blockchain_config), genesis_block) = match args.network.as_str() {
  122. "localnet" => {
  123. (parse_blockchain_config(args.config, "localnet").await?, GENESIS_BLOCK_LOCALNET)
  124. }
  125. "testnet" => {
  126. (parse_blockchain_config(args.config, "testnet").await?, GENESIS_BLOCK_TESTNET)
  127. }
  128. "mainnet" => {
  129. (parse_blockchain_config(args.config, "mainnet").await?, GENESIS_BLOCK_MAINNET)
  130. }
  131. _ => {
  132. error!("Unsupported chain `{}`", args.network);
  133. return Err(Error::UnsupportedChain)
  134. }
  135. };
  136. // Parse the genesis block
  137. let bytes = base64::decode(genesis_block.trim()).unwrap();
  138. let genesis_block: BlockInfo = deserialize_async(&bytes).await?;
  139. // Initialize or open sled database
  140. let db_path = expand_path(&blockchain_config.database)?;
  141. let sled_db = sled_overlay::sled::open(&db_path)?;
  142. // Initialize validator configuration
  143. let pow_fixed_difficulty = if let Some(diff) = blockchain_config.pow_fixed_difficulty {
  144. info!(target: "darkfid", "Node is configured to run with fixed PoW difficulty: {diff}");
  145. Some(diff.into())
  146. } else {
  147. None
  148. };
  149. let config = ValidatorConfig {
  150. confirmation_threshold: blockchain_config.threshold,
  151. pow_target: blockchain_config.pow_target,
  152. pow_fixed_difficulty,
  153. genesis_block,
  154. verify_fees: !blockchain_config.skip_fees,
  155. };
  156. // Check if reset was requested
  157. if let Some(height) = args.reset {
  158. info!(target: "darkfid", "Node will reset validator state to height: {height}");
  159. let validator = Validator::new(&sled_db, &config).await?;
  160. validator.reset_to_height(height).await?;
  161. info!(target: "darkfid", "Validator state reset successfully!");
  162. return Ok(())
  163. }
  164. // Check if sync headers purge was requested
  165. if args.purge_sync {
  166. info!(target: "darkfid", "Node will purge all pending sync headers.");
  167. let validator = Validator::new(&sled_db, &config).await?;
  168. validator.blockchain.headers.remove_all_sync()?;
  169. info!(target: "darkfid", "Validator pending sync headers purged successfully!");
  170. return Ok(())
  171. }
  172. // Check if validate was requested
  173. if args.validate {
  174. info!(target: "darkfid", "Node will validate existing blockchain state.");
  175. let validator = Validator::new(&sled_db, &config).await?;
  176. validator.validate_blockchain(config.pow_target, config.pow_fixed_difficulty).await?;
  177. info!(target: "darkfid", "Validator blockchain state validated successfully!");
  178. return Ok(())
  179. }
  180. // Check if rebuild difficulties was requested
  181. if args.rebuild_difficulties {
  182. info!(target: "darkfid", "Node will rebuild difficulties of existing blockchain state.");
  183. let validator = Validator::new(&sled_db, &config).await?;
  184. validator
  185. .rebuild_block_difficulties(config.pow_target, config.pow_fixed_difficulty)
  186. .await?;
  187. info!(target: "darkfid", "Validator difficulties rebuilt successfully!");
  188. return Ok(())
  189. }
  190. // Generate the daemon
  191. let daemon = Darkfid::init(
  192. network,
  193. &sled_db,
  194. &config,
  195. &blockchain_config.net.into(),
  196. &blockchain_config.txs_batch_size,
  197. &ex,
  198. )
  199. .await?;
  200. // Start the daemon
  201. let config = ConsensusInitTaskConfig {
  202. skip_sync: blockchain_config.skip_sync,
  203. checkpoint_height: blockchain_config.checkpoint_height,
  204. checkpoint: blockchain_config.checkpoint,
  205. };
  206. daemon
  207. .start(
  208. &ex,
  209. &blockchain_config.rpc.into(),
  210. &blockchain_config.mm_rpc.map(|mm_rpc_opts| mm_rpc_opts.into()),
  211. &config,
  212. )
  213. .await?;
  214. // Signal handling for graceful termination.
  215. let (signals_handler, signals_task) = SignalHandler::new(ex)?;
  216. signals_handler.wait_termination(signals_task).await?;
  217. info!(target: "darkfid", "Caught termination signal, cleaning up and exiting...");
  218. daemon.stop().await?;
  219. info!(target: "darkfid", "Shut down successfully");
  220. Ok(())
  221. }
  222. /// Auxiliary function to parse darkfid configuration file and extract requested
  223. /// blockchain network config.
  224. pub async fn parse_blockchain_config(
  225. config: Option<String>,
  226. network: &str,
  227. ) -> Result<(Network, BlockchainNetwork)> {
  228. // Grab network prefix
  229. let used_net = match network {
  230. "mainnet" | "localnet" => Network::Mainnet,
  231. "testnet" => Network::Testnet,
  232. _ => return Err(Error::ParseFailed("Invalid blockchain network")),
  233. };
  234. // Grab config path
  235. let config_path = get_config_path(config, CONFIG_FILE)?;
  236. debug!(target: "darkfid", "Parsing configuration file: {config_path:?}");
  237. // Parse TOML file contents
  238. let contents = read_to_string(&config_path).await?;
  239. let contents: toml::Value = match toml::from_str(&contents) {
  240. Ok(v) => v,
  241. Err(e) => {
  242. error!(target: "darkfid", "Failed parsing TOML config: {e}");
  243. return Err(Error::ParseFailed("Failed parsing TOML config"))
  244. }
  245. };
  246. // Grab requested network config
  247. let Some(table) = contents.as_table() else { return Err(Error::ParseFailed("TOML not a map")) };
  248. let Some(network_configs) = table.get("network_config") else {
  249. return Err(Error::ParseFailed("TOML does not contain network configurations"))
  250. };
  251. let Some(network_configs) = network_configs.as_table() else {
  252. return Err(Error::ParseFailed("`network_config` not a map"))
  253. };
  254. let Some(network_config) = network_configs.get(network) else {
  255. return Err(Error::ParseFailed("TOML does not contain requested network configuration"))
  256. };
  257. let network_config = toml::to_string(&network_config).unwrap();
  258. let network_config =
  259. match BlockchainNetwork::from_iter_with_toml::<Vec<String>>(&network_config, vec![]) {
  260. Ok(v) => v,
  261. Err(e) => {
  262. error!(target: "darkfid", "Failed parsing requested network configuration: {e}");
  263. return Err(Error::ParseFailed("Failed parsing requested network configuration"))
  264. }
  265. };
  266. debug!(target: "darkfid", "Parsed network configuration: {network_config:?}");
  267. Ok((used_net, network_config))
  268. }